From 93496d07d074b40241a9b8aacc1875377f9fc669 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 7 Feb 2011 03:25:20 +0100 Subject: [PATCH] faac: remove package, seems not really needed Signed-off-by: Stephan Raue --- packages/audio/faac/build | 38 --------------------------------- packages/audio/faac/install | 26 ---------------------- packages/audio/faac/meta | 36 ------------------------------- packages/mediacenter/xbmc/build | 8 +------ projects/ATV/options | 4 ---- projects/Generic/options | 4 ---- projects/ION/options | 4 ---- projects/Intel/options | 4 ---- 8 files changed, 1 insertion(+), 123 deletions(-) delete mode 100755 packages/audio/faac/build delete mode 100755 packages/audio/faac/install delete mode 100644 packages/audio/faac/meta diff --git a/packages/audio/faac/build b/packages/audio/faac/build deleted file mode 100755 index 1e48ed7152..0000000000 --- a/packages/audio/faac/build +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cd $PKG_BUILD -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr \ - --disable-static \ - --enable-shared \ - --with-mp4v2 - -make -C libfaac - -$MAKEINSTALL -C libfaac - -mkdir -p $SYSROOT_PREFIX/usr/include - cp include/*.h $SYSROOT_PREFIX/usr/include diff --git a/packages/audio/faac/install b/packages/audio/faac/install deleted file mode 100755 index 31d6758670..0000000000 --- a/packages/audio/faac/install +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/lib - cp -P $PKG_BUILD/libfaac/.libs/*.so* $INSTALL/usr/lib diff --git a/packages/audio/faac/meta b/packages/audio/faac/meta deleted file mode 100644 index c0ff03907a..0000000000 --- a/packages/audio/faac/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="faac" -PKG_VERSION="1.28" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="LGPL" -PKG_SITE="http://www.audiocoding.com/" -PKG_URL="$SOURCEFORGE_SRC/faac/$PKG_NAME-$PKG_VERSION.tar.gz" -PKG_DEPENDS="" -PKG_BUILD_DEPENDS="toolchain" -PKG_PRIORITY="optional" -PKG_SECTION="audio" -PKG_SHORTDESC="faac: An MPEG-4 AAC encoder" -PKG_LONGDESC="The FAAC project includes the AAC encoder supporting several MPEG-4 object types (LC, Main, LTP, HE AAC, PS) and file formats (ADTS AAC, raw AAC, MP4), multichannel and gapless encoding as well as MP4 metadata tags. The codecs are compatible with standard-compliant audio applications using one or more of these profiles." -PKG_IS_ADDON="no" - -PKG_AUTORECONF="yes" diff --git a/packages/mediacenter/xbmc/build b/packages/mediacenter/xbmc/build index cf182af5f3..67165283d5 100755 --- a/packages/mediacenter/xbmc/build +++ b/packages/mediacenter/xbmc/build @@ -46,12 +46,6 @@ else XBMC_DVDCSS="--disable-dvdcss" fi -if [ "$FAAC_SUPPORT" = yes ]; then - XBMC_FAAC="--enable-faac" -else - XBMC_FAAC="--disable-faac" -fi - if [ "$AVAHI_DAEMON" = yes ]; then XBMC_AVAHI="--enable-avahi" else @@ -142,7 +136,7 @@ do_autoreconf xbmc/lib/libid3tag/libid3tag --disable-ccache \ $XBMC_PULSEAUDIO \ --enable-ffmpeg-libvorbis \ - $XBMC_FAAC \ + --disable-faac \ $XBMC_DVDCSS \ --disable-mid \ $XBMC_AVAHI \ diff --git a/projects/ATV/options b/projects/ATV/options index c22a3c0100..15e9b91fe9 100644 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -78,10 +78,6 @@ # (DVD decryption support in XBMC) (yes / no) DVDCSS_SUPPORT="yes" -# build and install with FAAC support in XBMC -# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no) - FAAC_SUPPORT="yes" - # build and install Tvheadend TV server (yes / no) TVHEADEND="yes" diff --git a/projects/Generic/options b/projects/Generic/options index e76b1b09e4..e21019c97a 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -78,10 +78,6 @@ # (DVD decryption support in XBMC) (yes / no) DVDCSS_SUPPORT="yes" -# build and install with FAAC support in XBMC -# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no) - FAAC_SUPPORT="yes" - # build and install Tvheadend TV server (yes / no) TVHEADEND="yes" diff --git a/projects/ION/options b/projects/ION/options index 35afe9b545..32d9f32548 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -78,10 +78,6 @@ # (DVD decryption support in XBMC) (yes / no) DVDCSS_SUPPORT="yes" -# build and install with FAAC support in XBMC -# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no) - FAAC_SUPPORT="yes" - # build and install Tvheadend TV server (yes / no) TVHEADEND="yes" diff --git a/projects/Intel/options b/projects/Intel/options index 223bcdbf4c..dc76b21c99 100644 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -78,10 +78,6 @@ # (DVD decryption support in XBMC) (yes / no) DVDCSS_SUPPORT="yes" -# build and install with FAAC support in XBMC -# FAAC is an MPEG-4 and MPEG-2 AAC encoder (yes / no) - FAAC_SUPPORT="yes" - # build and install Tvheadend TV server (yes / no) TVHEADEND="yes"