diff --git a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/Manifest b/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/Manifest deleted file mode 100644 index 61fff90031..0000000000 --- a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST i7z-0.27.tar.gz 121372 RMD160 657ab3d5f8fb2a365afe1a982174cc0dd12d84e2 SHA1 1f90f0594904c96560c57dff39656180eebc7566 SHA256 a06dab9d0a7fcc4ad2bad5b603a0087ed56f96de55015471b4a29c142b0219ea diff --git a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/files/0.27-gentoo.patch b/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/files/0.27-gentoo.patch deleted file mode 100644 index fe65a16caf..0000000000 --- a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/files/0.27-gentoo.patch +++ /dev/null @@ -1,56 +0,0 @@ -diff --git a/Makefile b/Makefile -index fc4d262..e2347bf 100644 ---- a/Makefile -+++ b/Makefile -@@ -17,18 +17,18 @@ - - #makefile updated from patch by anestling - --CFLAGSANY = -g -O0 -fomit-frame-pointer -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILD_MAIN -Wall -+CFLAGS += -O0 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DBUILD_MAIN -Wall - - LBITS := $(shell getconf LONG_BIT) - ifeq ($(LBITS),64) -- CFLAGS = $(CFLAGSANY) -Dx64_BIT -+ CFLAGS += -Dx64_BIT - else -- CFLAGS = $(CFLAGSANY) -Dx86 -+ CFLAGS += -Dx86 - endif - --CC = gcc -+CC ?= gcc - --LDFLAGS = -lncurses -lpthread -lrt -+LIBS = -lncurses -lpthread -lrt - INCLUDEFLAGS = - - OBJS = helper_functions -@@ -36,15 +36,15 @@ OBJS = helper_functions - BIN = i7z - SRC = i7z.c helper_functions.c i7z_Single_Socket.c i7z_Dual_Socket.c - --sbindir = /usr/sbin -+sbindir = $(DESTDIR)/usr/sbin - --all: clean message bin -+all: clean bin - - message: - @echo "If the compilation complains about not finding ncurses.h, install ncurses (libncurses5-dev on ubuntu/debian)" - - bin: -- $(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDEFLAGS) $(SRC) -o $(BIN) -+ $(CC) $(CFLAGS) $(LDFLAGS) $(INCLUDEFLAGS) $(SRC) -o $(BIN) $(LIBS) - - clean: - rm -f *.o $(BIN) -@@ -52,6 +52,6 @@ clean: - distclean: clean - rm -f *~ \#* - --install: all -- install -m 755 $(BIN) $(sbindir) -+install: -+ install -D -m 755 $(BIN) $(sbindir)/$(BIN) - diff --git a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/files/i7z-0.27-cpuid.patch b/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/files/i7z-0.27-cpuid.patch deleted file mode 100644 index 16b5a09723..0000000000 --- a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/files/i7z-0.27-cpuid.patch +++ /dev/null @@ -1,127 +0,0 @@ -http://code.google.com/p/i7z/issues/detail?id=31 - -this makes cpuid work on 32bit and 64bit systems, both PIC and non-PIC - -the things it fixes: - - no more silent clobbering of ebx/ecx/edx - - works under 32bit pic builds (gcc doesnt like to clobber ebx) - - ebx gets saved/restored via edi register - - get_vendor incorrectly used ebx,ecx,edx when it should be ebx,edx,ecx - - unify all the cpuid implementations to make usage much simpler - -I WROTE THIS - ---- a/helper_functions.c -+++ b/helper_functions.c -@@ -87,41 +87,40 @@ print_family_info (struct family_info *proc_info) - // printf(" Extended Family %d\n", proc_info->extended_family); - } - -+static inline void cpuid (unsigned int info, unsigned int *eax, unsigned int *ebx, -+ unsigned int *ecx, unsigned int *edx) -+{ -+ unsigned int _eax = info, _ebx, _ecx, _edx; -+ asm volatile ("mov %%ebx, %%edi;" // save ebx (for PIC) -+ "cpuid;" -+ "mov %%ebx, %%esi;" // pass to caller -+ "mov %%edi, %%ebx;" // restore ebx -+ :"+a" (_eax), "=S" (_ebx), "=c" (_ecx), "=d" (_edx) -+ : /* inputs: eax is handled above */ -+ :"edi" /* clobbers: we hit edi directly */); -+ if (eax) *eax = _eax; -+ if (ebx) *ebx = _ebx; -+ if (ecx) *ecx = _ecx; -+ if (edx) *edx = _edx; -+} - --#ifdef x64_BIT - void get_vendor (char *vendor_string) - { - //get vendor name -- unsigned int b, c, d, e; -- // int i; -- asm volatile ("mov %4, %%eax; " // 0 into eax -- "cpuid;" "mov %%eax, %0;" // eeax into b -- "mov %%ebx, %1;" // eebx into c -- "mov %%edx, %2;" // eeax into d -- "mov %%ecx, %3;" // eeax into e -- :"=r" (b), "=r" (c), "=r" (d), "=r" (e) /* output */ -- :"r" (0) /* input */ -- :"%eax", "%ebx", "%ecx", "%edx" /* clobbered register, will be modifying inside the asm routine so dont use them */ -- ); -- memcpy (vendor_string, &c, 4); -+ unsigned int a, b, c, d; -+ cpuid (0, &a, &b, &c, &d); -+ memcpy (vendor_string, &b, 4); - memcpy (vendor_string + 4, &d, 4); -- memcpy (vendor_string + 8, &e, 4); -+ memcpy (vendor_string + 8, &c, 4); - vendor_string[12] = '\0'; - // printf("Vendor %s\n",vendor_string); - } --#endif - - int turbo_status () - { - //turbo state flag - unsigned int eax; -- // int i; -- asm volatile ("mov %1, %%eax; " // 0 into eax -- "cpuid;" "mov %%eax, %0;" // eeax into b -- :"=r" (eax) /* output */ -- :"r" (6) /* input */ -- :"%eax" /* clobbered register, will be modifying inside the asm routine so dont use them */ -- ); -+ cpuid (6, &eax, NULL, NULL, NULL); - - //printf("eax %d\n",(eax&0x2)>>1); - -@@ -132,12 +131,7 @@ void get_familyinformation (struct family_info *proc_info) - { - //get info about CPU - unsigned int b; -- asm volatile ("mov %1, %%eax; " // 0 into eax -- "cpuid;" "mov %%eax, %0;" // eeax into b -- :"=r" (b) /* output */ -- :"r" (1) /* input */ -- :"%eax" /* clobbered register, will be modifying inside the asm routine so dont use them */ -- ); -+ cpuid (1, &b, NULL, NULL, NULL); - // printf ("eax %x\n", b); - proc_info->stepping = b & 0x0000000F; //bits 3:0 - proc_info->model = (b & 0x000000F0) >> 4; //bits 7:4 -@@ -348,7 +342,6 @@ void Print_Information_Processor(bool* nehalem, bool* sandy_bridge) - { - struct family_info proc_info; - --#ifdef x64_BIT - char vendor_string[13]; - get_vendor (vendor_string); - if (strcmp (vendor_string, "GenuineIntel") == 0) -@@ -359,14 +352,6 @@ void Print_Information_Processor(bool* nehalem, bool* sandy_bridge) - ("this was designed to be a intel proc utility. You can perhaps mod it for your machine?\n"); - exit (1); - } --#endif -- --#ifndef x64_BIT -- //anecdotal evidence: get_vendor doesnt seem to work on 32-bit -- printf -- ("I dont know the CPUID code to check on 32-bit OS, so i will assume that you have an Intel processor\n"); -- printf ("Don't worry if i don't find a nehalem next, i'll quit anyways\n"); --#endif - - get_familyinformation (&proc_info); - print_family_info (&proc_info); ---- a/i7z.h -+++ b/i7z.h -@@ -106,9 +106,7 @@ __asm__ __volatile__ ("rdtsc":"=a" (lo), "=d" (hi)); - - void print_family_info (struct family_info *proc_info); - --#ifdef x64_BIT - void get_vendor (char *vendor_string); --#endif - - int turbo_status (); - double cpufreq_info(); diff --git a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/i7z-0.27-r1.ebuild b/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/i7z-0.27-r1.ebuild deleted file mode 100644 index daeb55753b..0000000000 --- a/sdk_container/src/third_party/portage-stable/app-benchmarks/i7z/i7z-0.27-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/i7z/i7z-0.27-r1.ebuild,v 1.1 2011/08/31 14:16:25 vapier Exp $ - -EAPI="4" - -inherit eutils qt4-r2 toolchain-funcs - -DESCRIPTION="A better i7 (and now i3, i5) reporting tool for Linux" -HOMEPAGE="http://code.google.com/p/i7z/" -SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="X" - -RDEPEND=" - sys-libs/ncurses - X? ( x11-libs/qt-gui:4 )" -DEPEND="${RDEPEND}" - -S="${WORKDIR}"/${PN} - -src_prepare() { - epatch "${FILESDIR}"/${PV}-gentoo.patch - epatch "${FILESDIR}"/${P}-cpuid.patch - tc-export CC -} - -src_compile() { - default - if use X; then - cd GUI - eqmake4 GUI.pro - emake - fi -} - -src_install() { - emake DESTDIR="${ED}" install - if use X; then - newsbin GUI/GUI i7z_GUI - fi - dodoc put_cores_o*line.sh MAKEDEV-cpuid-msr -} diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/Manifest b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/Manifest deleted file mode 100644 index badd4b014d..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST expect-5.44.1.15.tar.bz2 547655 RMD160 e992c650f546cc5fedaebc5f9617893a9f0905a9 SHA1 946c3591d16c216f409882f294378fc53e4f6c0a SHA256 c8565b869d67389995684b60553685168dd40135aa50022bd759f2d5e757d6f1 diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/expect-5.44.1.15.ebuild b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/expect-5.44.1.15.ebuild deleted file mode 100644 index 006a65b115..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/expect-5.44.1.15.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.44.1.15.ebuild,v 1.16 2010/12/17 22:56:19 vapier Exp $ - -EAPI="3" - -inherit autotools eutils - -DESCRIPTION="tool for automating interactive applications" -HOMEPAGE="http://expect.nist.gov/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" -IUSE="debug doc threads X" - -# We need dejagnu for src_test, but dejagnu needs expect -# to compile/run, so we cant add dejagnu to DEPEND :/ -DEPEND=">=dev-lang/tcl-8.2[threads?] - X? ( >=dev-lang/tk-8.2[threads?] )" -RDEPEND="${DEPEND}" - -src_prepare() { - sed -i "s#/usr/local/bin#${EPREFIX}/usr/bin#" expect{,k}.man || die - # stops any example scripts being installed by default - sed -i \ - -e '/^install:/s/install-libraries //' \ - -e 's/^SCRIPTS_MANPAGES = /_&/' \ - Makefile.in - - epatch "${FILESDIR}"/${P}-gfbsd.patch - epatch "${FILESDIR}"/${P}-ldflags.patch - epatch "${FILESDIR}"/${P}_with-tk-no.patch - epatch "${FILESDIR}"/${P}-headers.patch #337943 - epatch "${FILESDIR}"/${P}-expectk.patch - sed -i 's:ifdef HAVE_SYS_WAIT_H:ifndef NO_SYS_WAIT_H:' *.c - - eautoconf -} - -src_configure() { - local myconf - local tclv - local tkv - # Find the version of tcl/tk that has headers installed. - # This will be the most recently merged, not necessarily the highest - # version number. - tclv=$(grep TCL_VER ${EPREFIX}/usr/include/tcl.h | sed 's/^.*"\(.*\)".*/\1/') - #tkv isn't really needed, included for symmetry and the future - #tkv=$(grep TK_VER ${EPREFIX}/usr/include/tk.h | sed 's/^.*"\(.*\)".*/\1/') - myconf="--with-tcl=${EPREFIX}/usr/$(get_libdir) --with-tclinclude=${EPREFIX}/usr/$(get_libdir)/tcl${tclv}/include/generic --with-tk=yes" - - if use X ; then - #--with-x is enabled by default - #configure needs to find the file tkConfig.sh and tk.h - #tk.h is in /usr/lib so don't need to explicitly set --with-tkinclude - myconf="$myconf --with-tk=${EPREFIX}/usr/$(get_libdir) --with-tkinclude=${EPREFIX}/usr/include" - else - #configure knows that tk depends on X so just disable X - myconf="$myconf --with-tk=no" - fi - - econf \ - $myconf \ - --enable-shared \ - $(use_enable threads) \ - $(use_enable amd64 64bit) \ - $(use_enable debug symbols) -} - -src_test() { - # we need dejagnu to do tests ... but dejagnu needs - # expect ... so don't do tests unless we have dejagnu - type -p runtest || return 0 - emake test || die "emake test failed" -} - -expect_make_var() { - touch pkgIndex.tcl-hand - printf 'all:;echo $('$1')\ninclude Makefile' | emake --no-print-directory -s -f - - rm -f pkgIndex.tcl-hand -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc ChangeLog FAQ HISTORY NEWS README - - # install examples if 'doc' is set - if use doc ; then - insinto /usr/share/doc/${PF}/examples - doins $(printf 'example/%s ' $(expect_make_var SCRIPTS)) || die - docinto examples - dodoc example/README $(printf 'example/%s.man ' $(expect_make_var _SCRIPTS_MANPAGES)) || die - fi -} diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-expectk.patch b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-expectk.patch deleted file mode 100644 index 0c0ba80293..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-expectk.patch +++ /dev/null @@ -1,14 +0,0 @@ -expectk is only built when TK_BIN_DIR is defined. the configure script -takes care of figuring out this value, but then they forgot to actually -write it out to the Makefile. - ---- Makefile.in -+++ Makefile.in -@@ -24,6 +24,7 @@ - # SETUID = chmod u+s - - LIB_RUNTIME_DIR = $(DESTDIR)@libdir@ -+TK_BIN_DIR = @TK_BIN_DIR@ - - # The following Expect scripts are not necessary to have installed as - # commands, but are very useful. Edit out what you don't want diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-gfbsd.patch b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-gfbsd.patch deleted file mode 100644 index d67de2126a..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-gfbsd.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- expect-5.44.1.15/tclconfig/tcl.m4.orig 2010-04-08 22:49:51.568043292 -0700 -+++ expect-5.44.1.15/tclconfig/tcl.m4 2010-04-08 22:50:28.207915301 -0700 -@@ -1579,12 +1579,12 @@ - FreeBSD-*) - # FreeBSD 3.* and greater have ELF. - SHLIB_CFLAGS="-fPIC" -- SHLIB_LD="ld -Bshareable -x" -+ SHLIB_LD="${CC} -shared" - SHLIB_LD_LIBS='${LIBS}' - SHLIB_SUFFIX=".so" - DL_OBJS="tclLoadDl.o" - DL_LIBS="" -- LDFLAGS="$LDFLAGS -export-dynamic" -+ LDFLAGS="$LDFLAGS -Wl,-export-dynamic" - CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' - LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}' - if test "${TCL_THREADS}" = "1" ; then diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-headers.patch b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-headers.patch deleted file mode 100644 index 77e4d91f4b..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-headers.patch +++ /dev/null @@ -1,86 +0,0 @@ -https://sourceforge.net/tracker/?func=detail&aid=3071706&group_id=13179&atid=113179 - ---- a/exp_clib.c -+++ b/exp_clib.c -@@ -15,6 +15,12 @@ - #endif - #include - #include -+#ifdef HAVE_UNISTD_H -+# include -+#endif -+#ifdef HAVE_SYS_WAIT_H -+#include -+#endif - - #ifdef TIME_WITH_SYS_TIME - # include ---- a/exp_trap.c -+++ b/exp_trap.c -@@ -13,6 +13,7 @@ - #include - #include - #include -+#include - - #ifdef HAVE_SYS_WAIT_H - #include ---- a/pty_termios.c -+++ b/pty_termios.c -@@ -9,6 +9,8 @@ - - #include - #include -+#include -+#include - - #if defined(SIGCLD) && !defined(SIGCHLD) - #define SIGCHLD SIGCLD -@@ -100,6 +100,7 @@ - - #include "exp_tty_in.h" - #include "exp_rename.h" -+#include "exp_int.h" - #include "exp_pty.h" - - void expDiagLog(); ---- a/exp_chan.c -+++ b/exp_chan.c -@@ -34,6 +34,7 @@ - #include "exp_rename.h" - #include "exp_prog.h" - #include "exp_command.h" -+#include "exp_event.h" - #include "exp_log.h" - #include "tcldbg.h" /* Dbg_StdinMode */ - ---- a/exp_clib.c -+++ b/exp_clib.c -@@ -1955,6 +1955,7 @@ - - #include "expect.h" - #include "exp_int.h" -+EXTERN void exp_init_tty _ANSI_ARGS_((void)); - - /* exp_glob.c - expect functions for doing glob - * ---- a/exp_tty.h -+++ b/exp_tty.h -@@ -17,6 +17,7 @@ - - void exp_tty_raw(int set); - void exp_tty_echo(int set); -+int exp_tty_cooked_echo(Tcl_Interp *interp, exp_tty *tty_old, int *was_raw, int *was_echo); - void exp_tty_break(Tcl_Interp *interp, int fd); - int exp_tty_raw_noecho(Tcl_Interp *interp, exp_tty *tty_old, int *was_raw, int *was_echo); - int exp_israw(void); ---- a/exp_main_tk.c -+++ b/exp_main_tk.c -@@ -32,6 +32,7 @@ - static char sccsid[] = "@(#) tkAppInit.c 1.19 95/12/23 17:09:24"; - #endif /* not lint */ - -+#include - #include - - #include "tk.h" diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-ldflags.patch b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-ldflags.patch deleted file mode 100644 index be3641c210..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15-ldflags.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Makefile.in b/Makefile.in -index cc2c79b..1083eaf 100644 ---- a/Makefile.in -+++ b/Makefile.in -@@ -148,7 +148,7 @@ OBJEXT = @OBJEXT@ - RANLIB = @RANLIB@ - RANLIB_STUB = @RANLIB_STUB@ - SHLIB_CFLAGS = @SHLIB_CFLAGS@ --SHLIB_LD = @SHLIB_LD@ -+SHLIB_LD = @SHLIB_LD@ $(LDFLAGS) - SHLIB_LD_LIBS = @SHLIB_LD_LIBS@ - STLIB_LD = @STLIB_LD@ - TCL_DEFS = @TCL_DEFS@ diff --git a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15_with-tk-no.patch b/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15_with-tk-no.patch deleted file mode 100644 index cea372daaa..0000000000 --- a/sdk_container/src/third_party/portage-stable/dev-tcltk/expect/files/expect-5.44.1.15_with-tk-no.patch +++ /dev/null @@ -1,117 +0,0 @@ -This is a minimal patch that does not keep indentation consistent in tcl.m4 -Updating indentation would make the patch much bigger and less readable. - -Signed-off-by: Gilles Espinasse - -Index: INSTALL -=================================================================== -RCS file: /cvsroot/expect/expect/INSTALL,v -retrieving revision 5.30 -diff -u -r5.30 INSTALL ---- INSTALL 21 Jun 1999 18:41:41 -0000 5.30 -+++ INSTALL 30 May 2009 11:51:21 -0000 -@@ -152,6 +152,7 @@ - - --with-tk=... Specifies the directory containing Tk's - configure file (tkConfig.sh). -+ --with-tk=no disable Tk usage in expect - - --with-tkinclude=... Specifies the directory containing Tk's - private include files (such as tkInt.h) -Index: Makefile.in -=================================================================== -RCS file: /cvsroot/expect/expect/Makefile.in,v -retrieving revision 5.45 -diff -u -r5.45 Makefile.in ---- Makefile.in 3 Oct 2008 17:05:14 -0000 5.45 -+++ Makefile.in 30 May 2009 11:51:21 -0000 -@@ -103,7 +103,11 @@ - PKG_STUB_LIB_FILE = @PKG_STUB_LIB_FILE@ - - lib_BINARIES = $(PKG_LIB_FILE) --bin_BINARIES = expect expectk -+bin_BINARIES = expect -+ifneq ($(TK_BIN_DIR),) -+ bin_BINARIES += expectk -+endif -+ - BINARIES = $(lib_BINARIES) $(bin_BINARIES) - - SHELL = @SHELL@ -Index: tclconfig/tcl.m4 -=================================================================== -RCS file: /cvsroot/expect/expect/tclconfig/tcl.m4,v -retrieving revision 1.3 -diff -u -r1.3 tcl.m4 ---- tclconfig/tcl.m4 25 Jan 2006 21:52:11 -0000 1.3 -+++ tclconfig/tcl.m4 30 May 2009 11:51:23 -0000 -@@ -181,10 +181,12 @@ - # - # Adds the following arguments to configure: - # --with-tk=... -+# --with-tk=no disable Tk usage - # - # Defines the following vars: - # TK_BIN_DIR Full path to the directory containing - # the tkConfig.sh file -+# Empty if Tk is disabled - #------------------------------------------------------------------------ - - AC_DEFUN(TEA_PATH_TKCONFIG, [ -@@ -201,6 +203,12 @@ - AC_HELP_STRING([--with-tk], - [directory containing tk configuration (tkConfig.sh)]), - with_tkconfig=${withval}) -+ -+ if test x"${with_tkconfig}" = x"no" ; then -+ AC_MSG_RESULT([Tk is disabled by --with-tk=no]) -+ unset TK_BIN_DIR -+ else -+ - AC_MSG_CHECKING([for Tk configuration]) - AC_CACHE_VAL(ac_cv_c_tkconfig,[ - -@@ -309,6 +317,7 @@ - TK_BIN_DIR=${ac_cv_c_tkconfig} - AC_MSG_RESULT([found ${TK_BIN_DIR}/tkConfig.sh]) - fi -+ fi - fi - ]) - -@@ -420,6 +429,7 @@ - #------------------------------------------------------------------------ - - AC_DEFUN(TEA_LOAD_TKCONFIG, [ -+ if test x"${with_tkconfig}" != x"no" ; then - AC_MSG_CHECKING([for existence of ${TK_BIN_DIR}/tkConfig.sh]) - - if test -f "${TK_BIN_DIR}/tkConfig.sh" ; then -@@ -501,6 +511,7 @@ - - AC_SUBST(TK_LIBS) - AC_SUBST(TK_XINCLUDES) -+ fi - ]) - - #------------------------------------------------------------------------ -@@ -3528,6 +3539,11 @@ - #------------------------------------------------------------------------ - - AC_DEFUN(TEA_PUBLIC_TK_HEADERS, [ -+ if test x"${with_tkconfig}" = x"no" ; then -+ TK_INCLUDES="" -+ AC_SUBST(TK_INCLUDES) -+ else -+ - AC_MSG_CHECKING([for Tk public headers]) - - AC_ARG_WITH(tkinclude, [ --with-tkinclude directory containing the public Tk header files.], with_tkinclude=${withval}) -@@ -3608,6 +3624,7 @@ - fi - AC_MSG_RESULT([${INCLUDE_DIR_NATIVE}]) - fi -+ fi - ]) - - #------------------------------------------------------------------------ diff --git a/sdk_container/src/third_party/portage-stable/games-util/joystick/Manifest b/sdk_container/src/third_party/portage-stable/games-util/joystick/Manifest deleted file mode 100644 index a939fe9091..0000000000 --- a/sdk_container/src/third_party/portage-stable/games-util/joystick/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST linuxconsoletools-1.4.2.tar.bz2 39818 RMD160 6dbce6cd3f7db0ba575cbc9e8e74f3065323ae5b SHA1 a3825c3cfffc8e9965a68d367b9b4529647b941c SHA256 af85bac15df35dac00191a717813a49294402dc3ee556a4fd8f0e191feb21763 diff --git a/sdk_container/src/third_party/portage-stable/games-util/joystick/files/joystick-1.4.2-build.patch b/sdk_container/src/third_party/portage-stable/games-util/joystick/files/joystick-1.4.2-build.patch deleted file mode 100644 index 6e3d5774e5..0000000000 --- a/sdk_container/src/third_party/portage-stable/games-util/joystick/files/joystick-1.4.2-build.patch +++ /dev/null @@ -1,79 +0,0 @@ ---- a/docs/Makefile -+++ b/docs/Makefile -@@ -20,13 +20,16 @@ - # 02110-1301 USA. - - MANPAGES = inputattach.1 jstest.1 jscal.1 fftest.1 \ -- ffmvforce.1 ffset.1 ffcfstress.1 jscal-store.1 \ -+ ffset.1 ffcfstress.1 jscal-store.1 \ - jscal-restore.1 -+ifneq ($(USE_SDL),no) -+MANPAGES += ffmvforce.1 -+endif - - PREFIX ?= /usr/local - - install: - install -d $(DESTDIR)$(PREFIX)/share/man/man1 -- install $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1 -+ install -m 644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1 - - .PHONY: install ---- a/utils/Makefile -+++ b/utils/Makefile -@@ -25,11 +25,19 @@ - # Edit the options below to suit your needs - # - --CC = gcc --CFLAGS = -g -O2 -Wall -I../linux/include -+CC ?= gcc -+PKG_CONFIG ?= pkg-config -+CFLAGS ?= -g -O2 -+CFLAGS += -Wall -+CPPFLAGS += -I../linux/include -+SDL_CFLAGS = $(shell $(PKG_CONFIG) --cflags sdl) -+SDL_LIBS = $(shell $(PKG_CONFIG) --libs sdl) - --PROGRAMS = inputattach jstest jscal fftest ffmvforce ffset \ -+PROGRAMS = inputattach jstest jscal fftest ffset \ - ffcfstress jscal-restore jscal-store -+ifneq ($(USE_SDL),no) -+PROGRAMS += ffmvforce -+endif - - PREFIX ?= /usr/local - -@@ -40,27 +48,27 @@ - $(RM) *.o *.swp $(PROGRAMS) *.orig *.rej map *~ - - ffcfstress: ffcfstress.c -- $(CC) -O2 -funsigned-char ffcfstress.c -lm -o ffcfstress -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -funsigned-char ffcfstress.c -lm -o ffcfstress - - ffmvforce.o: ffmvforce.c -- $(CC) -c $(CFLAGS) $(CPPFLAGS) $^ -o $@ `sdl-config --cflags` -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $^ -o $@ - - ffmvforce: ffmvforce.o -- $(CC) $^ -o $@ $(LDFLAGS) -g -lm `sdl-config --libs` -+ $(CC) $^ -o $@ $(CFLAGS) $(LDFLAGS) -lm $(SDL_LIBS) - - axbtnmap.o: axbtnmap.c axbtnmap.h - - jscal.o: jscal.c axbtnmap.h - - jscal: jscal.o axbtnmap.o -- $(CC) $(CFLAGS) $(CPPFLAGS) $^ -lm -o $@ -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $^ -lm -o $@ - - jstest.o: jstest.c axbtnmap.h - - jstest: jstest.o axbtnmap.o - - gencodes: gencodes.c scancodes.h -- $(CC) $(CFLAGS) $(CPPFLAGS) gencodes.c -o gencodes -+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) gencodes.c -o gencodes - - jscal-restore: jscal-restore.in - sed "s^@@PREFIX@@^$(PREFIX)^g" < $^ > $@ diff --git a/sdk_container/src/third_party/portage-stable/games-util/joystick/joystick-1.4.2.ebuild b/sdk_container/src/third_party/portage-stable/games-util/joystick/joystick-1.4.2.ebuild deleted file mode 100644 index 3d2be1847c..0000000000 --- a/sdk_container/src/third_party/portage-stable/games-util/joystick/joystick-1.4.2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-1.4.2.ebuild,v 1.4 2012/04/15 16:53:35 maekke Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -MY_P="linuxconsoletools-${PV}" -DESCRIPTION="joystick testing utilities" -HOMEPAGE="http://sourceforge.net/projects/linuxconsole/ http://atrey.karlin.mff.cuni.cz/~vojtech/input/" -SRC_URI="mirror://sourceforge/linuxconsole/files/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ppc x86" -IUSE="sdl" - -DEPEND="sdl? ( media-libs/libsdl[video] ) - ! yelp-xsl-3.12.0.ebuild: - Stable for HPPA (bug #512012). - - 28 Jul 2014; Agostino Sarubbo yelp-xsl-3.12.0.ebuild: - Stable for ppc, wrt bug #512012 - - 23 Jul 2014; Agostino Sarubbo yelp-xsl-3.12.0.ebuild: - Stable for x86, wrt bug #512012 - - 22 Jul 2014; Agostino Sarubbo yelp-xsl-3.12.0.ebuild: - Stable for amd64, wrt bug #512912 - - 20 Jun 2014; Agostino Sarubbo yelp-xsl-3.10.1.ebuild: - Stable for arm, wrt bug #508862 - - 17 May 2014; Agostino Sarubbo yelp-xsl-3.10.1.ebuild: - Stable for alpha, wrt bug #508862 - - 14 May 2014; Agostino Sarubbo yelp-xsl-3.10.1.ebuild: - Stable for sparc, wrt bug #508862 - - 13 May 2014; Agostino Sarubbo yelp-xsl-3.10.1.ebuild: - Stable for ia64, wrt bug #508862 - - 11 May 2014; Agostino Sarubbo yelp-xsl-3.10.1.ebuild: - Stable for ppc64, wrt bug #508862 - - 10 May 2014; Agostino Sarubbo yelp-xsl-3.10.1.ebuild: - Stable for ppc, wrt bug #508862 - -*yelp-xsl-3.12.0 (27 Apr 2014) - - 27 Apr 2014; Gilles Dartiguelongue +yelp-xsl-3.12.0.ebuild: - Version bump for Gnome 3.12. - - 27 Apr 2014; Pacho Ramos -yelp-xsl-3.8.1.ebuild: - drop old - - 28 Mar 2014; Jeroen Roovers yelp-xsl-3.10.1.ebuild: - Stable for HPPA (bug #499954). - - 09 Mar 2014; Pacho Ramos yelp-xsl-3.10.1.ebuild: - x86 stable, bug 499954 - - 09 Mar 2014; Pacho Ramos yelp-xsl-3.10.1.ebuild: - amd64 stable, bug 499954 - - 22 Feb 2014; Pacho Ramos yelp-xsl-3.10.1.ebuild: - Fix wrong commit, bug 502160 - - 22 Feb 2014; Pacho Ramos yelp-xsl-3.10.1.ebuild: - arch stable, bug 888 - - 20 Jan 2014; Mike Frysinger yelp-xsl-3.10.1.ebuild, - yelp-xsl-3.6.1.ebuild, yelp-xsl-3.8.1.ebuild: - Add s390 love #469982. - -*yelp-xsl-3.10.1 (24 Dec 2013) - - 24 Dec 2013; Pacho Ramos +yelp-xsl-3.10.1.ebuild, - -yelp-xsl-3.8.0.ebuild: - Version bump for Gnome 3.10 - - 22 Dec 2013; Jeroen Roovers yelp-xsl-3.8.1.ebuild: - Stable for HPPA (bug #478252). - - 08 Dec 2013; Pacho Ramos yelp-xsl-3.8.1.ebuild: - x86 stable, bug #478252 - - 30 Nov 2013; Pacho Ramos yelp-xsl-3.8.1.ebuild: - amd64 stable, bug #478252 - - 29 Aug 2013; Jeroen Roovers yelp-xsl-3.6.1.ebuild: - Stable for HPPA (bug #482886). - -*yelp-xsl-3.8.1 (14 May 2013) - - 14 May 2013; Pacho Ramos +yelp-xsl-3.8.1.ebuild: - Version bump - - 01 Apr 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for sparc, wrt bug #458984 - - 01 Apr 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for alpha, wrt bug #458984 - - 29 Mar 2013; Gilles Dartiguelongue -yelp-xsl-3.4.2.ebuild: - Clean up old revision. - - 29 Mar 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for ia64, wrt bug #458984 - -*yelp-xsl-3.8.0 (28 Mar 2013) - - 28 Mar 2013; Pacho Ramos +yelp-xsl-3.8.0.ebuild: - Version bump for Gnome 3.8 - - 28 Mar 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for arm, wrt bug #458984 - - 27 Mar 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for ppc64, wrt bug #458984 - - 26 Mar 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for ppc, wrt bug #458984 - - 25 Mar 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for x86, wrt bug #458984 - - 25 Mar 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Stable for amd64, wrt bug #458984 - - 25 Feb 2013; Zac Medico yelp-xsl-3.6.1.ebuild: - Add ~arm-linux keyword. - - 08 Feb 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Add ~sh, wrt bug #449220 - - 06 Feb 2013; Alexandre Rostovtsev - yelp-xsl-3.6.1.ebuild: - Switch to virtual/awk since it has been keyworded. - - 06 Feb 2013; Alexandre Rostovtsev - yelp-xsl-3.4.2.ebuild, yelp-xsl-3.6.1.ebuild, - -files/yelp-xsl-3.6.1-gawk.patch: - Undo previous commit: yelp-xsl works with all virtual/awk implementations - except for nawk, which is buggy (see bug #455786). However, the 3.6.1 ebuild - cannot switch to virtual/awk until it's keyworded on amd64-fbsd. - - 06 Feb 2013; Alexandre Rostovtsev - -yelp-xsl-3.2.1.ebuild, yelp-xsl-3.4.2.ebuild, yelp-xsl-3.6.1.ebuild, - +files/yelp-xsl-3.6.1-gawk.patch: - Ensure gawk, not virtual/awk is used; nawk fails on build scripts with syntax - errors (bug #455730, thanks to Christoph Junghans). Drop old. - - 28 Jan 2013; Alexis Ballier yelp-xsl-3.6.1.ebuild: - keyword ~amd64-fbsd - - 06 Jan 2013; Markus Meier yelp-xsl-3.6.1.ebuild: - add ~arm, bug #449220 - - 06 Jan 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Add ~sparc, wrt bug #449220 - - 01 Jan 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Add ~alpha, wrt bug #449220 - - 01 Jan 2013; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Add ~ia64, wrt bug #449220 - - 19 Dec 2012; Jeroen Roovers yelp-xsl-3.4.2.ebuild, - yelp-xsl-3.6.1.ebuild: - Marked ~hppa (bug #447432). - - 17 Dec 2012; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Add ~ppc, wrt bug #447432 - - 17 Dec 2012; Agostino Sarubbo yelp-xsl-3.6.1.ebuild: - Add ~ppc64, wrt bug #447432 - - 17 Dec 2012; Agostino Sarubbo yelp-xsl-3.4.2.ebuild: - Add ~ppc64, wrt bug #447432 - - 17 Dec 2012; Agostino Sarubbo yelp-xsl-3.4.2.ebuild: - Add ~ppc, wrt bug #447432 - -*yelp-xsl-3.6.1 (16 Dec 2012) - - 16 Dec 2012; Alexandre Rostovtsev - yelp-xsl-3.2.1.ebuild, -yelp-xsl-3.4.1.ebuild, yelp-xsl-3.4.2.ebuild, - +yelp-xsl-3.6.1.ebuild: - Version bump for gnome-3.6. Update license. Drop old. - - 04 Oct 2012; Agostino Sarubbo yelp-xsl-3.4.2.ebuild: - Stable for amd64, wrt bug #427544 - - 03 Oct 2012; Pawel Hajdan jr yelp-xsl-3.4.2.ebuild: - x86 stable wrt bug #427544 - -*yelp-xsl-3.4.2 (20 May 2012) - - 20 May 2012; Alexandre Rostovtsev - +yelp-xsl-3.4.2.ebuild: - Version bump. - -*yelp-xsl-3.4.1 (06 May 2012) - - 06 May 2012; Alexandre Rostovtsev - +yelp-xsl-3.4.1.ebuild: - Version bump, improves HTML output and DocBook handling. - - 05 May 2012; Jeff Horelick yelp-xsl-3.2.1.ebuild: - dev-util/pkgconfig -> virtual/pkgconfig - - 29 Apr 2012; Markus Meier yelp-xsl-3.2.1.ebuild: - x86 stable, bug #410611 - - 18 Apr 2012; Agostino Sarubbo yelp-xsl-3.2.1.ebuild: - Stable for amd64, wrt bug #410611 - -*yelp-xsl-3.2.1 (04 Nov 2011) - - 04 Nov 2011; Alexandre Rostovtsev - -yelp-xsl-3.0.2.ebuild, +yelp-xsl-3.2.1.ebuild: - Bump to 3.2.1 from the gnome overlay. Drop old. Notable changes: JavaScript - and CSS updates, DocBook fixes, peformance improvements. Drop alpha, arm, - hppa, ia64, ppc, ppc64, sparc keywords for itstool dependency. - -*yelp-xsl-3.0.2 (19 Aug 2011) - - 19 Aug 2011; Nirbheek Chauhan +yelp-xsl-3.0.2.ebuild, - +metadata.xml: - Bump to 3.0.2, from gnome overlay for GNOME 3 diff --git a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/Manifest b/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/Manifest deleted file mode 100644 index 50f344bb1b..0000000000 --- a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/Manifest +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA256 - -DIST yelp-xsl-3.10.1.tar.xz 595912 SHA256 59c6dee3999121f6ffd33a9c5228316b75bc22e3bd68fff310beb4eeff245887 SHA512 02a081705da0947937048a55fe10503bfc63b1ebbccc8c0c8a59beeaebc3132e7f00090137c60a068f482f9e31e984b635e3135b0ef99763c13d171e959939fb WHIRLPOOL 9982a34b7ebe6a9fd2ce9824e0ff7a6c6b7fde1c2af8859aa59aec2f1393f3e6073919f9488cace924727b6235fca354cea3d1340fc906e838f244bef1a2e513 -DIST yelp-xsl-3.12.0.tar.xz 564456 SHA256 dd0b8af338b1cdae50444273d7c761e3f511224421487311103edc95a4493656 SHA512 f2ca0e393b72aaf34be9ac2be358e842962a0bc14f10fe281d192d827c275ea0c8905ba5c60d52222b23e6f40e4848fbb8a5089218cd03296b9a72a41d68bbd5 WHIRLPOOL 7f3630bfeac097efa9a5868f5735c27efeeb3456a2366d45c8d6e0e706fc8a02a593a493470875b147ad7b527eec710a43528bf5216cd4a0f23458b7bbd232fe -DIST yelp-xsl-3.6.1.tar.xz 589500 SHA256 9cac9770d6ace354f3e56a2e60933bb0cd894a4263a3bf1db6e8900f86f8cdd6 SHA512 8c097361d1f238b02d750e702f4eb72d56630e71b168634f4cabbfa9724719fced9b582c6c2e693b94f9045ec00313478b04e8d7a1f3fc87fd7ad140f7e5847a WHIRLPOOL 15e90968cf321ae8ca5f9acc6e1407f6b15a3d17b779ffdbe0380c4b5905870b3e3917f46e4a87ac19c07eccd105f1513e3f0041932af25d68abc9abc6c53475 -EBUILD yelp-xsl-3.10.1.ebuild 697 SHA256 073e167fac934b726c24fdf55524610e62e27b938d2ab85f72049eec6b8ae63f SHA512 43f95db47b1ba0202f96fd45f00ec5b153bc5d8e4cea43bef7000cf686a593352bbf3f9a15bd7044ed9d41a3768d5f64d4fed30ba5fd7e9ccd5c6ad150af69b2 WHIRLPOOL 73e503dcff30c74bc9289352a05b58f41369cb6861f2282ad4a734d8f577d2a6445676e2711e3aec651b39afe6c86d1d4c2af0eb9c9e453733e54024e1035ddb -EBUILD yelp-xsl-3.12.0.ebuild 701 SHA256 41b7cb68bb737b7c41ff9afb37faea9cb864600de69f7cf4cd9fcece191b3e8a SHA512 bcb30a4d26848116dd3c48385496818f9ccdaf3f81b9e625aea875d2c5f8c71fbee97f00f79d821d6e84265de7d356aeead23ee07fc12b66128b284a2b7b0823 WHIRLPOOL 1a6becbd2f4c7a5373439fb5fd81c36eba84f64fae959e89edc9c440723938a7c0b5979bd6982fed9eb482ba1c2c88c55e981e6c178e9ae4ddbc8bf1a63bcf1f -EBUILD yelp-xsl-3.6.1.ebuild 683 SHA256 22193550f77428a53b5cb3b8b77053e45ff310720e4f8e2bc40ca0808e27b7fd SHA512 f938cc6a44b7c1495762e742845b276590df7efa53721a35c7414297cac3a96ec4684cd3d7d9a49617da824718fe3885baef4b398446f1115afdfde3789b7095 WHIRLPOOL 016f8be529e9b8c1cfbb0778bf0d2154188e9ba79cf9f8b3bbf60d1fa97e7116c1b78173e1e8ddef81d302dc8f9686bfee60cfd90a5a77dd63bf171fc62452c3 -MISC ChangeLog 7620 SHA256 09f22382f5a7acc6e38540c9d1c46fc82e865cb6ec207dd81803b813e04a1e91 SHA512 bb94350239a880708679540ffa0155e1787f4078a98b29983a1f195e7813d5f27b6b96b6afe4eb54336b79f1ec476d36f50aead1178296fcdac6d6df2c346b26 WHIRLPOOL 5eef110ddc35f4495cc617fbc3885f32a644a06a53fc61c13425782d3b0207837dd46cf214df9db067d8fe7feaeaee0e05339b8fddd248666b4ab4009f5ab03a -MISC metadata.xml 158 SHA256 3a7dbca0fdc557de69783e0663e2d76ddab129ea8a19b2d0ef6d3e5d1b947ce1 SHA512 7fbfbd2b3ed1b81867d55648509f778fdbe2091af53727b3426a3c7f453ae7e1663a99fdd2101508b8d6c85b3158459c93551b77a6a394f02d7e11cbc8a5ecf4 WHIRLPOOL 4bcd5662974877d42ebc4361b6eb412bfeea2af7144b436ce7ed152327d554afc321c376625ba0bb85a704b70d86e3c4882dff3573047acddd8ffccf655d4f7e ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2 - -iEYEAREIAAYFAlPjyecACgkQVWmRsqeSphPGrACcCKi04wzJri0xxAJmK3Noq6qD -8mMAmwXTGh8P2CN4FKfXMmWDGs8nkDYP -=NX5c ------END PGP SIGNATURE----- diff --git a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/metadata.xml b/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/metadata.xml deleted file mode 100644 index da6fd63d00..0000000000 --- a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - -gnome - diff --git a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.10.1.ebuild b/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.10.1.ebuild deleted file mode 100644 index b18a9807c4..0000000000 --- a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.10.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp-xsl/yelp-xsl-3.10.1.ebuild,v 1.13 2014/06/20 14:45:18 ago Exp $ - -EAPI="5" - -inherit gnome.org - -DESCRIPTION="XSL stylesheets for yelp" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+" -SLOT="0" -IUSE="" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" - -RDEPEND=" - >=dev-libs/libxml2-2.6.12:= - >=dev-libs/libxslt-1.1.8:= -" -DEPEND="${RDEPEND} - >=dev-util/intltool-0.40 - >=dev-util/itstool-1.2.0 - sys-devel/gettext - virtual/awk - virtual/pkgconfig -" diff --git a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.12.0.ebuild b/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.12.0.ebuild deleted file mode 100644 index a4f01ef758..0000000000 --- a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.12.0.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp-xsl/yelp-xsl-3.12.0.ebuild,v 1.5 2014/08/07 18:48:05 jer Exp $ - -EAPI="5" - -inherit gnome.org - -DESCRIPTION="XSL stylesheets for yelp" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+" -SLOT="0" -IUSE="" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" - -RDEPEND=" - >=dev-libs/libxml2-2.6.12:= - >=dev-libs/libxslt-1.1.8:= -" -DEPEND="${RDEPEND} - >=dev-util/intltool-0.40 - >=dev-util/itstool-1.2.0 - sys-devel/gettext - virtual/awk - virtual/pkgconfig -" diff --git a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.6.1.ebuild b/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.6.1.ebuild deleted file mode 100644 index f41d6ae3f2..0000000000 --- a/sdk_container/src/third_party/portage-stable/gnome-extra/yelp-xsl/yelp-xsl-3.6.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/yelp-xsl/yelp-xsl-3.6.1.ebuild,v 1.24 2014/01/20 19:24:33 vapier Exp $ - -EAPI="5" - -inherit gnome.org - -DESCRIPTION="XSL stylesheets for yelp" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+" -SLOT="0" -IUSE="" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux" - -RDEPEND=">=dev-libs/libxml2-2.6.12 - >=dev-libs/libxslt-1.1.8" -DEPEND="${RDEPEND} - >=dev-util/intltool-0.40 - dev-util/itstool - sys-devel/gettext - virtual/awk - virtual/pkgconfig" diff --git a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/freeglut/Manifest deleted file mode 100644 index b749c61e32..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST freeglut-2.4.0.tar.gz 469557 RMD160 77465647f3d65fbb5cf253eb93ac7409e0c37b14 SHA1 91a528aa72758b7288a0d69a964b1b7e3f322a12 SHA256 269f2d50ba30b381622eb36f20b552ad43a1b43d544b9075e484e7146e81b052 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/2.4.0-cursor.patch b/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/2.4.0-cursor.patch deleted file mode 100644 index fab7f9eb0d..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/2.4.0-cursor.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- src/freeglut_cursor.c.old 2006-10-11 20:49:13.000000000 +0200 -+++ src/freeglut_cursor.c 2006-10-11 20:51:43.000000000 +0200 -@@ -147,11 +147,13 @@ - } - } - -- if ( ( cursorIDToUse != GLUT_CURSOR_NONE ) && ( cursor == None ) ) { -+ if ( cursorIDToUse == GLUT_CURSOR_INHERIT ) { -+ XUndefineCursor( fgDisplay.Display, window->Window.Handle ); -+ } else if ( cursor != None ) { -+ XDefineCursor( fgDisplay.Display, window->Window.Handle, cursor ); -+ } else if ( cursorIDToUse != GLUT_CURSOR_NONE ) { - fgError( "Failed to create cursor" ); - } -- XDefineCursor( fgDisplay.Display, -- window->Window.Handle, cursor ); - } - - #elif TARGET_HOST_WIN32 || TARGET_HOST_WINCE diff --git a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-2.4.0-bsd-usb-joystick.patch b/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-2.4.0-bsd-usb-joystick.patch deleted file mode 100644 index 08aa1326eb..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-2.4.0-bsd-usb-joystick.patch +++ /dev/null @@ -1,16 +0,0 @@ -We disable BSD usb joystick support until upstream has a better support for it -so that it can at least build. For now it builds but does not link to libusbhid -so that libglut.so has undefined references to hid_* symbols and causes linking -errors later on in the build process. - ---- freeglut-2.4.0/src/freeglut_joystick.c.old 2008-08-08 15:26:15 +0000 -+++ freeglut-2.4.0/src/freeglut_joystick.c 2008-08-08 15:26:32 +0000 -@@ -78,7 +78,7 @@ - # include - # if defined(__FreeBSD__) || defined(__NetBSD__) - /* XXX The below hack is done until freeglut's autoconf is updated. */ --# define HAVE_USB_JS 1 -+# undef HAVE_USB_JS - - # if defined(__FreeBSD__) && __FreeBSD_version >= 500000 - # include diff --git a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-2.4.0-macos.patch b/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-2.4.0-macos.patch deleted file mode 100644 index 8a05b94eb7..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-2.4.0-macos.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- freeglut-2.4.0/src/freeglut_joystick.c.orig 2005-07-02 10:41:52.000000000 +0200 -+++ freeglut-2.4.0/src/freeglut_joystick.c 2005-07-02 10:44:17.000000000 +0200 -@@ -1389,7 +1389,7 @@ - # endif - #endif - --#if defined( __linux__ ) -+#if defined( __linux__ ) || defined(__APPLE_CC__) - /* Default for older Linux systems. */ - joy->num_axes = 2; - joy->num_buttons = 32; diff --git a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-gcc42.patch b/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-gcc42.patch deleted file mode 100644 index 27404eaea8..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/files/freeglut-gcc42.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- src/freeglut_joystick.c.old 2006-07-25 21:15:14.000000000 -0600 -+++ src/freeglut_joystick.c 2006-07-25 21:21:54.000000000 -0600 -@@ -1684,9 +1684,6 @@ - - fgInitialiseJoysticks (); - -- if ( !fgJoystick ) -- return 0; -- - if ( !fgState.JoysticksInitialised ) - return 0; - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/freeglut-2.4.0-r2.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/freeglut/freeglut-2.4.0-r2.ebuild deleted file mode 100644 index 925d91e2a5..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/freeglut/freeglut-2.4.0-r2.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/freeglut/freeglut-2.4.0-r2.ebuild,v 1.2 2009/12/14 11:49:26 remi Exp $ - -inherit eutils flag-o-matic libtool autotools - -DESCRIPTION="A completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library" -HOMEPAGE="http://freeglut.sourceforge.net/" -SRC_URI="mirror://sourceforge/freeglut/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="" - -RDEPEND="virtual/opengl - virtual/glu - !media-libs/glut" -DEPEND="${RDEPEND}" - -pkg_setup() { - # bug #134586 - if [[ ${CFLAGS/march/} = ${CFLAGS} ]]; then - ewarn "You do not have 'march' set in your CFLAGS." - ewarn "This is known to cause compilation problems" - ewarn "in ${P}. If the compile fails, please set" - ewarn "'march' to the appropriate architecture." - epause 5 - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - # fixes bug #97390 - epatch "${FILESDIR}"/${P}-macos.patch - - # #131856 - epatch "${FILESDIR}"/${PN}-gcc42.patch - - # (#140542) fix cursor handling so flightgear works - epatch "${FILESDIR}"/${PV}-cursor.patch - - # Disable BSD's usb joystick support, see reasons in the patch - epatch "${FILESDIR}"/${P}-bsd-usb-joystick.patch - - # bug #134586 - replace-flags -O3 -O2 - - # Needed for sane .so versionning on bsd, please don't drop - elibtoolize - eautoreconf -} - -src_compile() { - # (#191589) Don't let -Werror get tagged on - econf --disable-warnings || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed" - dohtml -r doc/*.html doc/*.png || die "dohtml failed" -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/giflib/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/giflib/Manifest deleted file mode 100644 index 73d87d510c..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/giflib/Manifest +++ /dev/null @@ -1,3 +0,0 @@ - -DIST giflib-4.1.6.tar.bz2 506050 RMD160 bdb99f7048a79b9e771b069f90ac151537011d19 SHA1 22680f604ec92065f04caf00b1c180ba74fb8562 SHA256 e1c1ced9c5bc8f93ef0faf0a8c7717abf784d10a7b270d2285e8e1f3b93f2bed - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/giflib/files/giflib-4.1.6-gif2rle.patch b/sdk_container/src/third_party/portage-stable/media-libs/giflib/files/giflib-4.1.6-gif2rle.patch deleted file mode 100644 index f36b6b41fc..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/giflib/files/giflib-4.1.6-gif2rle.patch +++ /dev/null @@ -1,18 +0,0 @@ -http://sourceforge.net/tracker/index.php?func=detail&aid=1829712&group_id=102202&atid=631304 - ---- giflib/util/gif2rle.c -+++ giflib/util/gif2rle.c -@@ -222,11 +222,8 @@ - ColorMap = (GifFile->Image.ColorMap ? - GifFile->Image.ColorMap->Colors : - GifFile->SColorMap->Colors); -- if (ColorMap == NULL) { -- fprintf(stderr, "Gif Image does not have a colormap\n"); -- exit(EXIT_FAILURE); -- } -- ColorMapSize = 1 << ColorMap->BitsPerPixel; -+ ColorMapSize = 1 << (GifFile->Image.ColorMap ? GifFile->Image.ColorMap->BitsPerPixel : -+ GifFile->SColorMap->BitsPerPixel); - DumpScreen2Rle(ScreenBuffer, GifFile->SWidth, GifFile->SHeight); - - if (DGifCloseFile(GifFile) == GIF_ERROR) { diff --git a/sdk_container/src/third_party/portage-stable/media-libs/giflib/files/giflib-4.1.6-giffix-null-Extension-fix.patch b/sdk_container/src/third_party/portage-stable/media-libs/giflib/files/giflib-4.1.6-giffix-null-Extension-fix.patch deleted file mode 100644 index 3e99e66c0d..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/giflib/files/giflib-4.1.6-giffix-null-Extension-fix.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -ru giflib-4.1.6/util/giffix.c giflib-4.1.6.new/util/giffix.c ---- giflib-4.1.6/util/giffix.c 2005-10-09 23:22:23.000000000 -0700 -+++ giflib-4.1.6.new/util/giffix.c 2008-09-04 14:00:41.000000000 -0700 -@@ -181,8 +181,8 @@ - /* Skip any extension blocks in file: */ - if (DGifGetExtension(GifFileIn, &ExtCode, &Extension) == GIF_ERROR) - QuitGifError(GifFileIn, GifFileOut); -- if (EGifPutExtension(GifFileOut, ExtCode, Extension[0], -- Extension) == GIF_ERROR) -+ if (Extension && EGifPutExtension(GifFileOut, ExtCode, -+ Extension[0], Extension) == GIF_ERROR) - QuitGifError(GifFileIn, GifFileOut); - - /* No support to more than one extension blocks, so discard: */ - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/giflib/giflib-4.1.6-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/giflib/giflib-4.1.6-r1.ebuild deleted file mode 100644 index 3ad982c354..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/giflib/giflib-4.1.6-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.6-r1.ebuild,v 1.7 2008/12/07 11:49:54 vapier Exp $ - -inherit eutils libtool - -DESCRIPTION="Library to handle, display and manipulate GIF images" -HOMEPAGE="http://sourceforge.net/projects/giflib/" -SRC_URI="mirror://sourceforge/giflib/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="rle X" - -DEPEND="!media-libs/libungif - X? ( - x11-libs/libXt - x11-libs/libX11 - x11-libs/libICE - x11-libs/libSM - ) - rle? ( media-libs/urt )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gif2rle.patch - epatch "${FILESDIR}"/${P}-giffix-null-Extension-fix.patch - elibtoolize - epunt_cxx -} - -src_compile() { - local myconf="--disable-gl $(use_enable X x11)" - # prevent circular depend #111455 - if has_version media-libs/urt ; then - myconf="${myconf} $(use_enable rle)" - else - myconf="${myconf} --disable-rle" - fi - econf ${myconf} - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS BUGS ChangeLog NEWS ONEWS README TODO doc/*.txt - dohtml -r doc -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/glew/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/glew/Manifest deleted file mode 100644 index d2525bf853..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/glew/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST glew-1.5.6.tgz 484319 RMD160 63047d7c227045ea379f52a7b0ec1790343ccb22 SHA1 053355a41c5eacf9492d157d7eda4d14656f8c96 SHA256 23f08cef286be2f260b8f297c9f71fdf906a9b451ad2a7d11ad1f46ab3cb186c diff --git a/sdk_container/src/third_party/portage-stable/media-libs/glew/glew-1.5.6.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/glew/glew-1.5.6.ebuild deleted file mode 100644 index a410f6925d..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/glew/glew-1.5.6.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/glew/glew-1.5.6.ebuild,v 1.8 2010/10/29 05:41:52 jer Exp $ - -EAPI=3 -inherit multilib toolchain-funcs - -DESCRIPTION="The OpenGL Extension Wrangler Library" -HOMEPAGE="http://glew.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" - -LICENSE="BSD MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -RDEPEND="x11-libs/libXmu - x11-libs/libXi - virtual/glu - virtual/opengl - x11-libs/libXext - x11-libs/libX11" -DEPEND="${RDEPEND}" - -pkg_setup() { - myglewopts=( - GLEW_DEST="${ED}/usr" - LIBDIR="${ED}/usr/$(get_libdir)" - AR="$(tc-getAR)" - STRIP="true" - CC="$(tc-getCC)" - LD="$(tc-getCC) ${LDFLAGS}" - M_ARCH="" - LDFLAGS.EXTRA="" - POPT="${CFLAGS}" - ) -} - -src_prepare() { - sed -i \ - -e '/INSTALL/s:-s::' \ - -e '/$(CC) $(CFLAGS) -o/s:$(CFLAGS):$(CFLAGS) $(LDFLAGS):' \ - Makefile || die - - # don't do stupid Solaris specific stuff that won't work in Prefix - cp config/Makefile.linux config/Makefile.solaris || die -} - -src_compile(){ - emake "${myglewopts[@]}" || die -} - -src_install() { - emake "${myglewopts[@]}" install || die - dodoc doc/*.txt README.txt TODO.txt || die - dohtml doc/*.{css,html,jpg,png} || die -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/Manifest deleted file mode 100644 index ff731a5e7e..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST jb2streams.zip 1285838 RMD160 73553def8ccb64dde6885da425bd149944009bfe SHA1 2501935b72734e899a0c2ca24b8b65b6810fe31a SHA256 3d1e5c79054b59d061cabdb1d7ba2d1b3f84700f5c517ba4306f7047660016f7 -DIST jbig2dec-0.11.tar.gz 371499 RMD160 8ee69d11d7aa6c590515a4d84644e273897bb4d0 SHA1 349cd765616db7aac1f4dd1d45957d1da65ea925 SHA256 7e2d8330b36f2765da22043d174827bee0f30db8d78c330904f363275c7dd0b9 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/files/jbig2dec-0.11-libpng15.patch b/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/files/jbig2dec-0.11-libpng15.patch deleted file mode 100644 index c18ccb7af6..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/files/jbig2dec-0.11-libpng15.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- configure.ac -+++ configure.ac -@@ -45,7 +45,7 @@ - fi - dnl libpng requires pow() which may be in libm - AC_SEARCH_LIBS([pow], [m]) -- AC_CHECK_LIB([png], [png_check_sig], [ -+ AC_CHECK_LIB([png], [png_sig_cmp], [ - AC_CHECK_LIB([z], [deflate], [ - AC_DEFINE(HAVE_LIBPNG, 1, [Define if libpng is available (-lpng)]) - LIBS="-lpng -lz $LIBS" ---- jbig2_image_png.c -+++ jbig2_image_png.c -@@ -33,7 +33,7 @@ - { - png_size_t check; - -- check = fwrite(data, 1, length, (png_FILE_p)png_ptr->io_ptr); -+ check = fwrite(data, 1, length, (png_FILE_p)png_get_io_ptr(png_ptr)); - if (check != length) { - png_error(png_ptr, "Write Error"); - } -@@ -43,7 +43,7 @@ - jbig2_png_flush(png_structp png_ptr) - { - png_FILE_p io_ptr; -- io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr)); -+ io_ptr = (png_FILE_p)png_get_io_ptr(png_ptr); - if (io_ptr != NULL) - fflush(io_ptr); - } diff --git a/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/jbig2dec-0.11-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/jbig2dec-0.11-r1.ebuild deleted file mode 100644 index 19beb45ced..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/jbig2dec/jbig2dec-0.11-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jbig2dec/jbig2dec-0.11-r1.ebuild,v 1.11 2012/03/18 17:37:53 armin76 Exp $ - -EAPI=4 -inherit autotools eutils - -DESCRIPTION="A decoder implementation of the JBIG2 image compression format" -HOMEPAGE="http://jbig2dec.sourceforge.net/" -SRC_URI="http://ghostscript.com/~giles/jbig2/${PN}/${P}.tar.gz - test? ( http://jbig2dec.sourceforge.net/ubc/jb2streams.zip )" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" -IUSE="png static-libs test" - -RDEPEND="png? ( >=media-libs/libpng-1.2:0 )" -DEPEND="${RDEPEND} - test? ( app-arch/unzip )" - -RESTRICT="test" -# bug 324275 - -DOCS="CHANGES README" - -src_prepare() { - epatch "${FILESDIR}"/${P}-libpng15.patch - eautoreconf - - if use test; then - mkdir "${WORKDIR}/ubc" || die - mv -v "${WORKDIR}"/*.jb2 "${WORKDIR}/ubc/" || die - mv -v "${WORKDIR}"/*.bmp "${WORKDIR}/ubc/" || die - fi -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with png libpng) -} - -src_install() { - default - find "${ED}" -name '*.la' -exec rm -f {} + -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/Manifest deleted file mode 100644 index 9ada1fb070..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ladspa_sdk_1.13.tgz 70540 RMD160 e9eeae8edd24a6890fac3e34c4b55f844f44f8a0 SHA1 2b69e28afb62c0d97943124f48ed82de796f83ed SHA256 b5ed3f4f253a0f6c1b7a1f4b8cf62376ca9f51d999650dd822650c43852d306b diff --git a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-asneeded.patch b/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-asneeded.patch deleted file mode 100644 index 19e3811b07..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-asneeded.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: ladspa_sdk/src/makefile -=================================================================== ---- ladspa_sdk.orig/src/makefile -+++ ladspa_sdk/src/makefile -@@ -36,6 +36,10 @@ MKDIR_P = mkdirhier - # RULES TO BUILD PLUGINS FROM C OR C++ CODE - # - -+../plugins/filter.so: plugins/filter.c ladspa.h -+ $(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/filter.o -c plugins/filter.c -+ $(LD) $(RAW_LDFLAGS) -o ../plugins/filter.so plugins/filter.o -shared -lm -+ - ../plugins/%.so: plugins/%.c ladspa.h - $(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.c - $(LD) $(RAW_LDFLAGS) -o ../plugins/$*.so plugins/$*.o -shared diff --git a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-fbsd.patch b/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-fbsd.patch deleted file mode 100644 index b5614b2377..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-fbsd.patch +++ /dev/null @@ -1,16 +0,0 @@ -Index: ladspa_sdk/src/applyplugin.c -=================================================================== ---- ladspa_sdk.orig/src/applyplugin.c -+++ ladspa_sdk/src/applyplugin.c -@@ -6,7 +6,11 @@ - /*****************************************************************************/ - - #include -+#ifdef __FreeBSD__ -+#include -+#else - #include -+#endif - #include - #include - #include diff --git a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-no-LD.patch b/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-no-LD.patch deleted file mode 100644 index acc53abace..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-no-LD.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/src/makefile -+++ b/src/makefile -@@ -38,11 +38,11 @@ - - ../plugins/filter.so: plugins/filter.c ladspa.h - $(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/filter.o -c plugins/filter.c -- $(LD) $(RAW_LDFLAGS) -o ../plugins/filter.so plugins/filter.o -shared -lm -+ $(CC) $(CFLAGS) $(LDFLAGS) -o ../plugins/filter.so plugins/filter.o -nostartfiles -shared -lm - - ../plugins/%.so: plugins/%.c ladspa.h - $(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.c -- $(LD) $(RAW_LDFLAGS) -o ../plugins/$*.so plugins/$*.o -shared -+ $(CC) $(CFLAGS) $(LDFLAGS) -o ../plugins/$*.so plugins/$*.o -nostartfiles -shared - - ../plugins/%.so: plugins/%.cpp ladspa.h - $(CXX) $(CXXFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.cpp diff --git a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-properbuild.patch b/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-properbuild.patch deleted file mode 100644 index c30a508447..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/files/ladspa-sdk-1.13-properbuild.patch +++ /dev/null @@ -1,92 +0,0 @@ -Index: ladspa_sdk/src/makefile -=================================================================== ---- ladspa_sdk.orig/src/makefile -+++ ladspa_sdk/src/makefile -@@ -13,10 +13,12 @@ INSTALL_BINARY_DIR = /usr/bin/ - # GENERAL - # - -+CFLAGS = -Wall -Werror -O3 -+CXXFLAGS = -Wall -Werror -O3 -+ - INCLUDES = -I. --LIBRARIES = -ldl -lm --CFLAGS = $(INCLUDES) -Wall -Werror -O3 -fPIC --CXXFLAGS = $(CFLAGS) -+DYNAMIC_LD_LIBS = -ldl -+LIBRARIES = $(DYNAMIC_LD_LIBS) -lm - PLUGINS = ../plugins/amp.so \ - ../plugins/delay.so \ - ../plugins/filter.so \ -@@ -26,7 +28,8 @@ PROGRAMS = ../bin/analyseplugin \ - ../bin/applyplugin \ - ../bin/listplugins - CC = cc --CPP = c++ -+CXX = c++ -+MKDIR_P = mkdirhier - - ############################################################################### - # -@@ -34,12 +37,12 @@ CPP = c++ - # - - ../plugins/%.so: plugins/%.c ladspa.h -- $(CC) $(CFLAGS) -o plugins/$*.o -c plugins/$*.c -- $(LD) -o ../plugins/$*.so plugins/$*.o -shared -+ $(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.c -+ $(LD) $(RAW_LDFLAGS) -o ../plugins/$*.so plugins/$*.o -shared - - ../plugins/%.so: plugins/%.cpp ladspa.h -- $(CPP) $(CXXFLAGS) -o plugins/$*.o -c plugins/$*.cpp -- $(CPP) -o ../plugins/$*.so plugins/$*.o -shared -+ $(CXX) $(CXXFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.cpp -+ $(CXX) $(LDFLAGS) -o ../plugins/$*.so plugins/$*.o -shared - - ############################################################################### - # -@@ -59,12 +62,12 @@ test: /tmp/test.wav ../snd/noise.wav alw - @echo Test complete. - - install: targets -- -mkdirhier $(INSTALL_PLUGINS_DIR) -- -mkdirhier $(INSTALL_INCLUDE_DIR) -- -mkdirhier $(INSTALL_BINARY_DIR) -- cp ../plugins/* $(INSTALL_PLUGINS_DIR) -- cp ladspa.h $(INSTALL_INCLUDE_DIR) -- cp ../bin/* $(INSTALL_BINARY_DIR) -+ -$(MKDIR_P) $(DESTDIR)$(INSTALL_PLUGINS_DIR) -+ -$(MKDIR_P) $(DESTDIR)$(INSTALL_INCLUDE_DIR) -+ -$(MKDIR_P) $(DESTDIR)$(INSTALL_BINARY_DIR) -+ cp ../plugins/* $(DESTDIR)$(INSTALL_PLUGINS_DIR) -+ cp ladspa.h $(DESTDIR)$(INSTALL_INCLUDE_DIR) -+ cp ../bin/* $(DESTDIR)$(INSTALL_BINARY_DIR) - - /tmp/test.wav: targets ../snd/noise.wav - ../bin/listplugins -@@ -90,19 +93,19 @@ targets: $(PLUGINS) $(PROGRAMS) - # - - ../bin/applyplugin: applyplugin.o load.o default.o -- $(CC) $(CFLAGS) $(LIBRARIES) \ -+ $(CC) $(CFLAGS) $(INCLUDES) $(LDFLAGS) \ - -o ../bin/applyplugin \ -- applyplugin.o load.o default.o -+ applyplugin.o load.o default.o $(LIBRARIES) - - ../bin/analyseplugin: analyseplugin.o load.o default.o -- $(CC) $(CFLAGS) $(LIBRARIES) \ -+ $(CC) $(CFLAGS) $(INCLUDES) $(LDFLAGS) \ - -o ../bin/analyseplugin \ -- analyseplugin.o load.o default.o -+ analyseplugin.o load.o default.o $(LIBRARIES) - - ../bin/listplugins: listplugins.o search.o -- $(CC) $(CFLAGS) $(LIBRARIES) \ -+ $(CC) $(CFLAGS) $(INCLUDES) $(LDFLAGS) \ - -o ../bin/listplugins \ -- listplugins.o search.o -+ listplugins.o search.o $(LIBRARIES) - - ############################################################################### - # diff --git a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/ladspa-sdk-1.13-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/ladspa-sdk-1.13-r1.ebuild deleted file mode 100644 index b765b594de..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/ladspa-sdk/ladspa-sdk-1.13-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-sdk/ladspa-sdk-1.13-r1.ebuild,v 1.11 2012/06/08 23:51:44 zmedico Exp $ - -EAPI=4 - -inherit eutils multilib toolchain-funcs portability flag-o-matic - -MY_PN=${PN/-/_} -MY_P=${MY_PN}_${PV} - -DESCRIPTION="The Linux Audio Developer's Simple Plugin API" -HOMEPAGE="http://www.ladspa.org/" -SRC_URI="http://www.ladspa.org/download/${MY_P}.tgz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="" - -RDEPEND="" -DEPEND=">=sys-apps/sed-4" - -S="${WORKDIR}/${MY_PN}/src" - -src_prepare() { - epatch "${FILESDIR}"/${P}-properbuild.patch \ - "${FILESDIR}"/${P}-asneeded.patch \ - "${FILESDIR}"/${P}-fbsd.patch \ - "${FILESDIR}"/${P}-no-LD.patch - - sed -i -e 's:-sndfile-play*:@echo Disabled \0:' \ - makefile || die "sed makefile failed (sound playing tests)" -} - -src_compile() { - emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ - DYNAMIC_LD_LIBS="$(dlopen_lib)" \ - CC="$(tc-getCC)" CXX="$(tc-getCXX)" \ - targets -} - -src_install() { - emake INSTALL_PLUGINS_DIR="/usr/$(get_libdir)/ladspa" \ - DESTDIR="${D}" \ - MKDIR_P="mkdir -p" \ - install - - dohtml ../doc/*.html - - # Needed for apps like rezound - dodir /etc/env.d - echo "LADSPA_PATH=/usr/$(get_libdir)/ladspa" > "${D}/etc/env.d/60ladspa" -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/Manifest deleted file mode 100644 index 809b4686c8..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libdvdnav-4.2.0.tar.bz2 111575 RMD160 1e957554173feae3bdf1fdd6a83c2a64a2550683 SHA1 ded45d985576169ae3630d8be7179a2323bc0f6f SHA256 8c971b08276c89ddcecd26fc44204460fd250dc57346f03476d3077188c47550 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/files/libdvdnav-4.2.0-pkgconfig.patch b/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/files/libdvdnav-4.2.0-pkgconfig.patch deleted file mode 100644 index 0edcab9d7f..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/files/libdvdnav-4.2.0-pkgconfig.patch +++ /dev/null @@ -1,54 +0,0 @@ -http://lists.mplayerhq.hu/pipermail/dvdnav-discuss/2012-March/001672.html - -use pkg-config for libdvdread by default rather than the ugly xxx-config scripts - -https://bugs.gentoo.org/410189 - -hassle vapier@gentoo.org if this causes issues - ---- configure.ac (revision 1243) -+++ configure.ac (working copy) -@@ -89,6 +89,7 @@ AC_PROG_CC - AC_PROG_MAKE_SET - AC_PROG_INSTALL - AC_PROG_LN_S -+PKG_PROG_PKG_CONFIG - - dnl -------------------------------------------------------------- - dnl Libtool -@@ -185,15 +186,26 @@ AC_ARG_WITH([dvdread-config], - [AS_HELP_STRING([--with-dvdread-config=PROG], - [dvdread-config program to use @<:@default=from PATH@:>@])], - [DVDREAD_CONFIG="$withval"], -- [dnl User didn't specify program, search PATH -- AC_PATH_PROG([DVDREAD_CONFIG], [dvdread-config], [no]) -- test "x$DVDREAD_CONFIG" = xno && \ -- AC_MSG_ERROR([dvdread-config required to link with libdvdread]) -- ]) --DVDREAD_CFLAGS=`$DVDREAD_CONFIG --cflags` || \ -- AC_MSG_ERROR([Could not get libdvdread CFLAGS from $DVDREAD_CONFIG]) --DVDREAD_LIBS=`$DVDREAD_CONFIG --libs` || \ -- AC_MSG_ERROR([Could not get libdvdread LIBS from $DVDREAD_CONFIG]) -+ [DVDREAD_CONFIG=""]) -+ -+dnl by default, search pkg-config, and then fall back to dvdread-config -+DVDREAD_PKG_CONFIG="no" -+if test "x$DVDREAD_CONFIG" = "x"; then -+ PKG_CHECK_MODULES([DVDREAD], [dvdread], -+ [DVDREAD_PKG_CONFIG="yes"], -+ [dnl User didn't specify program, search PATH -+ AC_PATH_PROG([DVDREAD_CONFIG], [dvdread-config], [no]) -+ test "x$DVDREAD_CONFIG" = xno && \ -+ AC_MSG_ERROR([dvdread-config required to link with libdvdread]) -+ ]) -+fi -+if test "x$DVDREAD_PKG_CONFIG" != "xyes"; then -+ DVDREAD_CFLAGS=`$DVDREAD_CONFIG --cflags` || \ -+ AC_MSG_ERROR([Could not get libdvdread CFLAGS from $DVDREAD_CONFIG]) -+ DVDREAD_LIBS=`$DVDREAD_CONFIG --libs` || \ -+ AC_MSG_ERROR([Could not get libdvdread LIBS from $DVDREAD_CONFIG]) -+fi -+ - AC_SUBST([DVDREAD_CFLAGS]) - AC_SUBST([DVDREAD_LIBS]) - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/libdvdnav-4.2.0.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/libdvdnav-4.2.0.ebuild deleted file mode 100644 index 25f51c11c0..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libdvdnav/libdvdnav-4.2.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdnav/libdvdnav-4.2.0.ebuild,v 1.7 2012/04/12 23:40:17 vapier Exp $ - -EAPI=4 -inherit autotools - -DESCRIPTION="Library for DVD navigation tools" -HOMEPAGE="http://dvdnav.mplayerhq.hu/" -SRC_URI="http://dvdnav.mplayerhq.hu/releases/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="" - -RDEPEND=">=media-libs/libdvdread-${PV}" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS ChangeLog DEVELOPMENT-POLICY.txt doc/dvd_structures NEWS README TODO ) - -src_prepare() { - sed -i -e '/^CFLAGS/s:-O3::' configure.ac || die - epatch "${FILESDIR}"/${PN}-4.2.0-pkgconfig.patch - eautoreconf -} - -src_install() { - default - rm -f "${ED}"usr/lib*/${PN}*.la -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libdvdread/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/libdvdread/Manifest deleted file mode 100644 index 5e29bc16e9..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libdvdread/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libdvdread-4.2.0.tar.bz2 97469 RMD160 71953f12e834a9d22ff4cf9e25a3949c431174c0 SHA1 431bc92195f27673bfdd2be67ce0f58338da8d3b SHA256 0bea15da842a4b04a482b009d72dcc6d9c9524ccc1bf67e5748319ec5ada8097 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libdvdread/libdvdread-4.2.0.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/libdvdread/libdvdread-4.2.0.ebuild deleted file mode 100644 index 547152ab98..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libdvdread/libdvdread-4.2.0.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdread/libdvdread-4.2.0.ebuild,v 1.7 2012/02/12 18:46:24 armin76 Exp $ - -EAPI=4 -inherit autotools libtool - -DESCRIPTION="Library for DVD navigation tools" -HOMEPAGE="http://dvdnav.mplayerhq.hu/" -SRC_URI="http://dvdnav.mplayerhq.hu/releases/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="+css" - -RDEPEND="! src_ratio) -+ if (fabs (read_total / src_ratio - ARRAY_LEN (test_callback_data.data)) > 2.0) - { printf ("\n\nLine %d : input / output length mismatch.\n\n", __LINE__) ; - printf (" input len : %d\n", ARRAY_LEN (test_callback_data.data)) ; -- printf (" output len : %ld (should be %g +/- %g)\n\n", read_total, -- floor (0.5 + src_ratio * ARRAY_LEN (test_callback_data.data)), ceil (src_ratio)) ; -+ printf (" output len : %ld (should be %g +/- 2)\n\n", read_total, -+ floor (0.5 + src_ratio * ARRAY_LEN (test_callback_data.data))) ; - exit (1) ; - } ; - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild deleted file mode 100644 index 30cf5d7c47..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild,v 1.10 2010/01/31 16:05:00 armin76 Exp $ - -inherit eutils autotools - -DESCRIPTION="Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio" -HOMEPAGE="http://www.mega-nerd.com/SRC/" -SRC_URI="http://www.mega-nerd.com/SRC/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="sndfile" - -RDEPEND="sndfile? ( >=media-libs/libsndfile-1.0.2 )" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.14" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-0.1.3-dontbuild-tests-examples.patch - epatch "${FILESDIR}"/${P}-macro-quoting.patch - epatch "${FILESDIR}"/${P}-tests.patch - eautoreconf -} - -src_compile() { - econf \ - --disable-fftw \ - $(use_enable sndfile) \ - --disable-dependency-tracking - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS ChangeLog NEWS README - dohtml doc/*.html doc/*.css doc/*.png -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/ChangeLog b/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/ChangeLog deleted file mode 100644 index 606d04a0bc..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/ChangeLog +++ /dev/null @@ -1,553 +0,0 @@ -# ChangeLog for media-libs/libsndfile -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.130 2011/09/27 19:39:02 ssuominen Exp $ - - 27 Sep 2011; Samuli Suominen libsndfile-1.0.25.ebuild: - Use largefile flags when building emul-linux- pkgs wrt #313259 by Marc Joliet - and Pacho Ramos - - 12 Sep 2011; Alexis Ballier -libsndfile-1.0.23.ebuild, - -libsndfile-1.0.24.ebuild: - remove old - - 12 Sep 2011; Kacper Kowalik libsndfile-1.0.25.ebuild: - ppc/ppc64 stable wrt #375125 - - 11 Sep 2011; Raúl Porcel libsndfile-1.0.25.ebuild: - alpha/ia64/sh/sparc stable wrt #375125 - - 11 Sep 2011; Markus Meier libsndfile-1.0.25.ebuild: - arm/x86 stable, bug #375125 - - 09 Sep 2011; Jeroen Roovers libsndfile-1.0.25.ebuild: - Stable for HPPA (bug #375125). - - 07 Sep 2011; Tony Vroon libsndfile-1.0.25.ebuild: - Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo in - security bug #375125 filed by Alexis Ballier. - -*libsndfile-1.0.25 (13 Jul 2011) - - 13 Jul 2011; Alexis Ballier +libsndfile-1.0.25.ebuild: - version bump - -*libsndfile-1.0.24 (24 Mar 2011) - - 24 Mar 2011; Tim Harder -libsndfile-1.0.21.ebuild, - -libsndfile-1.0.21-r1.ebuild, -libsndfile-1.0.22.ebuild, - +libsndfile-1.0.24.ebuild: - Version bump and remove old. Update to EAPI 4, add static-libs USE flag, and - remove unneeded m4 script removal line. - - 23 Mar 2011; Kacper Kowalik libsndfile-1.0.23.ebuild: - ppc/ppc64 stable wrt #355361 - - 26 Feb 2011; Raúl Porcel libsndfile-1.0.23.ebuild: - alpha/arm/ia64/sh/sparc stable wrt #355361 - - 26 Feb 2011; Pawel Hajdan jr - libsndfile-1.0.23.ebuild: - x86 stable wrt bug #355361 - - 25 Feb 2011; Jeroen Roovers libsndfile-1.0.23.ebuild: - Stable for HPPA (bug #355361). - - 17 Feb 2011; Markos Chandras libsndfile-1.0.23.ebuild: - Stable on amd64 wrt bug #355361 - -*libsndfile-1.0.23 (10 Oct 2010) - - 10 Oct 2010; Alexis Ballier - +libsndfile-1.0.23.ebuild: - version bump - -*libsndfile-1.0.22 (05 Oct 2010) - - 05 Oct 2010; Tim Harder +libsndfile-1.0.22.ebuild: - Version bump, minor bug fixes. Bump libvorbis dependency, remove unused - libtool eclass, update to EAPI=3, use src_prepare instead of src_unpack, - and use src_configure instead of src_compile. - -*libsndfile-1.0.21-r1 (05 Sep 2010) - - 05 Sep 2010; Samuli Suominen - +libsndfile-1.0.21-r1.ebuild: - Remove append-lfs-flags (#313259) again wrt #335728. - - 25 Jun 2010; Alexis Ballier - -libsndfile-1.0.17-r1.ebuild, -files/libsndfile-1.0.17-autotools.patch, - -files/libsndfile-1.0.17-dontbuild-tests-examples.patch, - -files/libsndfile-1.0.17-flac-buffer-overflow.patch, - -files/libsndfile-1.0.17-ogg.patch, -libsndfile-1.0.18.ebuild, - -libsndfile-1.0.18-r1.ebuild, - -files/libsndfile-1.0.18-less_strict_tests.patch, - -files/libsndfile-1.0.18-m4macro.patch, -libsndfile-1.0.19.ebuild, - -files/libsndfile-1.0.19-automagic_jack.patch, -libsndfile-1.0.20.ebuild: - remove old - - 12 Jun 2010; Samuli Suominen - libsndfile-1.0.21.ebuild: - append-lfs-flags wrt #313259 by Marc Joliet. - - 07 Jan 2010; Raúl Porcel libsndfile-1.0.21.ebuild: - alpha/arm/ia64/sh/sparc stable wrt #297631 - - 07 Jan 2010; Joseph Jezak libsndfile-1.0.21.ebuild: - Marked ppc stable for bug #297631. - - 06 Jan 2010; Brent Baude libsndfile-1.0.21.ebuild: - Marking libsndfile-1.0.21 ppc64 for bug 297631 - - 29 Dec 2009; Christian Faulhammer - libsndfile-1.0.21.ebuild: - stable x86, bug 297631 - - 24 Dec 2009; Pacho Ramos libsndfile-1.0.21.ebuild: - amd64 stable, bug 297631 - - 23 Dec 2009; Jeroen Roovers libsndfile-1.0.21.ebuild: - Stable for HPPA (bug #297631). - -*libsndfile-1.0.21 (14 Dec 2009) - - 14 Dec 2009; Alexis Ballier - +libsndfile-1.0.21.ebuild: - version bump - - 20 May 2009; Raúl Porcel libsndfile-1.0.20.ebuild: - arm/ia64/sh/sparc stable wrt #269863 - - 18 May 2009; Brent Baude libsndfile-1.0.20.ebuild: - Marking libsndfile-1.0.20 ppc64 and ppc for bug 269863 - - 16 May 2009; libsndfile-1.0.20.ebuild: - There is no TODO file in this version, stop trying to install it. - - 15 May 2009; Markus Meier libsndfile-1.0.20.ebuild: - amd64/x86 stable, bug #269863 - - 15 May 2009; Jeroen Roovers libsndfile-1.0.20.ebuild: - Stable for HPPA (bug #269863). - - 15 May 2009; Tobias Klausmann - libsndfile-1.0.20.ebuild: - Stable on alpha, bug #269863 - -*libsndfile-1.0.20 (14 May 2009) - - 14 May 2009; Alexis Ballier - +libsndfile-1.0.20.ebuild: - version bump - - 08 May 2009; Samuli Suominen - libsndfile-1.0.19.ebuild, +files/libsndfile-1.0.19-automagic_jack.patch: - Fix automagic jack-audio-connection-kit depend wrt #266346, thanks to - Paolo Pedroni for reporting. - - 15 Apr 2009; Markus Meier libsndfile-1.0.19.ebuild: - amd64 stable, bug #261173 - - 14 Apr 2009; Raúl Porcel libsndfile-1.0.19.ebuild: - x86 stable wrt #261173 - - 25 Mar 2009; Raúl Porcel libsndfile-1.0.19.ebuild: - arm/ia64/sh/sparc stable wrt #261173 - - 18 Mar 2009; Brent Baude libsndfile-1.0.19.ebuild: - Marking libsndfile-1.0.19 ppc for bug 261173 - - 15 Mar 2009; Tobias Klausmann - libsndfile-1.0.19.ebuild: - Stable on alpha, bug #261173 - - 13 Mar 2009; Jeroen Roovers libsndfile-1.0.19.ebuild: - Stable for HPPA (bug #261173). - - 10 Mar 2009; Brent Baude libsndfile-1.0.19.ebuild: - Marking libsndfile-1.0.19 ppc64 for bug 261173 - -*libsndfile-1.0.19 (08 Mar 2009) - - 08 Mar 2009; Alexis Ballier - +libsndfile-1.0.19.ebuild: - version bump by Richard Ash, bug #261173 - - 04 Mar 2009; Peter Alfredsen - libsndfile-1.0.18-r1.ebuild: - Fix bug 261073, libtool incompatibility. Thanks to Gürkan Gür - for reporting. - -*libsndfile-1.0.18-r1 (03 Mar 2009) - - 03 Mar 2009; Alexis Ballier - +libsndfile-1.0.18-r1.ebuild: - force disabling octave module which was automagic because it seems it - installs files at bad locations (bug #260769), may fail to build (bug - #260853) and to link (bug #260835). - - 28 Feb 2009; Alexis Ballier - libsndfile-1.0.17-r1.ebuild: - fixup invalid configure argument (werror -> gcc-werror), bug #256882 - -*libsndfile-1.0.18 (28 Feb 2009) - - 28 Feb 2009; Alexis Ballier - +files/libsndfile-1.0.18-less_strict_tests.patch, - +files/libsndfile-1.0.18-m4macro.patch, +libsndfile-1.0.18.ebuild: - version bump - - 21 Apr 2008; Mike Frysinger - +files/libsndfile-1.0.17-autotools.patch, libsndfile-1.0.17-r1.ebuild: - Fixup errors in autotool code caught by libtool-2.2 #218666 by Lars - (Polynomial-C). - - 14 Apr 2008; Diego Pettenò - libsndfile-1.0.17-r1.ebuild: - Fix building with autoconf 2.62. - - 17 Mar 2008; libsndfile-1.0.17.ebuild: - Drop to ~mips due to unstable deps - - 22 Feb 2008; Diego Pettenò - +files/libsndfile-1.0.17-dontbuild-tests-examples.patch, - +files/libsndfile-1.0.17-regtests-need-sqlite.patch, - libsndfile-1.0.17-r1.ebuild: - Don't build tests and examples during standard make, this saves a few gcc/ld - calls for most users. Don't build regtest if sqlite is disabled, rather than - just removing it after the fact. Don't request old version of automake, as - full eautoreconf is called. - - 15 Feb 2008; Samuli Suominen - libsndfile-1.0.17-r1.ebuild: - If built with USE -sqlite don't install sndfile-regtest command wrt #210216 - by Matthias B. - - 29 Sep 2007; Raúl Porcel - libsndfile-1.0.17-r1.ebuild: - sparc stable wrt security #192834 - - 20 Sep 2007; Brent Baude libsndfile-1.0.17-r1.ebuild: - Marking libsndfile-1.0.17-r1 ppc64 stable for bug 192834 - - 20 Sep 2007; Robert Buchholz libsndfile-1.0.17-r1.ebuild: - amd64 stable (bug #192834) - - 20 Sep 2007; Tobias Scherbaum - libsndfile-1.0.17-r1.ebuild: - ppc stable, bug #192834 - - 20 Sep 2007; Raúl Porcel - libsndfile-1.0.17-r1.ebuild: - alpha/ia64 stable wrt security #192834 - - 19 Sep 2007; Markus Meier libsndfile-1.0.17-r1.ebuild: - x86 stable, security bug #192834 - - 19 Sep 2007; Jeroen Roovers libsndfile-1.0.17-r1.ebuild: - Stable for HPPA (bug #192834). - -*libsndfile-1.0.17-r1 (19 Sep 2007) - - 19 Sep 2007; Alexis Ballier - +files/libsndfile-1.0.17-flac-buffer-overflow.patch, - +libsndfile-1.0.17-r1.ebuild: - add a patch wrt to buffer overflow possibility, bug #192834 - - 06 Aug 2007; Samuli Suominen libsndfile-1.0.17.ebuild: - Install pkgconfig for bug 187856. - - 21 Jun 2007; Joshua Kinard libsndfile-1.0.17.ebuild: - Stable on mips, per #165776. - - 21 May 2007; Raúl Porcel libsndfile-1.0.17.ebuild: - alpha stable wrt #165776 - - 13 Feb 2007; Markus Rothe libsndfile-1.0.17.ebuild: - Stable on ppc64; bug #165776 - - 12 Feb 2007; Simon Stelling libsndfile-1.0.17.ebuild: - stable on amd64; bug 165776 - - 10 Feb 2007; nixnut libsndfile-1.0.17.ebuild: - Stable on ppc wrt bug 165776 - - 10 Feb 2007; Jeroen Roovers libsndfile-1.0.17.ebuild: - Stable for HPPA (bug #165776). - - 08 Feb 2007; Fabian Groffen libsndfile-1.0.11.ebuild: - Dropped ppc-macos keyword, see you in prefix - - 08 Feb 2007; Christian Faulhammer - libsndfile-1.0.17.ebuild: - stable x86; bug #165776 - - 07 Feb 2007; Gustavo Zacarias - libsndfile-1.0.17.ebuild: - Stable on sparc wrt #165776 - - 20 Jan 2007; Diego Pettenò - libsndfile-1.0.11.ebuild: - Add missing libtool inherit. - - 16 Dec 2006; Alexis Ballier - +files/libsndfile-1.0.17-ogg.patch, libsndfile-1.0.17.ebuild: - Removing forced linking to ogg since that's not needed, bug #158212 - - 17 Nov 2006; Alexis Ballier - libsndfile-1.0.17.ebuild: - Add patch from Josh Coalson to be able to build with flac 1.1.3 - - 19 Oct 2006; Diego Pettenò - libsndfile-1.0.17.ebuild: - Depend on 1.1.2 version of flac, as the 1.1.3 version changes API. - - 02 Sep 2006; Diego Pettenò - libsndfile-1.0.17.ebuild: - Don't use parallel make for install, as it fails. Also don't use sed and - change htmldocdir path on the make command line. - - 31 Aug 2006; Diego Pettenò - -files/libsndfile-1.0.12-flac.patch, - -files/libsndfile-1.0.15-ac-arg-fixes.patch, -libsndfile-1.0.5.ebuild, - -libsndfile-1.0.9.ebuild, -libsndfile-1.0.10.ebuild, - -libsndfile-1.0.12-r1.ebuild, -libsndfile-1.0.15-r2.ebuild, - -libsndfile-1.0.16.ebuild: - Drop old versions. - -*libsndfile-1.0.17 (31 Aug 2006) - - 31 Aug 2006; Diego Pettenò - +libsndfile-1.0.17.ebuild: - Version bump. - - 25 May 2006; Diego Pettenò - libsndfile-1.0.16.ebuild: - Add ~x86-fbsd keyword. - - 24 May 2006; Diego Pettenò - libsndfile-1.0.16.ebuild: - Add elibtoolize call. - - 30 Apr 2006; Diego Pettenò - libsndfile-1.0.11.ebuild, libsndfile-1.0.16.ebuild: - Add missing elibtoolize, drop autotools eclass and its deps. - -*libsndfile-1.0.16 (30 Apr 2006) - - 30 Apr 2006; Tony Vroon +libsndfile-1.0.16.ebuild: - Version bump. Patch from Flameeyes has been merged upstream. - -*libsndfile-1.0.15-r2 (25 Mar 2006) - - 25 Mar 2006; Diego Pettenò - -libsndfile-1.0.15-r1.ebuild, +libsndfile-1.0.15-r2.ebuild: - This time actually fix it. - -*libsndfile-1.0.15-r1 (25 Mar 2006) - - 25 Mar 2006; Diego Pettenò - -libsndfile-1.0.15.ebuild, +libsndfile-1.0.15-r1.ebuild: - Revision bump to avoid filtering -O2 and replacing it with -O0 during - configure run, or stuff breaks. See bug #127518. - -*libsndfile-1.0.15 (25 Mar 2006) - - 25 Mar 2006; Diego Pettenò - +files/libsndfile-1.0.15-ac-arg-fixes.patch, +libsndfile-1.0.15.ebuild: - Version bump with path to fix configure's AC_ARG_ENABLE handling. Thanks to - Richard Ash for reporting in bug #127307. - - 07 Mar 2006; Diego Pettenò - libsndfile-1.0.5.ebuild, libsndfile-1.0.9.ebuild, - libsndfile-1.0.10.ebuild, libsndfile-1.0.11.ebuild, - libsndfile-1.0.12-r1.ebuild: - Drop virtual/libc dependency. - - 17 Feb 2006; Fabian Groffen - libsndfile-1.0.12-r1.ebuild: - Drop ~ppc-macos keyword as we don't have the sqlite dependency. - -*libsndfile-1.0.12-r1 (02 Dec 2005) - - 02 Dec 2005; Diego Pettenò - +files/libsndfile-1.0.12-flac.patch, -libsndfile-1.0.12.ebuild, - +libsndfile-1.0.12-r1.ebuild: - Added patch to make flac dependency optional. See bug #114228. - - 30 Oct 2005; Diego Pettenò - libsndfile-1.0.12.ebuild: - Added missing libtool inherit (for elibtoolize requested by FreeBSD). - - 30 Oct 2005; Diego Pettenò - libsndfile-1.0.12.ebuild: - Fixed missing sqlite useflag in IUSE. - -*libsndfile-1.0.12 (30 Oct 2005) - - 30 Oct 2005; Diego Pettenò - +libsndfile-1.0.12.ebuild: - Updated to latest upstream version following bug #110286. - - 12 Jul 2005; Stephen P. Becker - libsndfile-1.0.11.ebuild: - stable on mips - - 17 Jun 2005; Michael Hanselmann - libsndfile-1.0.11.ebuild: - Stable on ppc. - - 08 Apr 2005; Markus Rothe libsndfile-1.0.11.ebuild: - Stable on ppc64 - - 21 Mar 2005; Lina Pezzella libsndfile-1.0.11.ebuild: - Stable ppc-macos - - 19 Mar 2005; Bryan Østergaard - libsndfile-1.0.11.ebuild: - Stable on alpha. - - 02 Mar 2005; Jan Brinkmann libsndfile-1.0.10.ebuild, - libsndfile-1.0.11.ebuild, libsndfile-1.0.5.ebuild, libsndfile-1.0.9.ebuild: - added dummy src_test to avoid compile errors with the maketest feature. fixes - #82805 - - 11 Jan 2005; Jeremy Huddleston - libsndfile-1.0.10.ebuild, libsndfile-1.0.11.ebuild, - libsndfile-1.0.5.ebuild, libsndfile-1.0.9.ebuild: - epunt_cxx fixes bug #76746. - - 18 Dec 2004; Jeremy Huddleston - libsndfile-1.0.11.ebuild: - Stable amd64, sparc, x86. - -*libsndfile-1.0.11 (17 Nov 2004) - - 17 Nov 2004; Jeremy Huddleston - -libsndfile-0.0.28.ebuild, libsndfile-1.0.10.ebuild, - +libsndfile-1.0.11.ebuild, -libsndfile-1.0.4.ebuild, - -libsndfile-1.0.6.ebuild: - Version bump and cleanup. - - 03 Nov 2004; Stephen P. Becker - libsndfile-1.0.10.ebuild: - added ~mips keyword - - 22 Sep 2004; kito@gentoo.org libsndfile-1.0.10.ebuild: - ~ppc-macos keyword - - 02 Sep 2004; Tom Gall libsndfile-1.0.10.ebuild, - libsndfile-1.0.9.ebuild: - added ~ppc64 and stable on 9 - - 01 Sep 2004; Jeremy Huddleston - libsndfile-1.0.10.ebuild: - Stable amd64, sparc, x86. - - 01 Aug 2004; Chris White libsndfile-1.0.10.ebuild: - Fixed some doc weirdness and corrected some strange use_* logic. - - 19 Jul 2004; Jeremy Huddleston - libsndfile-1.0.10.ebuild: - force --with-pic for amd64. - - 17 Jul 2004; Chris White libsndfile-1.0.10.ebuild: - Fixed and doc issues in the ebuild. Thanks to Stefan Briesenick - for the assitance. - -*libsndfile-1.0.10 (16 Jul 2004) - - 16 Jul 2004; Chris White +libsndfile-1.0.10.ebuild: - Bumped to 1.0.10. Fixes bug #57242. Thanks to Stefan Briesenick - for reporting. - - 01 Jul 2004; Jeremy Huddleston - libsndfile-0.0.28.ebuild, libsndfile-1.0.4.ebuild, libsndfile-1.0.5.ebuild, - libsndfile-1.0.6.ebuild, libsndfile-1.0.9.ebuild: - virtual/glibc -> virtual/libc - - 30 Jun 2004; Jeremy Huddleston - libsndfile-1.0.9.ebuild: - Stable sparc. - - 30 May 2004; Jeremy Huddleston - libsndfile-1.0.9.ebuild: - Stable x86. - - 23 May 2004; Danny van Dyk libsndfile-1.0.9.ebuild: - Marked ~amd64. - - 06 May 2004; Jeremy Huddleston - libsndfile-1.0.4.ebuild: - IUSE added. Removed explicit S=. - -*libsndfile-1.0.9 (02 May 2004) - - 02 May 2004; Jeremy Huddleston - libsndfile-1.0.1.ebuild, libsndfile-1.0.3.ebuild, libsndfile-1.0.9.ebuild, - metadata.xml: - Version bump. Closes bug #49417. Added to ~sparc - - 07 Mar 2004; Gustavo Zacarias libsndfile-1.0.5.ebuild: - stable on sparc - - 17 Feb 2004; Aron Griffis libsndfile-1.0.6.ebuild: - add ~alpha and ~ia64 - -*libsndfile-1.0.6 (13 Feb 2004) - - 13 Feb 2004; Michael Sterrett - libsndfile-1.0.6.ebuild: - version bump - - 13 Feb 2004; Michael Sterrett - libsndfile-1.0.5.ebuild: - HOMEPAGE and SRC_URI update for bug #41392; header fix; tidy - - 29 Sep 2003; Luca Barbato libsndfile-1.0.5.ebuild: - Marked ppc. - -*libsndfile-1.0.5 (08 May 2003) - - 08 May 2003; jje libsndfile-1.0.5.ebuild: - Version bump. - -*libsndfile-1.0.4 (04 Feb 2003) - - 03 Apr 2003; Graham Forest libsndfile-1.0.4.ebuild: - set ~ppc in keywords - - 04 Feb 2003; Nick Hadaway libsndfile-1.0.4.ebuild, - files/digest-libsndfile-1.0.4 : - Version bump. Adds XI and PVM support and some minor bug fixes. - -*libsndfile-1.0.3 (30 Jan 2003) - - 30 Jan 2003; Nick Hadaway libsndfile-1.0.3.ebuild, - files/digest-libsndfile-1.0.3 : - Version bump. SLOTing this is incorrect, changed back to 0. - - 06 Dec 2002; Rodney Rees : changed sparc ~sparc keywords - -*libsndfile-0.0.28 (23 Nov 2002) - - 23 Nov 2002; Sascha Schwabbauer libsndfile-0.0.28.ebuild : - - Added ~ppc to keywords. - -*libsndfile-1.0.1 (18 Sep 2002) - - 29 Oct 2002; Seemant Kulleen libsndfile-1.0.1.ebuild : - - SLOT'd - - - 18 Sep 2002; Nick Hadaway libsndfile-1.0.1.ebuild, - files/digest-libsndfile-1.0.1 : - Version bump. API changes from version 0 to version 1 are available - at http://www.zipworld.com.au/~erikd/libsndfile/version-1.html - -*libsndfile-0.0.28 (24 May 2002) - - 24 May 2002; Arcady Genkin libsndfile-0.0.28.ebuild : - Initial version of the package, created by - ryan.shaw@stanfordalumni.org (Ryan Shaw). diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/Manifest deleted file mode 100644 index b209c619fe..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/Manifest +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -AUX libsndfile-1.0.17-regtests-need-sqlite.patch 894 RMD160 a36d14dc91a8768386f414cbfe8b0cc53de938c3 SHA1 522d55e46ef6c83a158fb026d5f37f63b78438ad SHA256 c53026864c6a05b1ccc8b12e7af895f5d0e2d3a00335fd9f49ed7cc9aecece73 -DIST libsndfile-1.0.25.tar.gz 1060692 RMD160 7330ea9fc1cfa3809fa7d2a6e2a0593b6e0233c7 SHA1 e95d9fca57f7ddace9f197071cbcfb92fa16748e SHA256 59016dbd326abe7e2366ded5c344c853829bebfd1702ef26a07ef662d6aa4882 -EBUILD libsndfile-1.0.25.ebuild 1774 RMD160 d63d701a6665d2891e31a3c1ea542d9916eba6b9 SHA1 6c59ebb0bb9ba190f0f207d4cd941d689e241097 SHA256 10cf91abb79b7aa32a3ff12b4743b41ba8fbc69711a115d26fd065369cb12d99 -MISC ChangeLog 19268 RMD160 f6e62fc18664e16c4ebb16087915e3ccb5a35107 SHA1 f9ff84f966596273086abe71e1489b709575821e SHA256 c874f4a4eca1ce556817ca7a7ef90ed5f9bc7f47ae9fc70c9bfa790ad6d13b41 -MISC metadata.xml 159 RMD160 568344dc99ebe68c2e2d43d268d186757532144d SHA1 3f9589301dbaa4363c56de0f309cf792d8c38b63 SHA256 eb5b8cfa9aed067cd72d6439beac2dd0abdba30248f27e4b337012b493a18369 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.18 (GNU/Linux) - -iQEcBAEBAgAGBQJOgiaAAAoJEEdUh39IaPFN3JUIAIx5JDmQChNnH1gvh0h8lX/p -k44RkUV71XS/2Ckk5gsFRu1r2tZbkTXWX43FwQWfcWJ6hiUfHOmz/z8lA/ERLr8X -6bir6DAuuNSxfXJ4rhoN4deCOT9oJSy0fIE4MMVArpE3UbjPYXhzleXHypZQqHy8 -MgTuS6sa+A8vOvlSYoMxUxxBmHi8kE8FcJUR4qDNqNT8q4kxD9T5otFhZ+nlMDPp -9mnmkI5mt6BUiw1se0sLp7Lcc1L3GhpZe5qmRzR1kCemMbVwKeMFtocZI+28oTIY -bxpzyH2SqPVDLD3PHGPAOZ/ov8x1i3FCe4A7zeWkCFP6dnMGh6kiZWXmZJzmF0U= -=nphE ------END PGP SIGNATURE----- diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/files/libsndfile-1.0.17-regtests-need-sqlite.patch b/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/files/libsndfile-1.0.17-regtests-need-sqlite.patch deleted file mode 100644 index 85d628000f..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/files/libsndfile-1.0.17-regtests-need-sqlite.patch +++ /dev/null @@ -1,25 +0,0 @@ -Index: libsndfile-1.0.17/configure.ac -=================================================================== ---- libsndfile-1.0.17.orig/configure.ac -+++ libsndfile-1.0.17/configure.ac -@@ -268,6 +268,7 @@ else - fi - - AC_DEFINE_UNQUOTED([HAVE_SQLITE3],$HAVE_SQLITE3,[Set to 1 if you have libsqlite3.]) -+AM_CONDITIONAL(HAVE_SQLITE3, [test "x$ac_cv_sqlite3" = "xyes"]) - - #==================================================================================== - # Determine if the processor can do clipping on float to int conversions. -Index: libsndfile-1.0.17/regtest/Makefile.am -=================================================================== ---- libsndfile-1.0.17.orig/regtest/Makefile.am -+++ libsndfile-1.0.17/regtest/Makefile.am -@@ -1,6 +1,8 @@ - ## Process this file with automake to produce Makefile.in - -+if HAVE_SQLITE3 - bin_PROGRAMS = sndfile-regtest -+endif - - noinst_HEADERS = regtest.h - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/libsndfile-1.0.25.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/libsndfile-1.0.25.ebuild deleted file mode 100644 index 88428ad1de..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/libsndfile-1.0.25.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.25.ebuild,v 1.7 2011/09/27 19:39:02 ssuominen Exp $ - -EAPI=4 -inherit autotools eutils flag-o-matic multilib - -MY_P=${P/_pre/pre} - -DESCRIPTION="A C library for reading and writing files containing sampled sound" -HOMEPAGE="http://www.mega-nerd.com/libsndfile" -if [[ "${MY_P}" == "${P}" ]]; then - SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz" -else - SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz" -fi - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="alsa minimal sqlite static-libs" - -RDEPEND="!minimal? ( >=media-libs/flac-1.2.1 - >=media-libs/libogg-1.1.3 - >=media-libs/libvorbis-1.2.3 ) - alsa? ( media-libs/alsa-lib ) - sqlite? ( >=dev-db/sqlite-3.2 )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -S=${WORKDIR}/${MY_P} - -# Keep this function synced with x11-libs/pango ebuild! -function multilib_enabled() { - has_multilib_profile || ( use x86 && [ "$(get_libdir)" = "lib32" ] ) -} - -src_prepare() { - sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' {examples,tests}/Makefile.am || die - - epatch "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch - - AT_M4DIR=M4 eautoreconf - epunt_cxx -} - -src_configure() { - multilib_enabled && append-lfs-flags #313259 - - econf \ - $(use_enable sqlite) \ - $(use_enable static-libs static) \ - $(use_enable alsa) \ - $(use_enable !minimal external-libs) \ - htmldocdir=/usr/share/doc/${PF}/html \ - --disable-octave \ - --disable-gcc-werror \ - --disable-gcc-pipe -} - -src_install() { - emake DESTDIR="${D}" htmldocdir="/usr/share/doc/${PF}/html" install - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/metadata.xml b/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/metadata.xml deleted file mode 100644 index ae573a6040..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libsndfile/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - sound - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libv4l/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/libv4l/Manifest deleted file mode 100644 index c29d171868..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libv4l/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST v4l-utils-0.8.8.tar.bz2 420888 RMD160 c8f7a78a1c90845ce801094eb33226e524778d33 SHA1 f7d4b6d2fd9244a27f756abfc7ef5787e1e2c9a2 SHA256 5fa4c6f4b6f5410de57271a03cc9a15f15195ef3fc05a8e42ecf507d6d70a87f diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libv4l/files/libv4l-0.8.5-disable_fancy_upsampling.patch b/sdk_container/src/third_party/portage-stable/media-libs/libv4l/files/libv4l-0.8.5-disable_fancy_upsampling.patch deleted file mode 100644 index 7f385df497..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libv4l/files/libv4l-0.8.5-disable_fancy_upsampling.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/401865 -http://bugs.debian.org/647273 - ---- lib/libv4lconvert/jpeg.c -+++ lib/libv4lconvert/jpeg.c -@@ -390,6 +390,7 @@ - } - - data->cinfo.raw_data_out = TRUE; -+ data->cinfo.do_fancy_upsampling = FALSE; - jpeg_start_decompress(&data->cinfo); - /* Make libjpeg errors report that we've got some data */ - data->jerr_errno = EPIPE; diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libv4l/libv4l-0.8.8.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/libv4l/libv4l-0.8.8.ebuild deleted file mode 100644 index 13f2c19ae0..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libv4l/libv4l-0.8.8.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.8.8.ebuild,v 1.1 2012/04/14 22:57:28 aballier Exp $ - -EAPI=4 -inherit eutils linux-info multilib toolchain-funcs - -MY_P=v4l-utils-${PV} - -DESCRIPTION="Separate libraries ebuild from upstream v4l-utils package" -HOMEPAGE="http://git.linuxtv.org/v4l-utils.git" -SRC_URI="http://linuxtv.org/downloads/v4l-utils/${MY_P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND="virtual/jpeg" -DEPEND="${RDEPEND} - >=sys-kernel/linux-headers-2.6.30-r1" - -S=${WORKDIR}/${MY_P} - -CONFIG_CHECK="~SHMEM" - -src_prepare() { - sed -i \ - -e "/^PREFIX =/s:=.*:= ${EPREFIX}/usr:" \ - -e "/^LIBDIR =/s:/lib:/$(get_libdir):" \ - -e "/^CFLAGS :=/d" \ - Make.rules || die - tc-export CC -} - -src_compile() { - emake -C lib -} - -src_install() { - emake -C lib DESTDIR="${D}" install - dodoc ChangeLog README.lib* TODO -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/libvpx/Manifest deleted file mode 100644 index d9c7182a00..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libvpx-v1.1.0.tar.bz2 1653485 RMD160 6f462c1421a51af77d3401ea4c1eaf0dbeaf4791 SHA1 356af5f770c50cd021c60863203d8f30164f6021 SHA256 9ce074cf4b3bcd9a49ff93e05485b71c273bfc3685a305e55a0e7fa51beb72c5 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-arm.patch b/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-arm.patch deleted file mode 100644 index 698e65a2db..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-arm.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 2b59e14a0023be9d084349d58ee156a49cc674bb Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Wed, 15 Aug 2012 11:55:31 -0400 -Subject: [PATCH] Parse out arm isa targets from dumpmachine - -The current parsing logic of the dumpmachine tuple lacks any arm -cases which means tgt_isa never gets set, so for all arm targets, -we get detected as generic-gnu. Add some basic arm checks here -so the automatic detection logic works. - -Change-Id: Ie5e98142876025c6708604236bc519c0bdb09319 ---- - build/make/configure.sh | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/build/make/configure.sh b/build/make/configure.sh -index 26eb864..eeb959a 100755 ---- a/build/make/configure.sh -+++ b/build/make/configure.sh -@@ -593,6 +593,15 @@ process_common_toolchain() { - - # detect tgt_isa - case "$gcctarget" in -+ armv6*) -+ tgt_isa=armv6 -+ ;; -+ armv7*) -+ tgt_isa=armv7 -+ ;; -+ armv5te*) -+ tgt_isa=armv5te -+ ;; - *x86_64*|*amd64*) - tgt_isa=x86_64 - ;; --- -1.7.9.7 - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-chost.patch b/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-chost.patch deleted file mode 100644 index eb6b286cd6..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-chost.patch +++ /dev/null @@ -1,36 +0,0 @@ -commit 871bd23e4c41bb0fb94b72832b270766de540dea -Author: Alexis Ballier -Date: Sat May 12 15:45:13 2012 -0400 - - Allow target autodetection to work when cross-compiling. - - Allow CHOST to override the gcc -dumpmachine output. This allows to - use the target autodetection code when cross compiling by setting the - CHOST variable. - - On Gentoo, we would like to support easy cross-compilation, and for - libvpx this would basically mean copying the code in - build/make/configure.sh to setup the right --target option. It seems a - lot easier to let it guess by itself. - - Another option I considered was using CROSS-gcc instead but this would - not work for our multilib setups: They use gcc -m32 to build 32bits - binaries and gcc -m32 -dumpmachine will output the 64bits version, - which would then make libvpx wrongly believe it is building for a - 64bits architecture. - - Change-Id: I05a19be402228f749e23be7473ca53ae74fd2186 - -diff --git a/build/make/configure.sh b/build/make/configure.sh -index 3c772e5..3118c0a 100755 ---- a/build/make/configure.sh -+++ b/build/make/configure.sh -@@ -549,7 +549,7 @@ setup_gnu_toolchain() { - - process_common_toolchain() { - if [ -z "$toolchain" ]; then -- gcctarget="$(gcc -dumpmachine 2> /dev/null)" -+ gcctarget="${CHOST:-$(gcc -dumpmachine 2> /dev/null)}" - - # detect tgt_isa - case "$gcctarget" in diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-generic-gnu-shared.patch b/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-generic-gnu-shared.patch deleted file mode 100644 index 84d536f505..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/files/libvpx-1.1.0-generic-gnu-shared.patch +++ /dev/null @@ -1,39 +0,0 @@ -From b4ab43f12cc44a24e8161eb2d0857b78c756b18c Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Tue, 14 Aug 2012 14:24:28 -0400 -Subject: [PATCH] do not error out on generic-gnu + --enable-shared - -If you build with --enabled-shared on a Linux arch not explicitly -listed, the configure script will abort because it didn't detect -"linux" in the fallback generic-gnu tuple. - -Since this is the fallback tuple and people are passing ---enable-shared, assume the user knows what they're in for. - -Change-Id: Ia35b657e7247c8855e3a94fca424c9884d4241e3 ---- - configure | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/configure b/configure -index 2e19e5b..dde215f 100755 ---- a/configure -+++ b/configure -@@ -454,7 +454,13 @@ process_detect() { - # Can only build shared libs on a subset of platforms. Doing this check - # here rather than at option parse time because the target auto-detect - # magic happens after the command line has been parsed. -- enabled linux || die "--enable-shared only supported on ELF for now" -+ if ! enabled linux; then -+ if enabled gnu; then -+ echo "--enable-shared is only supported on ELF; assuming this is OK" -+ else -+ die "--enable-shared only supported on ELF for now" -+ fi -+ fi - fi - if [ -z "$CC" ]; then - echo "Bypassing toolchain for environment detection." --- -1.7.9.7 - diff --git a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/libvpx-1.1.0.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/libvpx/libvpx-1.1.0.ebuild deleted file mode 100644 index bd19a1b4d6..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/libvpx/libvpx-1.1.0.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.1.0.ebuild,v 1.13 2012/08/16 18:53:27 vapier Exp $ - -EAPI=4 -inherit multilib toolchain-funcs base - -if [[ ${PV} == *9999* ]]; then - inherit git-2 - EGIT_REPO_URI="http://git.chromium.org/webm/${PN}.git" - KEYWORDS="" -elif [[ ${PV} == *pre* ]]; then - SRC_URI="mirror://gentoo/${P}.tar.bz2" - KEYWORDS="~alpha amd64 arm ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" -else - SRC_URI="http://webm.googlecode.com/files/${PN}-v${PV}.tar.bz2" - KEYWORDS="~alpha amd64 arm ~ia64 ~ppc ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" - S="${WORKDIR}/${PN}-v${PV}" -fi - -DESCRIPTION="WebM VP8 Codec SDK" -HOMEPAGE="http://www.webmproject.org" - -LICENSE="BSD" -SLOT="0" -IUSE="altivec debug doc mmx postproc sse sse2 sse3 ssse3 sse4_1 static-libs +threads" - -RDEPEND="" -DEPEND="amd64? ( dev-lang/yasm ) - x86? ( dev-lang/yasm ) - x86-fbsd? ( dev-lang/yasm ) - doc? ( - app-doc/doxygen - dev-lang/php - ) -" - -REQUIRED_USE=" - sse2? ( mmx ) - " - -PATCHES=( - "${FILESDIR}/${P}-chost.patch" - "${FILESDIR}/${P}-generic-gnu-shared.patch" - "${FILESDIR}/${P}-arm.patch" -) - -src_configure() { - #let the build system decide which AS to use (it honours $AS but - #then feeds it with yasm flags without checking...) bug 345161 - local a - tc-export AS - for a in {amd64,x86}{,-{fbsd,linux}} ; do - use ${a} && unset AS - done - - # build verbose by default - MAKEOPTS="${MAKEOPTS} verbose=yes" - - # http://bugs.gentoo.org/show_bug.cgi?id=384585 - addpredict /usr/share/snmp/mibs/.index - - # Build with correct toolchain. - tc-export CC AR NM - # Link with gcc by default, the build system should override this if needed. - export LD="${CC}" - - ./configure \ - --prefix="${EPREFIX}"/usr \ - --libdir="${EPREFIX}"/usr/$(get_libdir) \ - --enable-pic \ - --enable-vp8 \ - --enable-shared \ - --extra-cflags="${CFLAGS}" \ - $(use_enable altivec) \ - $(use_enable debug debug-libs) \ - $(use_enable debug) \ - $(use_enable doc install-docs) \ - $(use_enable mmx) \ - $(use_enable postproc) \ - $(use_enable sse) \ - $(use_enable sse2) \ - $(use_enable sse3) \ - $(use_enable sse4_1) \ - $(use_enable ssse3) \ - $(use_enable static-libs static ) \ - $(use_enable threads multithread) \ - || die -} - -src_install() { - # Override base.eclass's src_install. - default -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/sbc/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/sbc/Manifest deleted file mode 100644 index f59c25be46..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/sbc/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sbc-1.0.tar.xz 244048 RMD160 1760410aa45f9a7418a861a2767ccbef898c32e4 SHA1 142727399eeb8296369ffedc2607bd0478114bcb SHA256 bf970aa21226c594bb04ba3d949770c8fd91dc8f953556305f20c1016b16b882 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/sbc/sbc-1.0.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/sbc/sbc-1.0.ebuild deleted file mode 100644 index 75af0610f1..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/sbc/sbc-1.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sbc/sbc-1.0.ebuild,v 1.1 2012/08/05 09:26:14 ssuominen Exp $ - -EAPI=4 -inherit eutils - -DESCRIPTION="An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers" -HOMEPAGE="http://git.kernel.org/?p=bluetooth/sbc.git http://www.bluez.org/sbc-10/" -SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="arm amd64 x86" -IUSE="static-libs" - -# --enable-tester is building src/sbctester but the tarball is missing required -# .wav file to execute it -RESTRICT="test" - -RDEPEND="" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog" - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --disable-tester -} - -src_install() { - default - prune_libtool_files -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/speex/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/speex/Manifest deleted file mode 100644 index 92b50422dd..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/speex/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST speex-1.2rc1.tar.gz 1061882 RMD160 6f4a11ef910b0db9b820826bcac3da1b79cad3a1 SHA1 52daa72572e844e5165315e208da539b2a55c5eb SHA256 342f30dc57bd4a6dad41398365baaa690429660b10d866b7d508e8f1179cb7a6 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/speex/files/speex-1.2_rc1-configure.patch b/sdk_container/src/third_party/portage-stable/media-libs/speex/files/speex-1.2_rc1-configure.patch deleted file mode 100644 index cd780daf26..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/speex/files/speex-1.2_rc1-configure.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff -ur speex-1.2rc1.orig/configure.ac speex-1.2rc1/configure.ac ---- speex-1.2rc1.orig/configure.ac 2008-07-30 22:49:17.000000000 -0400 -+++ speex-1.2rc1/configure.ac 2008-07-30 22:50:33.000000000 -0400 -@@ -112,9 +112,6 @@ - - AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h) - --XIPH_PATH_OGG([src="src"], [src=""]) --AC_SUBST(src) -- - AC_CHECK_LIB(m, sin) - - # Check for getopt_long; if not found, use included source. -@@ -139,10 +136,16 @@ - AC_DEFINE([ENABLE_VALGRIND], , [Enable valgrind extra checks]) - fi]) - -+AC_ARG_ENABLE(ogg, [ --enable-ogg Enable OGG support], [if test "$enableval" = yes; then -+ XIPH_PATH_OGG([src="src"], [src=""]) -+ AC_SUBST(src) -+fi -+]) -+ - AC_ARG_ENABLE(sse, [ --enable-sse Enable SSE support], [ - if test "x$enableval" != xno; then - has_sse=yes --CFLAGS="$CFLAGS -O3 -msse" -+CFLAGS="$CFLAGS -msse" - else - has_sse=no - fi diff --git a/sdk_container/src/third_party/portage-stable/media-libs/speex/speex-1.2_rc1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/speex/speex-1.2_rc1.ebuild deleted file mode 100644 index 237a297f2b..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/speex/speex-1.2_rc1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/speex/speex-1.2_rc1.ebuild,v 1.8 2009/12/11 19:59:55 ranger Exp $ - -inherit autotools eutils flag-o-matic - -MY_P=${P/_} ; MY_P=${MY_P/_p/.} - -DESCRIPTION="Audio compression format designed for speech." -HOMEPAGE="http://www.speex.org" -SRC_URI="http://downloads.xiph.org/releases/speex/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="ogg sse" - -RDEPEND="ogg? ( media-libs/libogg )" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-configure.patch - - sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' \ - "${S}"/libspeex/Makefile.am \ - || die "unable to disable tests building" - eautoreconf -} - -src_compile() { - append-flags -D_FILE_OFFSET_BITS=64 - - econf $(use_enable sse) $(use_enable ogg) - emake || die "emake failed." -} - -src_install() { - emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" \ - install || die "emake install failed." - - dodoc AUTHORS ChangeLog NEWS README* TODO -} diff --git a/sdk_container/src/third_party/portage-stable/media-libs/tiff/Manifest b/sdk_container/src/third_party/portage-stable/media-libs/tiff/Manifest deleted file mode 100644 index d14e13c2f4..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/tiff/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tiff-4.0.0.tar.gz 2008075 RMD160 82b27f00b48c74970faac6a4bb4a8a49a199e3b1 SHA1 85d85520fea40fc9291995a60e3d40cf980b5522 SHA256 9f4c0b2a8446a259db431c6401342bcb2c1be4a604e77a532d109c8448619288 diff --git a/sdk_container/src/third_party/portage-stable/media-libs/tiff/files/tiff-4.0.0-missing_lzma_pkgconfig.patch b/sdk_container/src/third_party/portage-stable/media-libs/tiff/files/tiff-4.0.0-missing_lzma_pkgconfig.patch deleted file mode 100644 index 73ef6731c5..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/tiff/files/tiff-4.0.0-missing_lzma_pkgconfig.patch +++ /dev/null @@ -1,22 +0,0 @@ -http://bugzilla.maptools.org/show_bug.cgi?id=2345 - ---- configure -+++ configure -@@ -18016,6 +18016,7 @@ - $as_echo "#define LZMA_SUPPORT 1" >>confdefs.h - - LIBS="-llzma $LIBS" -+ tiff_libs_private="-llzma ${tiff_libs_private}" - - if test "$HAVE_RPATH" = "yes" -a "x$with_lzma_lib_dir" != "x" ; then - LIBDIR="-R $with_lzma_lib_dir $LIBDIR" ---- configure.ac -+++ configure.ac -@@ -720,6 +720,7 @@ - if test "$HAVE_LZMA" = "yes" ; then - AC_DEFINE(LZMA_SUPPORT,1,[Support LZMA2 compression]) - LIBS="-llzma $LIBS" -+ tiff_libs_private="-llzma ${tiff_libs_private}" - - if test "$HAVE_RPATH" = "yes" -a "x$with_lzma_lib_dir" != "x" ; then - LIBDIR="-R $with_lzma_lib_dir $LIBDIR" diff --git a/sdk_container/src/third_party/portage-stable/media-libs/tiff/tiff-4.0.0-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-libs/tiff/tiff-4.0.0-r1.ebuild deleted file mode 100644 index 0a26df524d..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-libs/tiff/tiff-4.0.0-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.0-r1.ebuild,v 1.6 2012/02/15 02:12:12 ssuominen Exp $ - -EAPI=4 -inherit eutils libtool - -DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images" -HOMEPAGE="http://www.remotesensing.org/libtiff/" -SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz - ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="+cxx jbig jpeg lzma static-libs zlib" - -RDEPEND="jpeg? ( virtual/jpeg ) - jbig? ( media-libs/jbigkit ) - lzma? ( app-arch/xz-utils ) - zlib? ( sys-libs/zlib )" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-missing_lzma_pkgconfig.patch #396531 - elibtoolize -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable zlib) \ - $(use_enable jpeg) \ - $(use_enable jbig) \ - $(use_enable lzma) \ - $(use_enable cxx) \ - --without-x \ - --with-docdir="${EPREFIX}"/usr/share/doc/${PF} -} - -src_install() { - default - - rm -f \ - "${ED}"/usr/lib*/libtiff*.la \ - "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION} -} diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/Manifest b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/Manifest deleted file mode 100644 index d45a2da3b0..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST alsa-plugins-1.0.25.tar.bz2 331568 RMD160 757f19af4d86557568188e481391b77f36ab320e SHA1 ab66de081c5b0137943658a2991ba3d5efe91573 SHA256 a0e374fd6d5ee9683473a5b6e73dadde61d54851065ed670d6627d344b565aab diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild deleted file mode 100644 index 8b34cd00b9..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.25-r1.ebuild,v 1.11 2012/08/18 02:57:41 vapier Exp $ - -EAPI=3 - -MY_P="${P/_/}" - -inherit autotools base flag-o-matic - -DESCRIPTION="ALSA extra plugins" -HOMEPAGE="http://www.alsa-project.org/" -SRC_URI="mirror://alsaproject/plugins/${MY_P}.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 sh sparc x86 ~amd64-linux" -IUSE="debug ffmpeg jack libsamplerate pulseaudio speex" - -RDEPEND=">=media-libs/alsa-lib-${PV} - ffmpeg? ( virtual/ffmpeg - media-libs/alsa-lib ) - jack? ( >=media-sound/jack-audio-connection-kit-0.98 ) - libsamplerate? ( - media-libs/libsamplerate - media-libs/alsa-lib ) - pulseaudio? ( media-sound/pulseaudio ) - speex? ( media-libs/speex - media-libs/alsa-lib )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${PN}-1.0.19-missing-avutil.patch" - "${FILESDIR}/${PN}-1.0.23-automagic.patch" - "${FILESDIR}/${PN}-1.0.25-avcodec54.patch" - "${FILESDIR}/${P}-glibc-2.16.patch" #426254 -) - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - base_src_prepare - - # For some reasons the polyp/pulse plugin does fail with alsaplayer with a - # failed assert. As the code works just fine with asserts disabled, for now - # disable them waiting for a better solution. - sed -i -e '/AM_CFLAGS/s:-Wall:-DNDEBUG -Wall:' \ - "${S}/pulse/Makefile.am" - - eautoreconf -} - -src_configure() { - use debug || append-flags -DNDEBUG - - local myspeex - - if use speex; then - myspeex=lib - else - myspeex=no - fi - - econf \ - --disable-dependency-tracking \ - $(use_enable ffmpeg avcodec) \ - $(use_enable jack) \ - $(use_enable libsamplerate samplerate) \ - $(use_enable pulseaudio) \ - --with-speex=${myspeex} -} - -src_install() { - emake DESTDIR="${D}" install - - cd "${S}/doc" - dodoc upmix.txt vdownmix.txt README-pcm-oss - use jack && dodoc README-jack - use libsamplerate && dodoc samplerate.txt - use ffmpeg && dodoc lavcrate.txt a52.txt - - if use pulseaudio; then - dodoc README-pulse - # install ALSA configuration files - # making PA to be used by alsa clients - insinto /usr/share/alsa - doins "${FILESDIR}"/pulse-default.conf - insinto /usr/share/alsa/alsa.conf.d - doins "${FILESDIR}"/51-pulseaudio-probe.conf - fi - -} - -pkg_postinst() { - if use pulseaudio; then - einfo "The PulseAudio device is now set as the default device if the" - einfo "PulseAudio server is found to be running. Any custom" - einfo "configuration in /etc/asound.conf or ~/.asoundrc for this" - einfo "purpose should now be unnecessary." - fi -} diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/51-pulseaudio-probe.conf b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/51-pulseaudio-probe.conf deleted file mode 100644 index c2272c85b0..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/51-pulseaudio-probe.conf +++ /dev/null @@ -1,19 +0,0 @@ -# PulseAudio alsa plugin configuration file to set the pulseaudio plugin as -# default output for applications using alsa when pulseaudio is running. - -hook_func.pulse_load_if_running { - lib "/usr/lib/alsa-lib/libasound_module_conf_pulse.so" - func "conf_pulse_hook_load_if_running" -} - -@hooks [ - { - func pulse_load_if_running - files [ - "/usr/share/alsa/pulse-default.conf" - "/etc/asound.conf" - "~/.asoundrc" - ] - errors false - } -] diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.19-missing-avutil.patch b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.19-missing-avutil.patch deleted file mode 100644 index 12acbbca1d..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.19-missing-avutil.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.in_old 2009-01-26 21:46:07.000000000 +0100 -+++ configure.in 2009-01-26 21:47:25.000000000 +0100 -@@ -67,7 +67,7 @@ - AS_HELP_STRING([--disable-avcodec], [Don't build plugins depending on avcodec (a52)])) - - if test "x$enable_avcodec" != "xno"; then -- PKG_CHECK_MODULES(AVCODEC, [libavcodec], [HAVE_AVCODEC=yes], [HAVE_AVCODEC=no]) -+ PKG_CHECK_MODULES(AVCODEC, [libavcodec libavutil], [HAVE_AVCODEC=yes], [HAVE_AVCODEC=no]) - fi - - if test "x$HAVE_AVCODEC" = "xno"; then diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.21-automagic.patch b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.21-automagic.patch deleted file mode 100644 index f7d9e7dc43..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.21-automagic.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur alsa-plugins-1.0.21.orig/Makefile.am alsa-plugins-1.0.21/Makefile.am ---- alsa-plugins-1.0.21.orig/Makefile.am 2009-05-06 10:07:28.000000000 +0300 -+++ alsa-plugins-1.0.21/Makefile.am 2009-08-01 18:23:26.000000000 +0300 -@@ -17,7 +17,7 @@ - if HAVE_PPH - SUBDIRS += pph - endif --if HAVE_SPEEXDSP -+if USE_LIBSPEEX - SUBDIRS += speex - endif - diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.23-automagic.patch b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.23-automagic.patch deleted file mode 100644 index 8e62f20a14..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.23-automagic.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr alsa-plugins-1.0.23.ORIg//Makefile.am alsa-plugins-1.0.23/Makefile.am ---- alsa-plugins-1.0.23.ORIg//Makefile.am 2010-04-16 23:38:58.546243512 +0100 -+++ alsa-plugins-1.0.23/Makefile.am 2010-04-16 23:39:20.049278487 +0100 -@@ -17,7 +17,7 @@ - if HAVE_PPH - SUBDIRS += pph - endif --if HAVE_SPEEXDSP -+if USE_LIBSPEEX - SUBDIRS += speex - endif - diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.25-avcodec54.patch b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.25-avcodec54.patch deleted file mode 100644 index f9e33340af..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.25-avcodec54.patch +++ /dev/null @@ -1,31 +0,0 @@ -Index: alsa-plugins-1.0.25/a52/pcm_a52.c -=================================================================== ---- alsa-plugins-1.0.25.orig/a52/pcm_a52.c -+++ alsa-plugins-1.0.25/a52/pcm_a52.c -@@ -444,13 +444,13 @@ static int a52_prepare(snd_pcm_ioplug_t - #if LIBAVCODEC_VERSION_MAJOR > 52 || (LIBAVCODEC_VERSION_MAJOR == 52 && LIBAVCODEC_VERSION_MINOR >= 3) - switch (io->channels) { - case 2: -- rec->avctx->channel_layout = CH_LAYOUT_STEREO; -+ rec->avctx->channel_layout = AV_CH_LAYOUT_STEREO; - break; - case 4: -- rec->avctx->channel_layout = CH_LAYOUT_QUAD; -+ rec->avctx->channel_layout = AV_CH_LAYOUT_QUAD; - break; - case 6: -- rec->avctx->channel_layout = CH_LAYOUT_5POINT1; -+ rec->avctx->channel_layout = AV_CH_LAYOUT_5POINT1; - break; - default: - break; -@@ -702,7 +702,9 @@ SND_PCM_PLUGIN_DEFINE_FUNC(a52) - rec->channels = channels; - rec->format = format; - -+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(54,0,0) - avcodec_init(); -+#endif - avcodec_register_all(); - - rec->codec = avcodec_find_encoder_by_name("ac3_fixed"); diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.25-glibc-2.16.patch b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.25-glibc-2.16.patch deleted file mode 100644 index 2942c47fde..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/alsa-plugins-1.0.25-glibc-2.16.patch +++ /dev/null @@ -1,31 +0,0 @@ -https://bugs.gentoo.org/426254 - -From 81ae188c8d1b42d187b97846e3b31479a00d4720 Mon Sep 17 00:00:00 2001 -From: Takashi Iwai -Date: Tue, 31 Jul 2012 11:18:54 +0200 -Subject: [PATCH] usb_stream: Fix build with glibc 2.16 - -_GNU_SOURCE needs to be defined at first. - -Signed-off-by: Takashi Iwai ---- - usb_stream/pcm_usb_stream.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/usb_stream/pcm_usb_stream.c b/usb_stream/pcm_usb_stream.c -index b1fd68f..8220849 100644 ---- a/usb_stream/pcm_usb_stream.c -+++ b/usb_stream/pcm_usb_stream.c -@@ -18,8 +18,8 @@ - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - --#include - #define _GNU_SOURCE -+#include - #include - #include - #include --- -1.7.9.7 - diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse-alsa.conf b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse-alsa.conf deleted file mode 100644 index 9964f29467..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse-alsa.conf +++ /dev/null @@ -1,27 +0,0 @@ -# This file is referred to by /usr/share/alsa/pulse.conf to set pulseaudio as -# the default output plugin for applications using alsa when PulseAudio is -# running. - -pcm.!default { - type pulse -} - -ctl.!default { - type pulse -} - -pcm.pulse { - type pulse - hint { - show { - @func refer - name defaults.namehint.basic - } - description "Playback/recording through the PulseAudio sound server" - } -} - -ctl.pulse { - type pulse -} - diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse-default.conf b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse-default.conf deleted file mode 100644 index 8f7cbf29d6..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse-default.conf +++ /dev/null @@ -1,10 +0,0 @@ -# This file is referred to from files in /usr/share/alsa/alsa.conf.d/ in order -# to set up the pulse device as the default if required. - -pcm.!default { - type pulse -} - -ctl.!default { - type pulse -} diff --git a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse.conf b/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse.conf deleted file mode 100644 index bc409fe6db..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-plugins/alsa-plugins/files/pulse.conf +++ /dev/null @@ -1,18 +0,0 @@ -# PulseAudio alsa plugin configuration file to set the pulseaudio plugin as -# default output for applications using alsa when pulseaudio is running. -hook_func.pulse_load_if_running { - lib "/usr/lib/alsa-lib/libasound_module_conf_pulse.so" - func "conf_pulse_hook_load_if_running" -} - -@hooks [ - { - func pulse_load_if_running - files [ - "/usr/share/alsa/pulse-alsa.conf" - "/etc/asound.conf" - "~/.asoundrc" - ] - errors false - } -] diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/Manifest b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/Manifest deleted file mode 100644 index bc346a1291..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST alsa-driver-1.0.25.tar.bz2 3861484 RMD160 ad8b8093bf1de78cb0dcbb1b6a82ebb18d7aad6d SHA1 ebda37d18379466ca9d843e7a80d10bb706a6b04 SHA256 d80e219fd410b5bc62f9332e5964acd575cc8a0bcda80fa41d5eebeabde0ebc3 -DIST alsa-utils-1.0.25.tar.bz2 1132780 RMD160 8b1dc5c28d1fa6d9e0a79e029b6d69530f493e1d SHA1 c02eb4a3b9649950b803628371a840fb96ed6370 SHA256 2e676a2f634bbfe279b260e10a96f617cb72ee63c5bbf6c5f96bb615705b302c diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/alsa-utils-1.0.25-r1.ebuild b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/alsa-utils-1.0.25-r1.ebuild deleted file mode 100644 index 6626daad4c..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/alsa-utils-1.0.25-r1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.25-r1.ebuild,v 1.7 2012/04/01 15:13:17 armin76 Exp $ - -EAPI=4 -inherit base systemd - -MY_P=${P/_rc/rc} - -DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)" -HOMEPAGE="http://www.alsa-project.org/" -SRC_URI="mirror://alsaproject/utils/${MY_P}.tar.bz2 - mirror://alsaproject/driver/alsa-driver-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0.9" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ppc64 sh sparc x86" -IUSE="doc nls minimal" - -COMMON_DEPEND=">=sys-libs/ncurses-5.1 - dev-util/dialog - >=media-libs/alsa-lib-1.0.25 - media-libs/libsamplerate" -DEPEND="${COMMON_DEPEND} - doc? ( app-text/xmlto )" -RDEPEND="${COMMON_DEPEND} - !minimal? ( sys-apps/pciutils )" - -S="${WORKDIR}/${MY_P}" -PATCHES=( -"${FILESDIR}/${PN}-1.0.23-modprobe.d.patch" -"${FILESDIR}/${P}-separate-usr-var-fs.patch" -) - -src_configure() { - local myconf="" - use doc || myconf="--disable-xmlto" - - econf ${myconf} \ - $(use_enable nls) \ - "$(systemd_with_unitdir)" -} - -src_install() { - local ALSA_UTILS_DOCS="ChangeLog README TODO - seq/aconnect/README.aconnect - seq/aseqnet/README.aseqnet" - - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc ${ALSA_UTILS_DOCS} || die - - newbin "${WORKDIR}/alsa-driver-${PV}/utils/alsa-info.sh" \ - alsa-info - - newinitd "${FILESDIR}/alsasound.initd-r5" alsasound - newconfd "${FILESDIR}/alsasound.confd-r4" alsasound - insinto /etc/modprobe.d - newins "${FILESDIR}/alsa-modules.conf-rc" alsa.conf - - keepdir /var/lib/alsa -} - -pkg_postinst() { - echo - elog "To take advantage of the init script, and automate the process of" - elog "saving and restoring sound-card mixer levels you should" - elog "add alsasound to the boot runlevel. You can do this as" - elog "root like so:" - elog " # rc-update add alsasound boot" - echo - ewarn "The ALSA core should be built into the kernel or loaded through other" - ewarn "means. There is no longer any modular auto(un)loading in alsa-utils." - echo - if use minimal; then - ewarn "The minimal use flag disables the dependency on pciutils that" - ewarn "is needed by alsaconf at runtime." - fi -} diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-modules.conf-rc b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-modules.conf-rc deleted file mode 100644 index 40e99df8d3..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-modules.conf-rc +++ /dev/null @@ -1,38 +0,0 @@ -# Alsa kernel modules' configuration file. - -# ALSA portion -alias char-major-116 snd -# OSS/Free portion -alias char-major-14 soundcore - -## -## IMPORTANT: -## You need to customise this section for your specific sound card(s) -## and then run `update-modules' command. -## Read alsa-driver's INSTALL file in /usr/share/doc for more info. -## -## ALSA portion -## alias snd-card-0 snd-interwave -## alias snd-card-1 snd-ens1371 -## OSS/Free portion -## alias sound-slot-0 snd-card-0 -## alias sound-slot-1 snd-card-1 -## - -# OSS/Free portion - card #1 -alias sound-service-0-0 snd-mixer-oss -alias sound-service-0-1 snd-seq-oss -alias sound-service-0-3 snd-pcm-oss -alias sound-service-0-8 snd-seq-oss -alias sound-service-0-12 snd-pcm-oss -## OSS/Free portion - card #2 -## alias sound-service-1-0 snd-mixer-oss -## alias sound-service-1-3 snd-pcm-oss -## alias sound-service-1-12 snd-pcm-oss - -alias /dev/mixer snd-mixer-oss -alias /dev/dsp snd-pcm-oss -alias /dev/midi snd-seq-oss - -# Set this to the correct number of cards. -options snd cards_limit=1 diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-utils-1.0.23-modprobe.d.patch b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-utils-1.0.23-modprobe.d.patch deleted file mode 100644 index efe75923c1..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-utils-1.0.23-modprobe.d.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr alsa-utils-1.0.23.ORIG//alsaconf/alsaconf.in alsa-utils-1.0.23/alsaconf/alsaconf.in ---- alsa-utils-1.0.23.ORIG//alsaconf/alsaconf.in 2010-04-16 23:16:24.972269218 +0100 -+++ alsa-utils-1.0.23/alsaconf/alsaconf.in 2010-04-16 23:16:47.781310369 +0100 -@@ -301,7 +301,7 @@ - fi - else - if [ "$distribution" = "gentoo" ]; then -- cfgfile="/etc/modules.d/alsa" -+ cfgfile="/etc/modprobe.d/alsa.conf" - elif [ "$kernel" = "new" ]; then - cfgfile="/etc/modprobe.conf" - if [ -d /etc/modprobe.d ]; then diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-utils-1.0.25-separate-usr-var-fs.patch b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-utils-1.0.25-separate-usr-var-fs.patch deleted file mode 100644 index bf9afee042..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsa-utils-1.0.25-separate-usr-var-fs.patch +++ /dev/null @@ -1,7 +0,0 @@ -diff -uNr alsa-utils-1.0.25.ORIG/alsactl/90-alsa-restore.rules alsa-utils-1.0.25/alsactl/90-alsa-restore.rules ---- alsa-utils-1.0.25.ORIG/alsactl/90-alsa-restore.rules 2012-02-03 12:14:50.139393938 +0000 -+++ alsa-utils-1.0.25/alsactl/90-alsa-restore.rules 2012-02-03 12:16:02.660395020 +0000 -@@ -1,2 +1,3 @@ - ACTION=="add", SUBSYSTEM=="sound", KERNEL=="controlC*", KERNELS=="card*", \ -+ ENV{STARTUP}!="1", \ - RUN+="/usr/sbin/alsactl restore $attr{number}" diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsasound.confd-r4 b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsasound.confd-r4 deleted file mode 100644 index 6fec8f5938..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsasound.confd-r4 +++ /dev/null @@ -1,15 +0,0 @@ -# RESTORE_ON_START: -# Do you want to restore your mixer settings? If not, your cards will be -# muted. -# no - Do not restore state -# yes - Restore state - -RESTORE_ON_START="yes" - -# SAVE_ON_STOP: -# Do you want to save changes made to your mixer volumes when alsasound -# stops? -# no - Do not save state -# yes - Save state - -SAVE_ON_STOP="yes" diff --git a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsasound.initd-r5 b/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsasound.initd-r5 deleted file mode 100644 index e3c8dd9009..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-sound/alsa-utils/files/alsasound.initd-r5 +++ /dev/null @@ -1,83 +0,0 @@ -#!/sbin/runscript -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/files/alsasound.initd-r5,v 1.1 2012/02/20 09:03:53 chainsaw Exp $ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -alsastatedir=/var/lib/alsa -alsascrdir=/etc/alsa.d - -extra_commands="save restore" - -depend() { - need localmount - after bootmisc modules isapnp coldplug hotplug -} - -restore() { - ebegin "Restoring Mixer Levels" - - if [ ! -r "${alsastatedir}/asound.state" ] ; then - ewarn "No mixer config in ${alsastatedir}/asound.state, you have to unmute your card!" - eend 0 - return 0 - fi - - local cards="$(sed -n -e 's/ *\([[:digit:]]*\) .*/\1/p' /proc/asound/cards)" - local CARDNUM - for cardnum in ${cards}; do - [ -e /dev/snd/controlC${cardnum} ] || sleep 2 - [ -e /dev/snd/controlC${cardnum} ] || sleep 2 - [ -e /dev/snd/controlC${cardnum} ] || sleep 2 - [ -e /dev/snd/controlC${cardnum} ] || sleep 2 - alsactl -I -f "${alsastatedir}/asound.state" restore ${cardnum} \ - || ewarn "Errors while restoring defaults, ignoring" - done - - for ossfile in "${alsastatedir}"/oss/card*_pcm* ; do - [ -e "${ossfile}" ] || continue - # We use cat because I'm not sure if cp works properly on /proc - local procfile=${ossfile##${alsastatedir}/oss} - procfile="$(echo "${procfile}" | sed -e 's,_,/,g')" - if [ -e /proc/asound/"${procfile}"/oss ] ; then - cat "${ossfile}" > /proc/asound/"${procfile}"/oss - fi - done - - eend 0 -} - -save() { - ebegin "Storing ALSA Mixer Levels" - - mkdir -p "${alsastatedir}" - if ! alsactl -f "${alsastatedir}/asound.state" store; then - eerror "Error saving levels." - eend 1 - return 1 - fi - - for ossfile in /proc/asound/card*/pcm*/oss; do - [ -e "${ossfile}" ] || continue - local device=${ossfile##/proc/asound/} ; device=${device%%/oss} - device="$(echo "${device}" | sed -e 's,/,_,g')" - mkdir -p "${alsastatedir}/oss/" - cp "${ossfile}" "${alsastatedir}/oss/${device}" - done - - eend 0 -} - -start() { - if [ "${RESTORE_ON_START}" = "yes" ]; then - restore - fi - - return 0 -} - -stop() { - if [ "${SAVE_ON_STOP}" = "yes" ]; then - save - fi - return 0 -} diff --git a/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/Manifest b/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/Manifest deleted file mode 100644 index ffaab39aa7..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ffmpeg-0.10.2.tar.bz2 5780204 RMD160 b9dd617935e106e4a1980167bdb7ec8d76d3f2f7 SHA1 743f44a71f93b14c9b26ca2424b0da8457cef4be SHA256 2d990012091c07849843c456eb34ad015a00f45a66cba5be7c81a28e45fb6711 diff --git a/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/ffmpeg-0.10.2.ebuild b/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/ffmpeg-0.10.2.ebuild deleted file mode 100644 index 84f38ff962..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/ffmpeg-0.10.2.ebuild +++ /dev/null @@ -1,282 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.2.ebuild,v 1.2 2012/03/22 11:33:27 aballier Exp $ - -EAPI="4" - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-2" - EGIT_REPO_URI="git://git.videolan.org/ffmpeg.git" -fi - -inherit eutils flag-o-matic multilib toolchain-funcs ${SCM} - -DESCRIPTION="Complete solution to record, convert and stream audio and video. Includes libavcodec." -HOMEPAGE="http://ffmpeg.org/" -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" -elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot - SRC_URI="mirror://gentoo/${P}.tar.bz2" -else # Release - SRC_URI="http://ffmpeg.org/releases/${P/_/-}.tar.bz2" -fi -FFMPEG_REVISION="${PV#*_p}" - -LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) )" -SLOT="0" -if [ "${PV#9999}" = "${PV}" ] ; then - KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" -fi -IUSE=" - aac aacplus alsa amr ass bindist +bzip2 cdio celt cpudetection debug - dirac doc +encode faac frei0r gnutls gsm +hardcoded-tables ieee1394 jack - jpeg2k libv4l modplug mp3 network openal openssl oss pic pulseaudio - rtmp schroedinger sdl speex static-libs test theora threads - truetype v4l vaapi vdpau vorbis vpx X x264 xvid +zlib - " - -# String for CPU features in the useflag[:configure_option] form -# if :configure_option isn't set, it will use 'useflag' as configure option -CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3 vis neon" - -for i in ${CPU_FEATURES}; do - IUSE="${IUSE} ${i%:*}" -done - -FFTOOLS="aviocat cws2fws ffeval graph2dot ismindex pktdumper qt-faststart trasher" - -for i in ${FFTOOLS}; do - IUSE="${IUSE} +fftools_$i" -done - -RDEPEND=" - alsa? ( media-libs/alsa-lib ) - amr? ( media-libs/opencore-amr ) - ass? ( media-libs/libass ) - bzip2? ( app-arch/bzip2 ) - cdio? ( dev-libs/libcdio ) - celt? ( >=media-libs/celt-0.11.1 ) - dirac? ( media-video/dirac ) - encode? ( - aac? ( media-libs/vo-aacenc ) - aacplus? ( media-libs/libaacplus ) - amr? ( media-libs/vo-amrwbenc ) - faac? ( media-libs/faac ) - mp3? ( >=media-sound/lame-3.98.3 ) - theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg ) - vorbis? ( media-libs/libvorbis media-libs/libogg ) - x264? ( >=media-libs/x264-0.0.20111017 ) - xvid? ( >=media-libs/xvid-1.1.0 ) - ) - frei0r? ( media-plugins/frei0r-plugins ) - gnutls? ( net-libs/gnutls ) - gsm? ( >=media-sound/gsm-1.0.12-r1 ) - ieee1394? ( media-libs/libdc1394 sys-libs/libraw1394 ) - jack? ( media-sound/jack-audio-connection-kit ) - jpeg2k? ( >=media-libs/openjpeg-1.3-r2 ) - libv4l? ( media-libs/libv4l ) - modplug? ( media-libs/libmodplug ) - openal? ( >=media-libs/openal-1.1 ) - pulseaudio? ( media-sound/pulseaudio ) - rtmp? ( >=media-video/rtmpdump-2.2f ) - sdl? ( >=media-libs/libsdl-1.2.13-r1[audio,video] ) - schroedinger? ( media-libs/schroedinger ) - speex? ( >=media-libs/speex-1.2_beta3 ) - truetype? ( media-libs/freetype:2 ) - vaapi? ( >=x11-libs/libva-0.32 ) - vdpau? ( x11-libs/libvdpau ) - vpx? ( >=media-libs/libvpx-0.9.6 ) - X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes ) - zlib? ( sys-libs/zlib ) - !media-video/qt-faststart -" - -DEPEND="${RDEPEND} - >=sys-devel/make-3.81 - dirac? ( dev-util/pkgconfig ) - doc? ( app-text/texi2html ) - gnutls? ( dev-util/pkgconfig ) - ieee1394? ( dev-util/pkgconfig ) - libv4l? ( dev-util/pkgconfig ) - mmx? ( dev-lang/yasm ) - rtmp? ( dev-util/pkgconfig ) - schroedinger? ( dev-util/pkgconfig ) - test? ( net-misc/wget ) - truetype? ( dev-util/pkgconfig ) - v4l? ( sys-kernel/linux-headers ) -" -# faac is license-incompatible with ffmpeg -REQUIRED_USE="bindist? ( encode? ( !faac !aacplus ) !openssl ) - libv4l? ( v4l ) - fftools_cws2fws? ( zlib ) - test? ( encode zlib )" - -S=${WORKDIR}/${P/_/-} - -src_prepare() { - if [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot - export revision=git-N-${FFMPEG_REVISION} - fi -} - -src_configure() { - local myconf="${EXTRA_FFMPEG_CONF}" - # Set to --enable-version3 if (L)GPL-3 is required - local version3="" - - # enabled by default - for i in debug doc network vaapi vdpau zlib; do - use ${i} || myconf="${myconf} --disable-${i}" - done - use bzip2 || myconf="${myconf} --disable-bzlib" - use sdl || myconf="${myconf} --disable-ffplay" - - use cpudetection && myconf="${myconf} --enable-runtime-cpudetect" - use openssl && myconf="${myconf} --enable-openssl --enable-nonfree" - for i in gnutls ; do - use $i && myconf="${myconf} --enable-$i" - done - - # Encoders - if use encode - then - use mp3 && myconf="${myconf} --enable-libmp3lame" - use aac && { myconf="${myconf} --enable-libvo-aacenc" ; version3=" --enable-version3" ; } - use amr && { myconf="${myconf} --enable-libvo-amrwbenc" ; version3=" --enable-version3" ; } - for i in theora vorbis x264 xvid; do - use ${i} && myconf="${myconf} --enable-lib${i}" - done - use aacplus && myconf="${myconf} --enable-libaacplus --enable-nonfree" - use faac && myconf="${myconf} --enable-libfaac --enable-nonfree" - else - myconf="${myconf} --disable-encoders" - fi - - # libavdevice options - use cdio && myconf="${myconf} --enable-libcdio" - use ieee1394 && myconf="${myconf} --enable-libdc1394" - use openal && myconf="${myconf} --enable-openal" - # Indevs - # v4l1 is gone since linux-headers-2.6.38 - myconf="${myconf} --disable-indev=v4l" - use v4l || myconf="${myconf} --disable-indev=v4l2" - for i in alsa oss jack ; do - use ${i} || myconf="${myconf} --disable-indev=${i}" - done - use X && myconf="${myconf} --enable-x11grab" - use pulseaudio && myconf="${myconf} --enable-libpulse" - use libv4l && myconf="${myconf} --enable-libv4l2" - # Outdevs - for i in alsa oss sdl ; do - use ${i} || myconf="${myconf} --disable-outdev=${i}" - done - # libavfilter options - use frei0r && myconf="${myconf} --enable-frei0r" - use truetype && myconf="${myconf} --enable-libfreetype" - use ass && myconf="${myconf} --enable-libass" - - # Threads; we only support pthread for now but ffmpeg supports more - use threads && myconf="${myconf} --enable-pthreads" - - # Decoders - use amr && { myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb" ; version3=" --enable-version3" ; } - for i in celt gsm dirac modplug rtmp schroedinger speex vpx; do - use ${i} && myconf="${myconf} --enable-lib${i}" - done - use jpeg2k && myconf="${myconf} --enable-libopenjpeg" - - # CPU features - for i in ${CPU_FEATURES}; do - use ${i%:*} || myconf="${myconf} --disable-${i#*:}" - done - if use pic ; then - myconf="${myconf} --enable-pic" - # disable asm code if PIC is required - # as the provided asm decidedly is not PIC for x86. - use x86 && myconf="${myconf} --disable-asm" - fi - - # Try to get cpu type based on CFLAGS. - # Bug #172723 - # We need to do this so that features of that CPU will be better used - # If they contain an unknown CPU it will not hurt since ffmpeg's configure - # will just ignore it. - for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do - [ "${i}" = "native" ] && i="host" # bug #273421 - myconf="${myconf} --cpu=${i}" - break - done - - # Mandatory configuration - myconf=" - --enable-gpl - ${version3} - --enable-postproc - --enable-avfilter - --disable-stripping - ${myconf}" - - # cross compile support - if tc-is-cross-compiler ; then - myconf="${myconf} --enable-cross-compile --arch=$(tc-arch-kernel) --cross-prefix=${CHOST}-" - case ${CHOST} in - *freebsd*) - myconf="${myconf} --target-os=freebsd" - ;; - mingw32*) - myconf="${myconf} --target-os=mingw32" - ;; - *linux*) - myconf="${myconf} --target-os=linux" - ;; - esac - fi - - # Misc stuff - use hardcoded-tables && myconf="${myconf} --enable-hardcoded-tables" - - cd "${S}" - ./configure \ - --prefix="${EPREFIX}/usr" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --shlibdir="${EPREFIX}/usr/$(get_libdir)" \ - --mandir="${EPREFIX}/usr/share/man" \ - --enable-shared \ - --cc="$(tc-getCC)" \ - --cxx="$(tc-getCXX)" \ - --ar="$(tc-getAR)" \ - --optflags="${CFLAGS}" \ - --extra-cflags="${CFLAGS}" \ - --extra-cxxflags="${CXXFLAGS}" \ - $(use_enable static-libs static) \ - ${myconf} || die -} - -src_compile() { - emake - - for i in ${FFTOOLS} ; do - if use fftools_$i ; then - emake tools/$i - fi - done -} - -src_install() { - emake DESTDIR="${D}" install install-man - - dodoc Changelog README INSTALL - dodoc -r doc/* - - for i in ${FFTOOLS} ; do - if use fftools_$i ; then - dobin tools/$i - fi - done -} - -src_test() { - LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libswresample:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil" \ - emake fate -} diff --git a/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/files/ffmpeg-0.7.6-fix_ppc64_32ul.patch b/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/files/ffmpeg-0.7.6-fix_ppc64_32ul.patch deleted file mode 100644 index 9754d5fd5a..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/ffmpeg/files/ffmpeg-0.7.6-fix_ppc64_32ul.patch +++ /dev/null @@ -1,43 +0,0 @@ -Autodetect PowerPC vs. PowerPC64. - -This is the same code as for x86_64. -This is necessary because uname returns PPC64 if the hardware -is 64 bit, however the userland can still be fully 32 bit. -In that case FFmpeg fails to compile because some macros in the -asm code are set up incorrectly. -For details see https://bugs.gentoo.org/show_bug.cgi?id=341235 -https://bugs.gentoo.org/show_bug.cgi?id=387207 - -author: Reimar Döffinger - -diff --git a/configure b/configure -index 6aa194c..0752d73 100755 ---- a/configure -+++ b/configure -@@ -2188,13 +2188,9 @@ case "$arch" in - arch="parisc" - subarch="parisc64" - ;; -- "Power Macintosh"|ppc|powerpc) -+ "Power Macintosh"|ppc|powerpc|ppc64|powerpc64) - arch="ppc" - ;; -- ppc64|powerpc64) -- arch="ppc" -- subarch="ppc64" -- ;; - s390|s390x) - arch="s390" - ;; -@@ -2392,6 +2388,11 @@ EOF - spic=$shared - fi - ;; -+ ppc) -+ check_cc </" \ - -e "s/^\#[[:space:]]*include.*\"\(libav.*\/.*[.]h\)\"/#include \<\1\>/" \ - -e "/${SANITIZED_REGEXP}/{s:\"\(.*\)\":\<${2}\/\1\>:}" ${1} -} - -check_sanitized_includes() { - grep -q "${SANITIZED_REGEXP}" $1 -} - -get_header_deps() { - grep "^#[[:space:]]*include.*\" ${1} | \ - sed -e "s/^#[[:space:]]*include.*\<\(libav.*[.]h\)\>/\1/" | \ - tr -d '<>' | tr '\n' ' ' -} - -check_header_deps() { - for i ; do - printf "Checking for the presence of ${i}...\n" - if [ ! -f "${SYSTEM_FFMPEG_DIR}/${i}" -a ! -f "${FFMPEG_DIR}/${i}" ] ; then - printf "Header depends on ${i}\n" - printf "... but that file cannot be found, aborting\n" - exit 1 - fi - done -} - -move_file() { - mydir="$(dirname $1)" - printf "Moving and checking file: ${1}\n" - [ -d "${FFMPEG_DIR}/${mydir}" ] || mkdir -p "${FFMPEG_DIR}/${mydir}" - if [ ! -f "${FFMPEG_DIR}/${1}" ] ; then - sanitize_includes "${FFMPEG_MOVED_DIR}/${1}" ${mydir} > "${FFMPEG_DIR}/${1}" - fi - if $(check_sanitized_includes "${FFMPEG_DIR}/${1}") ; then - printf "Error, found non sanitized file in ffmpeg:\n" - printf "${FFMPEG_DIR}/${1}\n" - printf "Please report it at bugs.gentoo.org\n" - exit 1 - fi - if [ "${1%.h}" != "${1}" ] ; then - mydeps=$(get_header_deps "${FFMPEG_DIR}/${1}") - check_header_deps ${mydeps} - fi -} - -# HEADERS (order matters for the consistency checks: leaves come first) -FILES=" libavutil/x86_cpu.h \ - libavformat/internal.h " -# Files that are sed'ed but not compiled, used to check for availability of -# some codecs -FILES="${FILES} libavcodec/allcodecs.c libavformat/allformats.c libavfilter/allfilters.c" - -for i in ${FILES} ; do - move_file $i -done - -rm -rf "${FFMPEG_MOVED_DIR}" - -exit 0 diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/ffmpeg.patch b/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/ffmpeg.patch deleted file mode 100644 index e438ead574..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/ffmpeg.patch +++ /dev/null @@ -1,17 +0,0 @@ -Some guards so that it can still build with ffmpeg 0.10 - -Index: mplayer-1.0_rc4_p20120213/fmt-conversion.c -=================================================================== ---- mplayer-1.0_rc4_p20120213.orig/fmt-conversion.c -+++ mplayer-1.0_rc4_p20120213/fmt-conversion.c -@@ -65,8 +65,10 @@ static const struct { - {IMGFMT_RGBA, PIX_FMT_RGB0}, - {IMGFMT_RGB64LE, PIX_FMT_RGBA64LE}, - {IMGFMT_RGB64BE, PIX_FMT_RGBA64BE}, -+#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(51, 35, 101) - {IMGFMT_444A, PIX_FMT_YUVA444P}, - #endif -+#endif - #if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(51, 20, 1) - {IMGFMT_GBR24P, PIX_FMT_GBRP}, - #endif diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/ffmpeg2.patch b/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/ffmpeg2.patch deleted file mode 100644 index 0f26812a30..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/ffmpeg2.patch +++ /dev/null @@ -1,14 +0,0 @@ -Index: mplayer-1.0_rc4_p20120405/libmpdemux/mp_taglists.c -=================================================================== ---- mplayer-1.0_rc4_p20120405.orig/libmpdemux/mp_taglists.c -+++ mplayer-1.0_rc4_p20120405/libmpdemux/mp_taglists.c -@@ -125,7 +125,9 @@ static const struct AVCodecTag mp_bmp_ta - { CODEC_ID_BMV_VIDEO, MKTAG('B', 'M', 'V', 'V')}, - { CODEC_ID_C93, MKTAG('C', '9', '3', 'V')}, - { CODEC_ID_CDGRAPHICS, MKTAG('C', 'D', 'G', 'R')}, -+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(54,1,0) - { CODEC_ID_CDXL, MKTAG('C', 'D', 'X', 'L')}, -+#endif - { CODEC_ID_CMV, MKTAG('M', 'V', 'I', 'f')}, - { CODEC_ID_DFA, MKTAG('C', 'D', 'F', 'A')}, - { CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'n')}, diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4-pkg-config.patch b/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4-pkg-config.patch deleted file mode 100644 index a93136cf86..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4-pkg-config.patch +++ /dev/null @@ -1,74 +0,0 @@ -respect $PKG_CONFIG, and use pkg-config for libdvdnav/libdvdread by -default rather than the ugly xxx-config scripts - -https://bugs.gentoo.org/410189 - -hassle vapier@gentoo.org if this causes issues - ---- configure -+++ configure -@@ -4042,7 +4042,7 @@ echores "$_apple_ir" - fi #if linux - - echocheck "pkg-config" --_pkg_config=pkg-config -+_pkg_config=${PKG_CONFIG:-pkg-config} - if $($_pkg_config --version > /dev/null 2>&1); then - if test "$ld_static"; then - _pkg_config="$_pkg_config --static" -@@ -5740,8 +5740,13 @@ if test "$_dvdread_internal" = auto ; th - elif test "$_dvdread" = auto ; then - _dvdread=no - if test "$_dl" = yes; then -- _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null) -- _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null) -+ if ! $_pkg_config --exists dvdread ; then -+ _dvdreadcflags=$($_pkgconfig dvdread --cflags) -+ _dvdreadlibs=$($_pkgconfig dvdread --libs) -+ else -+ _dvdreadcflags=$($_dvdreadconfig --cflags 2> /dev/null) -+ _dvdreadlibs=$($_dvdreadconfig --libs 2> /dev/null) -+ fi - if header_check dvdread/dvd_reader.h $_dvdreadcflags $_dvdreadlibs $ld_dl ; then - _dvdread=yes - extra_cflags="$extra_cflags $_dvdreadcflags" -@@ -7721,13 +7726,20 @@ if test "$_dvdnav" = auto ; then - dvdnav_internal=yes - res_comment="internal" - else -- $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no -+ if ! $_pkg_config --exists dvdnavmini ; then -+ $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no -+ fi - fi - fi - if test "$_dvdnav" = auto ; then - _dvdnav=no -- _dvdnavdir=$($_dvdnavconfig --cflags) -- _dvdnavlibs=$($_dvdnavconfig --libs) -+ if $_pkg_config --exists dvdnavmini ; then -+ _dvdnavdir=$($_pkg_config --cflags dvdnavmini) -+ _dvdnavlibs=$($_pkg_config --libs dvdnavmini) -+ else -+ _dvdnavdir=$($_dvdnavconfig --cflags) -+ _dvdnavlibs=$($_dvdnavconfig --libs) -+ fi - statement_check_broken stdint.h dvdnav/dvdnav.h 'dvdnav_t *dvd = 0' $_dvdnavdir $_dvdnavlibs $ld_dl $ld_pthread && _dvdnav=yes - fi - if test "$_dvdnav" = yes ; then -@@ -7736,8 +7748,13 @@ if test "$_dvdnav" = yes ; then - cflags_libdvdnav="-Ilibdvdnav" - inputmodules="dvdnav(internal) $inputmodules" - else -- extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)" -- extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)" -+ if $_pkg_config --exists dvdnavmini ; then -+ extra_cflags="$extra_cflags $($_pkg_config --cflags dvdnavmini)" -+ extra_ldflags="$extra_ldflags $($_pkg_config --libs dvdnavmini)" -+ else -+ extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)" -+ extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)" -+ fi - inputmodules="dvdnav $inputmodules" - fi - else diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4_p20110322-gcc46.patch b/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4_p20110322-gcc46.patch deleted file mode 100644 index bb7240eac0..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4_p20110322-gcc46.patch +++ /dev/null @@ -1,22 +0,0 @@ -https://bugs.gentoo.org/377837 -http://lists-archives.org/mplayer-dev-eng/34349-compiling-mplayer-with-gcc-4-6-broken-audio-decoding.html - ---- a/mp3lib/dct64_sse.c -+++ b/mp3lib/dct64_sse.c -@@ -112,7 +112,6 @@ void dct64_sse(short *out0,short *out1,real *c) - } - - { -- real *costab = costab_mmx + 24; - int i; - - __asm__( -@@ -121,7 +120,7 @@ void dct64_sse(short *out0,short *out1,real *c) - "movaps %1, %%xmm5\n\t" - "movaps %%xmm5, %%xmm6\n\t" - : -- :"m"(*costab), "m"(*nnnn) -+ :"m"(costab_mmx[24]), "m"(*nnnn) - ); - - for (i = 0; i < 0x20; i += 8) diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4_p20110322-sami_subtitle_parsing.patch b/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4_p20110322-sami_subtitle_parsing.patch deleted file mode 100644 index edecce0a68..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/mplayer-1.0_rc4_p20110322-sami_subtitle_parsing.patch +++ /dev/null @@ -1,14 +0,0 @@ -http://bugs.gentoo.org/379297 -http://mplayerhq.hu/pipermail/mplayer-cvslog/2011-May/042075.html - ---- sub/subreader.c -+++ sub/subreader.c -@@ -173,6 +173,8 @@ - break; - - case 3: /* get all text until '<' appears */ -+ if (p - text >= LINE_LEN) -+ sami_add_line(current, text, &p); - if (*s == '\0') break; - else if (!strncasecmp (s, "
", 4)) { - sami_add_line(current, text, &p); diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/prepare_mplayer.sh b/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/prepare_mplayer.sh deleted file mode 100644 index 05aca67391..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/files/prepare_mplayer.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -VERSION=$(date +%Y%m%d) -PACKAGE="mplayer-1.0_rc4_p${VERSION}" -DUMP_FFMPEG="$(dirname $0)/dump_ffmpeg.sh" - -svn checkout svn://svn.mplayerhq.hu/mplayer/trunk ${PACKAGE} - -pushd ${PACKAGE} > /dev/null - # ffmpeg is in git now so no svn external anymore - rm -rf ffmpeg - git clone git://git.videolan.org/ffmpeg.git ffmpeg/ - sh "$DUMP_FFMPEG" - STORE_VERSION=$(LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2) - printf "$STORE_VERSION" > snapshot_version -popd > /dev/null - -find "${PACKAGE}" -type d -name '.svn' -prune -print0 | xargs -0 rm -rf -find "${PACKAGE}" -type d -name '.git' -prune -print0 | xargs -0 rm -rf - -tar cJf ${PACKAGE}.tar.xz ${PACKAGE} -rm -rf ${PACKAGE}/ - -echo "Tarball: \"${PACKAGE}.tar.xz\"" - -echo "** all done **" diff --git a/sdk_container/src/third_party/portage-stable/media-video/mplayer/mplayer-1.0_rc4_p20120405.ebuild b/sdk_container/src/third_party/portage-stable/media-video/mplayer/mplayer-1.0_rc4_p20120405.ebuild deleted file mode 100644 index 33b16586a2..0000000000 --- a/sdk_container/src/third_party/portage-stable/media-video/mplayer/mplayer-1.0_rc4_p20120405.ebuild +++ /dev/null @@ -1,654 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_rc4_p20120405.ebuild,v 1.3 2012/04/05 18:42:48 vapier Exp $ - -EAPI=4 - -EGIT_REPO_URI="git://git.videolan.org/ffmpeg.git" -ESVN_REPO_URI="svn://svn.mplayerhq.hu/mplayer/trunk" -[[ ${PV} = *9999* ]] && SVN_ECLASS="subversion git-2" || SVN_ECLASS="" - -inherit toolchain-funcs eutils flag-o-matic multilib base ${SVN_ECLASS} - -IUSE="3dnow 3dnowext +a52 aalib +alsa altivec aqua +ass bidi bindist bl bluray -bs2b cddb +cdio cdparanoia cpudetection debug dga -directfb doc +dts +dv dvb +dvd +dvdnav dxr3 +enca +encode faac +faad fbcon -ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa -libcaca libmpeg2 lirc +live lzo mad md5sum +mmx mmxext mng +mp3 nas -+network nut openal +opengl +osdmenu oss png pnm pulseaudio pvr +quicktime -radio +rar +real +rtc rtmp samba +shm sdl +speex sse sse2 ssse3 -tga +theora +tremor +truetype +toolame +twolame +unicode v4l vdpau vidix -+vorbis win32codecs +X +x264 xanim xinerama +xscreensaver +xv +xvid xvmc -zoran" - -VIDEO_CARDS="s3virge mga tdfx" -for x in ${VIDEO_CARDS}; do - IUSE+=" video_cards_${x}" -done - -FONT_URI=" - mirror://mplayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 - mirror://mplayer/releases/fonts/font-arial-iso-8859-2.tar.bz2 - mirror://mplayer/releases/fonts/font-arial-cp1250.tar.bz2 -" -if [[ ${PV} == *9999* ]]; then - RELEASE_URI="" -else - RELEASE_URI="mirror://gentoo/${P}.tar.xz" -fi -SRC_URI="${RELEASE_URI} - !truetype? ( ${FONT_URI} )" - -DESCRIPTION="Media Player for Linux" -HOMEPAGE="http://www.mplayerhq.hu/" - -FONT_RDEPS=" - virtual/ttf-fonts - media-libs/fontconfig - >=media-libs/freetype-2.2.1:2 -" -X_RDEPS=" - x11-libs/libXext - x11-libs/libXxf86vm -" -# Rar: althrought -gpl version is nice, it cant do most functions normal rars can -# nemesi? ( net-libs/libnemesi ) -RDEPEND+=" - sys-libs/ncurses - app-arch/bzip2 - sys-libs/zlib - >=media-video/ffmpeg-0.10.2 - !bindist? ( - x86? ( - win32codecs? ( media-libs/win32codecs ) - ) - ) - a52? ( media-libs/a52dec ) - aalib? ( media-libs/aalib ) - alsa? ( media-libs/alsa-lib ) - ass? ( >=media-libs/libass-0.9.10[enca?] ) - bidi? ( dev-libs/fribidi ) - bluray? ( >=media-libs/libbluray-0.2.1 ) - bs2b? ( media-libs/libbs2b ) - cdio? ( dev-libs/libcdio ) - cdparanoia? ( !cdio? ( media-sound/cdparanoia ) ) - dga? ( x11-libs/libXxf86dga ) - directfb? ( dev-libs/DirectFB ) - dts? ( media-libs/libdca ) - dv? ( media-libs/libdv ) - dvb? ( virtual/linuxtv-dvb-headers ) - dvd? ( >=media-libs/libdvdread-4.1.3 ) - dvdnav? ( >=media-libs/libdvdnav-4.1.3 ) - encode? ( - !twolame? ( toolame? ( media-sound/toolame ) ) - twolame? ( media-sound/twolame ) - faac? ( media-libs/faac ) - mp3? ( media-sound/lame ) - x264? ( >=media-libs/x264-0.0.20100423 ) - xvid? ( media-libs/xvid ) - ) - enca? ( app-i18n/enca ) - faad? ( media-libs/faad2 ) - ggi? ( media-libs/libggi media-libs/libggiwmh ) - gif? ( media-libs/giflib ) - gsm? ( media-sound/gsm ) - iconv? ( virtual/libiconv ) - jack? ( media-sound/jack-audio-connection-kit ) - jpeg? ( virtual/jpeg ) - jpeg2k? ( media-libs/openjpeg ) - ladspa? ( media-libs/ladspa-sdk ) - libcaca? ( media-libs/libcaca ) - libmpeg2? ( media-libs/libmpeg2 ) - lirc? ( app-misc/lirc ) - live? ( media-plugins/live ) - lzo? ( >=dev-libs/lzo-2 ) - mad? ( media-libs/libmad ) - mng? ( media-libs/libmng ) - mp3? ( media-sound/mpg123 ) - nas? ( media-libs/nas ) - nut? ( >=media-libs/libnut-661 ) - openal? ( media-libs/openal ) - opengl? ( virtual/opengl ) - png? ( media-libs/libpng ) - pnm? ( media-libs/netpbm ) - pulseaudio? ( media-sound/pulseaudio ) - rar? ( - || ( - app-arch/unrar - app-arch/rar - ) - ) - rtmp? ( media-video/rtmpdump ) - samba? ( net-fs/samba ) - sdl? ( media-libs/libsdl ) - speex? ( media-libs/speex ) - theora? ( media-libs/libtheora[encode?] ) - truetype? ( ${FONT_RDEPS} ) - vdpau? ( x11-libs/libvdpau ) - vorbis? ( media-libs/libvorbis ) - X? ( ${X_RDEPS} ) - xanim? ( media-video/xanim ) - xinerama? ( x11-libs/libXinerama ) - xscreensaver? ( x11-libs/libXScrnSaver ) - xv? ( x11-libs/libXv ) - xvmc? ( x11-libs/libXvMC ) -" - -X_DEPS=" - x11-proto/videoproto - x11-proto/xf86vidmodeproto -" -ASM_DEP="dev-lang/yasm" -DEPEND="${RDEPEND} - dev-util/pkgconfig - dga? ( x11-proto/xf86dgaproto ) - dxr3? ( media-video/em8300-libraries ) - X? ( ${X_DEPS} ) - xinerama? ( x11-proto/xineramaproto ) - xscreensaver? ( x11-proto/scrnsaverproto ) - amd64? ( ${ASM_DEP} ) - doc? ( - dev-libs/libxslt app-text/docbook-xml-dtd - app-text/docbook-xsl-stylesheets - ) - x86? ( ${ASM_DEP} ) - x86-fbsd? ( ${ASM_DEP} ) -" - -SLOT="0" -LICENSE="GPL-2" -if [[ ${PV} != *9999* ]]; then - KEYWORDS="amd64 ~hppa ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -else - KEYWORDS="" -fi - -# faac codecs are nonfree, win32codecs are nonfree -# libcdio support: prefer libcdio over cdparanoia and don't check for cddb w/cdio -# dvd navigation requires dvd read support -# ass and freetype font require iconv and ass requires freetype fonts -# unicode transformations are usefull only with iconv -# libvorbis require external tremor to work -# radio requires oss or alsa backend -# xvmc requires xvideo support -REQUIRED_USE="bindist? ( !faac !win32codecs ) - dvdnav? ( dvd ) - ass? ( truetype ) - truetype? ( iconv ) - dxr3? ( X ) - ggi? ( X ) - xinerama? ( X ) - dga? ( X ) - opengl? ( X ) - osdmenu? ( X ) - vdpau? ( X ) - vidix? ( X ) - xscreensaver? ( X ) - xv? ( X ) - xvmc? ( xv )" - -PATCHES=( - "${FILESDIR}/ffmpeg.patch" - "${FILESDIR}/ffmpeg2.patch" - "${FILESDIR}/${PN}-1.0_rc4-pkg-config.patch" -) - -pkg_setup() { - if [[ ${PV} == *9999* ]]; then - elog - elog "This is a live ebuild which installs the latest from upstream's" - elog "subversion repository, and is unsupported by Gentoo." - elog "Everything but bugs in the ebuild itself will be ignored." - elog - fi - - if use cpudetection; then - ewarn - ewarn "You've enabled the cpudetection flag. This feature is" - ewarn "included mainly for people who want to use the same" - ewarn "binary on another system with a different CPU architecture." - ewarn "MPlayer will already detect your CPU settings by default at" - ewarn "buildtime; this flag is used for runtime detection." - ewarn "You won't need this turned on if you are only building" - ewarn "mplayer for this system. Also, if your compile fails, try" - ewarn "disabling this use flag." - fi -} - -src_unpack() { - if [[ ${PV} = *9999* ]]; then - subversion_src_unpack - cd "${WORKDIR}" - rm -rf "${WORKDIR}/${P}/ffmpeg/" - ( S="${WORKDIR}/${P}/ffmpeg/" git-2_src_unpack ) - cd "${S}" - cp "${FILESDIR}/dump_ffmpeg.sh" . || die - chmod +x dump_ffmpeg.sh - ./dump_ffmpeg.sh || die - else - unpack ${A} - fi - - if ! use truetype; then - unpack font-arial-iso-8859-1.tar.bz2 \ - font-arial-iso-8859-2.tar.bz2 \ - font-arial-cp1250.tar.bz2 - fi -} - -src_prepare() { - local svf=snapshot_version - if [[ ${PV} = *9999* ]]; then - # Set SVN version manually - subversion_wc_info - printf "${ESVN_WC_REVISION}" > $svf - fi - [ -f "$svf" ] || die "Missing ${svf}. Did you generate your snapshot with prepare_mplayer.sh?" - local sv=$(<$svf) - printf "SVN-r${sv} (Gentoo)" > VERSION - - # fix path to bash executable in configure scripts - sed -i -e "1c\#!${EPREFIX}/bin/bash" configure version.sh || die - - base_src_prepare -} - -src_configure() { - local myconf="" - local uses i - - # set LINGUAS - [[ -n $LINGUAS ]] && LINGUAS="${LINGUAS/da/dk}" - - # mplayer ebuild uses "use foo || --disable-foo" to forcibly disable - # compilation in almost every situation. The reason for this is - # because if --enable is used, it will force the build of that option, - # regardless of whether the dependency is available or not. - - ################### - #Optional features# - ################### - # disable svga since we don't want it - # disable arts since we don't have kde3 - # always disable internal ass - myconf+=" - --disable-svga --disable-svgalib_helper - --disable-ass-internal - --disable-arts - --disable-kai - $(use_enable network networking) - $(use_enable joystick) - " - uses="ass bl bluray enca ftp rtc" # nemesi <- not working with in-tree ebuild - myconf+=" --disable-nemesi" # nemesi automagic disable - for i in ${uses}; do - use ${i} || myconf+=" --disable-${i}" - done - use bidi || myconf+=" --disable-fribidi" - use ipv6 || myconf+=" --disable-inet6" - use nut || myconf+=" --disable-libnut" - use rar || myconf+=" --disable-unrarexec" - use samba || myconf+=" --disable-smb" - use lirc || myconf+=" --disable-lirc --disable-lircc --disable-apple-ir" - - # libcdio support: prefer libcdio over cdparanoia - # don't check for cddb w/cdio - if use cdio; then - myconf+=" --disable-cdparanoia" - else - myconf+=" --disable-libcdio" - use cdparanoia || myconf+=" --disable-cdparanoia" - use cddb || myconf+=" --disable-cddb" - fi - - ################################ - # DVD read, navigation support # - ################################ - # - # dvdread - accessing a DVD - # dvdnav - navigation of menus - # - # use external libdvdcss, dvdread and dvdnav - myconf+=" --disable-dvdread-internal --disable-libdvdcss-internal" - use dvd || myconf+=" --disable-dvdread" - use dvdnav || myconf+=" --disable-dvdnav" - - ############# - # Subtitles # - ############# - # - # SRT/ASS/SSA (subtitles) requires freetype support - # freetype support requires iconv - # iconv optionally can use unicode - use truetype || myconf+=" --disable-freetype" - use iconv || myconf+=" --disable-iconv --charset=noconv" - use iconv && use unicode && myconf+=" --charset=UTF-8" - - ##################################### - # DVB / Video4Linux / Radio support # - ##################################### - myconf+=" --disable-tv-bsdbt848" - # broken upstream, won't work with recent kernels - myconf+=" --disable-ivtv" - # gone since linux-headers-2.6.38 - myconf+=" --disable-tv-v4l1" - if { use dvb || use v4l || use pvr || use radio; }; then - use dvb || myconf+=" --disable-dvb" - use pvr || myconf+=" --disable-pvr" - use v4l || myconf+=" --disable-tv-v4l2" - if use radio && { use dvb || use v4l; }; then - myconf+=" - --enable-radio - $(use_enable encode radio-capture) - " - else - myconf+=" - --disable-radio-v4l2 - --disable-radio-bsdbt848 - " - fi - else - myconf+=" - --disable-tv - --disable-tv-v4l2 - --disable-radio - --disable-radio-v4l2 - --disable-radio-bsdbt848 - --disable-dvb - --disable-v4l2 - --disable-pvr" - fi - - ########## - # Codecs # - ########## - myconf+=" --disable-musepack" # Use internal musepack codecs for SV7 and SV8 support - myconf+=" --disable-libmpeg2-internal" # always use system media-libs/libmpeg2 - use dts || myconf+=" --disable-libdca" - # Disable internal mp3lib, bug #384849 - # Samuli Suominen: Looks like MPlayer in Portage is using internal mp3lib by - # default, where as mpg123 upstream has incorporated all the optimizations - # from mplayer's mp3lib in libmpg123 and more. - # It makes very little sense to use the internal copy as default anymore. - myconf+=" --disable-mp3lib" - if ! use mp3; then - myconf+=" - --disable-mp3lame - --disable-mpg123 - " - fi - uses="a52 bs2b dv gsm lzo rtmp" - for i in ${uses}; do - use ${i} || myconf+=" --disable-lib${i}" - done - - uses="faad gif jpeg libmpeg2 live mad mng png pnm speex tga theora xanim" - for i in ${uses}; do - use ${i} || myconf+=" --disable-${i}" - done - use jpeg2k || myconf+=" --disable-libopenjpeg" - if use vorbis || use tremor; then - use tremor || myconf+=" --disable-tremor-internal" - use vorbis || myconf+=" --disable-libvorbis" - else - myconf+=" - --disable-tremor-internal - --disable-tremor - --disable-libvorbis - " - fi - # Encoding - uses="faac x264 xvid toolame twolame" - if use encode; then - for i in ${uses}; do - use ${i} || myconf+=" --disable-${i}" - done - else - myconf+=" --disable-mencoder" - for i in ${uses}; do - myconf+=" --disable-${i}" - use ${i} && elog "Useflag \"${i}\" will only be useful for encoding, i.e., with \"encode\" useflag enabled." - done - fi - - ################# - # Binary codecs # - ################# - # bug 213836 - if ! use x86 || ! use win32codecs; then - use quicktime || myconf+=" --disable-qtx" - fi - - ###################### - # RealPlayer support # - ###################### - # Realplayer support shows up in four places: - # - libavcodec (internal) - # - win32codecs - # - realcodecs (win32codecs libs) - # - realcodecs (realplayer libs) - - # internal - use real || myconf+=" --disable-real" - - # Real binary codec support only available on x86, amd64 - if use real; then - use x86 && myconf+=" --codecsdir=/opt/RealPlayer/codecs" - use amd64 && myconf+=" --codecsdir=/usr/$(get_libdir)/codecs" - fi - myconf+=" $(use_enable win32codecs win32dll)" - - ################ - # Video Output # - ################ - uses="directfb md5sum sdl" - for i in ${uses}; do - use ${i} || myconf+=" --disable-${i}" - done - use aalib || myconf+=" --disable-aa" - use fbcon || myconf+=" --disable-fbdev" - use fbcon && use video_cards_s3virge && myconf+=" --enable-s3fb" - use libcaca || myconf+=" --disable-caca" - use zoran || myconf+=" --disable-zr" - - if ! use kernel_linux || ! use video_cards_mga; then - myconf+=" --disable-mga --disable-xmga" - fi - - if use video_cards_tdfx; then - myconf+=" - $(use_enable video_cards_tdfx tdfxvid) - $(use_enable fbcon tdfxfb) - " - else - myconf+=" - --disable-3dfx - --disable-tdfxvid - --disable-tdfxfb - " - fi - - # sun card, disable by default, see bug #258729 - myconf+=" --disable-xvr100" - - ################ - # Audio Output # - ################ - myconf+=" --disable-esd" - uses="alsa jack ladspa nas openal" - for i in ${uses}; do - use ${i} || myconf+=" --disable-${i}" - done - use pulseaudio || myconf+=" --disable-pulse" - if ! use radio; then - use oss || myconf+=" --disable-ossaudio" - fi - - #################### - # Advanced Options # - #################### - # Platform specific flags, hardcoded on amd64 (see below) - use cpudetection && myconf+=" --enable-runtime-cpudetection" - - uses="3dnow 3dnowext altivec mmx mmxext shm sse sse2 ssse3" - for i in ${uses}; do - myconf+=" $(use_enable ${i})" - done - - use debug && myconf+=" --enable-debug=3" - - if use x86 && gcc-specs-pie; then - filter-flags -fPIC -fPIE - append-ldflags -nopie - fi - - ########################### - # X enabled configuration # - ########################### - myconf+=" --disable-gui" - myconf+=" --disable-vesa" - uses="dxr3 ggi vdpau xinerama xv" - for i in ${uses}; do - use ${i} || myconf+=" --disable-${i}" - done - use dga || myconf+=" --disable-dga1 --disable-dga2" - use opengl || myconf+=" --disable-gl" - use osdmenu && myconf+=" --enable-menu" - use vidix || myconf+=" --disable-vidix --disable-vidix-pcidb" - use xscreensaver || myconf+=" --disable-xss" - use X || myconf+=" --disable-x11" - if use xvmc; then - myconf+=" --enable-xvmc --with-xvmclib=XvMCW" - else - myconf+=" --disable-xvmc" - fi - - ############################ - # OSX (aqua) configuration # - ############################ - if use aqua; then - myconf+=" - --enable-macosx-finder - --enable-macosx-bundle - " - fi - - tc-export PKG_CONFIG - ./configure \ - --cc="$(tc-getCC)" \ - --host-cc="$(tc-getBUILD_CC)" \ - --prefix="${EPREFIX}/usr" \ - --bindir="${EPREFIX}/usr/bin" \ - --libdir="${EPREFIX}/usr/$(get_libdir)" \ - --confdir="${EPREFIX}/etc/mplayer" \ - --datadir="${EPREFIX}/usr/share/mplayer${namesuf}" \ - --mandir="${EPREFIX}/usr/share/man" \ - --disable-ffmpeg_a \ - ${myconf} || die -} - -src_compile() { - base_src_compile - # Build only user-requested docs if they're available. - if use doc ; then - # select available languages from $LINGUAS - LINGUAS=${LINGUAS/zh/zh_CN} - local ALLOWED_LINGUAS="cs de en es fr hu it pl ru zh_CN" - local BUILT_DOCS="" - for i in ${LINGUAS} ; do - has ${i} ${ALLOWED_LINGUAS} && BUILT_DOCS+=" ${i}" - done - if [[ -z $BUILT_DOCS ]]; then - emake -j1 html-chunked - else - for i in ${BUILT_DOCS}; do - emake -j1 html-chunked-${i} - done - fi - fi -} - -src_install() { - local i - - emake \ - DESTDIR="${D}" \ - INSTALLSTRIP="" \ - install - - dodoc AUTHORS Changelog Copyright README etc/codecs.conf - - docinto tech/ - dodoc DOCS/tech/{*.txt,MAINTAINERS,mpsub.sub,playtree,TODO,wishlist} - docinto TOOLS/ - dodoc -r TOOLS - if use real; then - docinto tech/realcodecs/ - dodoc DOCS/tech/realcodecs/* - fi - docinto tech/mirrors/ - dodoc DOCS/tech/mirrors/* - - if use doc; then - docinto html/ - dohtml -r "${S}"/DOCS/HTML/* - fi - - if ! use truetype; then - dodir /usr/share/mplayer/fonts - # Do this generic, as the mplayer people like to change the structure - # of their zips ... - for i in $(find "${WORKDIR}/" -type d -name 'font-arial-*'); do - cp -pPR "${i}" "${ED}/usr/share/mplayer/fonts" - done - # Fix the font symlink ... - rm -rf "${ED}/usr/share/mplayer/font" - dosym fonts/font-arial-14-iso-8859-1 /usr/share/mplayer/font - fi - - insinto /etc/mplayer - newins "${S}/etc/example.conf" mplayer.conf - cat >> "${ED}/etc/mplayer/mplayer.conf" << _EOF_ -# Config options can be section specific, global -# options should go in the default section -[default] -_EOF_ - doins "${S}/etc/input.conf" - if use osdmenu; then - doins "${S}/etc/menu.conf" - fi - - if use truetype; then - cat >> "${ED}/etc/mplayer/mplayer.conf" << _EOF_ -fontconfig=1 -subfont-osd-scale=4 -subfont-text-scale=3 -_EOF_ - fi - - # bug 256203 - if use rar; then - cat >> "${ED}/etc/mplayer/mplayer.conf" << _EOF_ -unrarexec=${EPREFIX}/usr/bin/unrar -_EOF_ - fi - - dosym ../../../etc/mplayer/mplayer.conf /usr/share/mplayer/mplayer.conf - newbin "${S}/TOOLS/midentify.sh" midentify -} - -pkg_preinst() { - [[ -d ${EROOT}/usr/share/mplayer/Skin/default ]] && \ - rm -rf "${EROOT}/usr/share/mplayer/Skin/default" -} - -pkg_postrm() { - # Cleanup stale symlinks - [ -L "${EROOT}/usr/share/mplayer/font" -a \ - ! -e "${EROOT}/usr/share/mplayer/font" ] && \ - rm -f "${EROOT}/usr/share/mplayer/font" - - [ -L "${EROOT}/usr/share/mplayer/subfont.ttf" -a \ - ! -e "${EROOT}/usr/share/mplayer/subfont.ttf" ] && \ - rm -f "${EROOT}/usr/share/mplayer/subfont.ttf" -} diff --git a/sdk_container/src/third_party/portage-stable/sci-calculators/pcalc/Manifest b/sdk_container/src/third_party/portage-stable/sci-calculators/pcalc/Manifest deleted file mode 100644 index cd5487b3a9..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-calculators/pcalc/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pcalc-2.tar.lzma 92758 RMD160 0e77885fe3296a59a8db55c2cd01eca19de87268 SHA1 0400459ecb985d2a638179f8ac2c4f35f9ca3a0e SHA256 be93062e8a15029ea50e4f9f9d0fd4fdbab82c927b7b93afa6f7fa398081c78f diff --git a/sdk_container/src/third_party/portage-stable/sci-calculators/pcalc/pcalc-2.ebuild b/sdk_container/src/third_party/portage-stable/sci-calculators/pcalc/pcalc-2.ebuild deleted file mode 100644 index 691168e044..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-calculators/pcalc/pcalc-2.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/pcalc/pcalc-2.ebuild,v 1.1 2009/12/13 07:52:26 vapier Exp $ - -inherit toolchain-funcs - -DESCRIPTION="the programmers calculator" -HOMEPAGE="http://pcalc.sourceforge.net/" -SRC_URI="mirror://sourceforge/pcalc/${P}.tar.lzma" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" -IUSE="" - -src_compile() { - tc-export CC - emake pcalc || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog EXAMPLE README -} diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/Manifest b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/Manifest deleted file mode 100644 index 8ccc2f184c..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST gpsd-3.4.tar.gz 1422890 RMD160 f7cddc018b5b6834a097bbefbddb2b0a3844b203 SHA1 b942902479238f8a3eaa1955299d97461e93081a SHA256 79f7de9ead63c7f5d2c9a92e85b5f82e53323c4d451ef8e27ea265ac3ef9a70f diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.3-ldflags.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.3-ldflags.patch deleted file mode 100644 index 867b96b2da..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.3-ldflags.patch +++ /dev/null @@ -1,15 +0,0 @@ -https://bugs.gentoo.org/391299 - -split up linking flags into multiple arguments - ---- gpsd-3.3/SConstruct -+++ gpsd-3.3/SConstruct -@@ -214,7 +214,7 @@ - env.Replace(**{j: os.getenv(i)}) - for flags in ["LDFLAGS", "LINKFLAGS", "SHLINKFLAGS", "CPPFLAGS"]: - if os.environ.has_key(flags): -- env.MergeFlags({flags : [os.getenv(flags)]}) -+ env.MergeFlags({flags : Split(os.getenv(flags))}) - - - # Placeholder so we can kluge together something like VPATH builds. diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-always-install-man-pages.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-always-install-man-pages.patch deleted file mode 100644 index c9c1c7d109..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-always-install-man-pages.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 918d6d8e5bac3981126cb01e673430cb7c96ec02 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Thu, 9 Feb 2012 16:51:24 -0500 -Subject: [PATCH] always install the man pages - -Since we maintain local copies, don't require xmlto/xsltproc in -order to install them. This makes packaging simpler. - -Signed-off-by: Mike Frysinger ---- - SConstruct | 9 ++++----- - 1 files changed, 4 insertions(+), 5 deletions(-) - -diff --git a/SConstruct b/SConstruct -index ab85b7d..fb08779 100644 ---- a/SConstruct -+++ b/SConstruct -@@ -1186,11 +1186,10 @@ if qt_env: - - - maninstall = [] --if manbuilder: -- for manpage in base_manpages.keys() + python_manpages.keys(): -- section = manpage.split(".")[1] -- dest = os.path.join(installdir('mandir'), "man"+section, manpage) -- maninstall.append(env.InstallAs(source=manpage, target=dest)) -+for manpage in base_manpages.keys() + python_manpages.keys(): -+ section = manpage.split(".")[1] -+ dest = os.path.join(installdir('mandir'), "man"+section, manpage) -+ maninstall.append(env.InstallAs(source=manpage, target=dest)) - install = env.Alias('install', binaryinstall + maninstall + python_install + pc_install + headerinstall) - - def Uninstall(nodes): --- -1.7.8.4 - diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-cfgetispeed.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-cfgetispeed.patch deleted file mode 100644 index 02abcb0e95..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-cfgetispeed.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 38702bf0f4aaafdddde51393106eeaf720c1fc63 Mon Sep 17 00:00:00 2001 -From: Manuel Lauss -Date: Fri, 13 Jan 2012 11:59:55 -0500 -Subject: [PATCH] serial: use cfgetispeed helpers - -Rather than poking c_ispeed directly, use the cfgetispeed helper. This -is part of POSIX, and we already use cfsetispeed, so there shouldn't be -any portability issues here. - -Signed-off-by: Manuel Lauss -Signed-off-by: Mike Frysinger ---- - serial.c | 9 +-------- - 1 files changed, 1 insertions(+), 8 deletions(-) - -diff --git a/serial.c b/serial.c -index c1464dd..8eb03ce 100644 ---- a/serial.c -+++ b/serial.c -@@ -594,13 +594,8 @@ void gpsd_close(struct gps_device_t *session) - * them the first time. Economical, and avoids tripping over an - * obscure Linux 2.6 kernel bug that disables threaded - * ioctl(TIOCMWAIT) on a device after tcsetattr() is called. -- * -- * Unfortunately the termios struct doesn't have c_ispeed/c_ospeed -- * on all architectures. Its missing on sparc, mips/mispel and hurd-i386 at least. - */ --#if defined(_HAVE_STRUCT_TERMIOS_C_ISPEED) -- if (session->ttyset_old.c_ispeed != session->ttyset.c_ispeed || (session->ttyset_old.c_cflag & CSTOPB) != (session->ttyset.c_cflag & CSTOPB)) { --#endif -+ if (cfgetispeed(&session->ttyset_old) != cfgetispeed(&session->ttyset) || (session->ttyset_old.c_cflag & CSTOPB) != (session->ttyset.c_cflag & CSTOPB)) { - /*@ ignore @*/ - (void)cfsetispeed(&session->ttyset_old, - (speed_t) session->gpsdata.dev.baudrate); -@@ -609,9 +604,7 @@ void gpsd_close(struct gps_device_t *session) - /*@ end @*/ - (void)tcsetattr(session->gpsdata.gps_fd, TCSANOW, - &session->ttyset_old); --#if defined(_HAVE_STRUCT_TERMIOS_C_ISPEED) - } --#endif - gpsd_report(LOG_SPIN, "close(%d) in gpsd_close(%s)\n", - session->gpsdata.gps_fd, session->gpsdata.dev.path); - (void)close(session->gpsdata.gps_fd); --- -1.7.8.3 - diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-chrpath.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-chrpath.patch deleted file mode 100644 index c509e2d299..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-chrpath.patch +++ /dev/null @@ -1,69 +0,0 @@ -From 63a44d0cb5494ed1078de411b55cb1c9a8307cec Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Fri, 18 Nov 2011 19:09:27 -0500 -Subject: [PATCH] make chrpath optional - -There's no reason to require chrpath for distributions who only want to -compile locally and then install elsewhere for packaging. So allow them -to specify CHRPATH='' via the env to disable this requirement. - -Signed-off-by: Mike Frysinger ---- - SConstruct | 27 ++++++++++++++------------- - 1 files changed, 14 insertions(+), 13 deletions(-) - -diff --git a/SConstruct b/SConstruct -index ccaca7d..68bf367 100644 ---- a/SConstruct -+++ b/SConstruct -@@ -270,7 +270,7 @@ def installdir(dir, add_destdir=True): - - # Honor the specified installation prefix in link paths. - env.Prepend(LIBPATH=[installdir('libdir')]) --if env["shared"]: -+if env["shared"] and env['CHRPATH']: - env.Prepend(RPATH=[installdir('libdir')]) - - # Give deheader a way to set compiler flags -@@ -390,17 +390,18 @@ config = Configure(env, custom_tests = { 'CheckPKG' : CheckPKG, - 'CheckXsltproc' : CheckXsltproc}) - - env.Prepend(LIBPATH=[os.path.realpath(os.curdir)]) --if config.CheckExecutable('$CHRPATH -v', 'chrpath'): -- # Tell generated binaries to look in the current directory for -- # shared libraries so we can run tests without hassle. Should be -- # handled sanely by scons on all systems. Not good to use '.' or -- # a relative path here; it's a security risk. At install time we -- # use chrpath to edit this out of RPATH. -- if env["shared"]: -- env.Prepend(RPATH=[os.path.realpath(os.curdir)]) --else: -- print "chrpath is not available, forcing static linking." -- env["shared"] = False -+if env['CHRPATH']: -+ if config.CheckExecutable('$CHRPATH -v', 'chrpath'): -+ # Tell generated binaries to look in the current directory for -+ # shared libraries so we can run tests without hassle. Should be -+ # handled sanely by scons on all systems. Not good to use '.' or -+ # a relative path here; it's a security risk. At install time we -+ # use chrpath to edit this out of RPATH. -+ if env["shared"]: -+ env.Prepend(RPATH=[os.path.realpath(os.curdir)]) -+ else: -+ print "chrpath is not available, forcing static linking." -+ env["shared"] = False - - confdefs = ["/* gpsd_config.h. Generated by scons, do not hand-hack. */\n"] - -@@ -1140,7 +1141,7 @@ if qt_env: - binaryinstall.append(LibraryInstall(qt_env, installdir('libdir'), compiled_qgpsmmlib)) - - # We don't use installdir here in order to avoid having DESTDIR affect the rpath --if env["shared"]: -+if env['CHRPATH']: - env.AddPostAction(binaryinstall, '$CHRPATH -r "%s" "$TARGET"' \ - % (installdir('libdir', False), )) - --- -1.7.8.3 - diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-gpsmon-lm.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-gpsmon-lm.patch deleted file mode 100644 index a749fcf051..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-gpsmon-lm.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 55131187b6a0290f99d1dd70b5cce48040bba7bb Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Fri, 13 Jan 2012 11:53:39 -0500 -Subject: [PATCH] gpsmon: always link with -lm - -Since the gpsmon pkg uses math funcs itself (and not just via libgps), -we need to link in -lm for the app. - -Signed-off-by: Mike Frysinger ---- - SConstruct | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/SConstruct b/SConstruct -index 68bf367..a5249c1 100644 ---- a/SConstruct -+++ b/SConstruct -@@ -851,7 +851,7 @@ gpsdctl = env.Program('gpsdctl', ['gpsdctl.c'], parse_flags=gpslibs) - env.Depends(gpsdctl, compiled_gpslib) - - gpsmon = env.Program('gpsmon', gpsmon_sources, -- parse_flags=gpsdlibs + ncurseslibs) -+ parse_flags=gpsdlibs + ncurseslibs + ['-lm']) - env.Depends(gpsmon, [compiled_gpsdlib, compiled_gpslib]) - - gpspipe = env.Program('gpspipe', ['gpspipe.c'], parse_flags=gpslibs) --- -1.7.8.3 - diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch deleted file mode 100644 index 20a3b707a4..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-no-man-gen.patch +++ /dev/null @@ -1,13 +0,0 @@ -the scons logic is dumb and will always regenerate the man pages. -forcibly disable that as the releases contain the man pages. - ---- a/SConstruct -+++ b/SConstruct -@@ -575,6 +575,7 @@ - manbuilder = "xmlto man $SOURCE; mv `basename $TARGET` $TARGET" - else: - announce("Neither xsltproc nor xmlto found, documentation cannot be built.") -+manbuilder = htmlbuilder = False - if manbuilder: - env['BUILDERS']["Man"] = Builder(action=manbuilder) - env['BUILDERS']["HTML"] = Builder(action=htmlbuilder, diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-strptime.patch b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-strptime.patch deleted file mode 100644 index 50a2b27559..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd-3.4-strptime.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 083ee79e5b6acbd08008965cbca496eb61957fa4 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Fri, 13 Jan 2012 11:56:12 -0500 -Subject: [PATCH] fix missing strptime prototype - -Signed-off-by: Mike Frysinger ---- - gpsutils.c | 2 ++ - 1 files changed, 2 insertions(+), 0 deletions(-) - -diff --git a/gpsutils.c b/gpsutils.c -index a1530ec..cc47d52 100644 ---- a/gpsutils.c -+++ b/gpsutils.c -@@ -3,6 +3,8 @@ - * This file is Copyright (c) 2010 by the GPSD project - * BSD terms apply: see the file COPYING in the distribution root for details. - */ -+#define _XOPEN_SOURCE 700 -+ - #include - #include - #include --- -1.7.8.3 - diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd.conf-2 b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd.conf-2 deleted file mode 100644 index b50bd46b01..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd.conf-2 +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/files/gpsd.conf-2,v 1.1 2010/09/26 13:36:50 scarabeus Exp $ - -# Config file for gpsd server -GPSD_OPTIONS="" -DEVICES="" -GPSD_SOCKET="/var/run/gpsd.sock" diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd.init-2 b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd.init-2 deleted file mode 100644 index 20f3809c5a..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/files/gpsd.init-2 +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/files/gpsd.init-2,v 1.2 2010/09/30 23:07:55 swegener Exp $ - -depend() { - after dbus - before ntpd -} - -PIDFILE=/var/run/${SVCNAME}.pid -DAEMON=/usr/sbin/gpsd - -checkconfig() { - if [ -z "${GPSD_SOCKET}" ] && [ -z "${DEVICES}" ]; then - GPSD_SOCKET="/var/run/gpsd.sock" - fi - - if [ -n "${GPSD_SOCKET}" ]; then - GPSD_OPTIONS="${GPSD_OPTIONS} -F ${GPSD_SOCKET}" - fi -} - -start() { - checkconfig - ebegin "Starting gpsd" - - start-stop-daemon --start --quiet --pidfile ${PIDFILE} --exec ${DAEMON} -- \ - ${GPSD_OPTIONS} -P ${PIDFILE} ${DEVICES} - eend $? -} - -stop() { - ebegin "Stopping gpsd" - start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile ${PIDFILE} - eend $? - rm -f ${PIDFILE} -} diff --git a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/gpsd-3.4.ebuild b/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/gpsd-3.4.ebuild deleted file mode 100644 index 485e11e94c..0000000000 --- a/sdk_container/src/third_party/portage-stable/sci-geosciences/gpsd/gpsd-3.4.ebuild +++ /dev/null @@ -1,165 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-3.4.ebuild,v 1.3 2012/05/21 22:36:22 vapier Exp $ - -EAPI="4" - -PYTHON_DEPEND="python? 2:2.6" -RESTRICT_PYTHON_ABIS="3.*" -SUPPORT_PYTHON_ABIS="1" -SCONS_MIN_VERSION="1.2.1" - -inherit eutils user multilib distutils scons-utils toolchain-funcs - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.nongnu.org/gpsd.git" - inherit git-2 -else - SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" - KEYWORDS="amd64 arm ppc ppc64 x86" -fi - -DESCRIPTION="GPS daemon and library to support USB/serial GPS devices and various GPS/mapping clients" -HOMEPAGE="http://catb.org/gpsd/" - -LICENSE="BSD" -SLOT="0" - -GPSD_PROTOCOLS=( - ashtech aivdm clientdebug earthmate evermore fv18 garmin - garmintxt gpsclock itrax mtk3301 nmea ntrip navcom oceanserver - oldstyle oncore rtcm104v2 rtcm104v3 sirf superstar2 timing tsip - tripmate tnt ubx -) -IUSE_GPSD_PROTOCOLS=${GPSD_PROTOCOLS[@]/#/gpsd_protocols_} -IUSE="${IUSE_GPSD_PROTOCOLS} bluetooth cxx debug dbus ipv6 ncurses ntp python qt4 +shm +sockets test udev usb X" -REQUIRED_USE="X? ( python )" - -RDEPEND="X? ( dev-python/pygtk:2 ) - ncurses? ( sys-libs/ncurses ) - bluetooth? ( net-wireless/bluez ) - usb? ( virtual/libusb:1 ) - dbus? ( - sys-apps/dbus - dev-libs/dbus-glib - ) - ntp? ( net-misc/ntp ) - qt4? ( x11-libs/qt-gui )" -DEPEND="${RDEPEND} - test? ( sys-devel/bc )" - -# xml packages are for man page generation -if [[ ${PV} == "9999" ]] ; then - DEPEND+=" - app-text/xmlto - =app-text/docbook-xml-dtd-4.1*" -fi - -pkg_setup() { - use python && python_pkg_setup -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.3-ldflags.patch - epatch "${FILESDIR}"/${PN}-3.4-cfgetispeed.patch #393515 - epatch "${FILESDIR}"/${PN}-3.4-gpsmon-lm.patch - epatch "${FILESDIR}"/${PN}-3.4-strptime.patch - epatch "${FILESDIR}"/${PN}-3.4-chrpath.patch - epatch "${FILESDIR}"/${PN}-3.4-always-install-man-pages.patch - epatch "${FILESDIR}"/${PN}-3.4-no-man-gen.patch - - # Avoid useless -L paths to the install dir - sed -i \ - -e '/^env.Prepend(LIBPATH=.installdir(.libdir.).)$/d' \ - -e 's:\:SYSROOT:g' \ - SConstruct || die - - # Extract python info out of SConstruct so we can use saner distribute - if use python ; then - pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } - local pybins=$(pyvar python_progs) - local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) - local packet=$(python -c "${pysrcs}; print(python_extensions['gps/packet'])") - local client=$(python -c "${pysrcs}; print(python_extensions['gps/clienthelpers'])") - sed \ - -e "s|@VERSION@|$(pyvar gpsd_version)|" \ - -e "s|@URL@|$(pyvar website)|" \ - -e "s|@EMAIL@|$(pyvar devmail)|" \ - -e "s|@SCRIPTS@|${pybins}|" \ - -e "s|@GPS_PACKET_SOURCES@|${packet}|" \ - -e "s|@GPS_CLIENT_SOURCES@|${client}|" \ - -e "s|@SCRIPTS@|$(pyvar python_progs)|" \ - "${FILESDIR}"/${PN}-3.3-setup.py > setup.py || die - distutils_src_prepare - fi -} - -src_configure() { - myesconsargs=( - prefix=/usr - libdir="/$(get_libdir)" - gpsd_user=gpsd - gpsd_group=uucp - strip=False - python=False - $(use_scons bluetooth bluez) - $(use_scons cxx libgpsmm) - $(use_scons debug) - $(use_scons dbus dbus_export) - $(use_scons ipv6) - $(use_scons ncurses) - $(use_scons ntp ntpshm) - $(use_scons ntp pps) - $(use_scons shm shm_export) - $(use_scons sockets socket_export) - $(use_scons qt4 libQgpsmm) - $(use_scons usb) - ) - - # enable specified protocols - local protocol - for protocol in ${GPSD_PROTOCOLS[@]} ; do - myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) - done -} - -src_compile() { - export CHRPATH= - tc-export CC CXX PKG_CONFIG - export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} - escons - - use python && distutils_src_compile -} - -src_install() { - DESTDIR="${D}" escons install $(usex udev udev-install "") - - newconfd "${FILESDIR}"/gpsd.conf-2 gpsd - newinitd "${FILESDIR}"/gpsd.init-2 gpsd - - if use python ; then - distutils_src_install - # Delete all X related packages if user doesn't want them - if ! use X ; then - local p - for p in $(grep -Il 'import .*pygtk' *) ; do - find "${D}"/usr/bin -name "${p}*" -delete - done - fi - fi -} - -pkg_preinst() { - # Run the gpsd daemon as gpsd and group uucp; create it here - # as it doesn't seem to be needed during compile/install ... - enewuser gpsd -1 -1 -1 "uucp" -} - -pkg_postinst() { - use python && distutils_pkg_postinst -} - -pkg_postrm() { - use python && distutils_pkg_postrm -} diff --git a/sdk_container/src/third_party/portage-stable/sys-power/pm-quirks/Manifest b/sdk_container/src/third_party/portage-stable/sys-power/pm-quirks/Manifest deleted file mode 100644 index 1cf76b90f1..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/pm-quirks/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pm-quirks-20100619.tar.gz 10033 RMD160 9382883b4e70a2e5318faebd29d4949990d6e7af SHA1 01aab63e2bb8c0f8d81d325ffce1fa49af0e2f3a SHA256 14a50518928c27417cdc8bcbabb32b3d986931de105149aa248d8883e56c61ec diff --git a/sdk_container/src/third_party/portage-stable/sys-power/pm-quirks/pm-quirks-20100619.ebuild b/sdk_container/src/third_party/portage-stable/sys-power/pm-quirks/pm-quirks-20100619.ebuild deleted file mode 100644 index 15f6524c01..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/pm-quirks/pm-quirks-20100619.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/pm-quirks/pm-quirks-20100619.ebuild,v 1.7 2010/12/12 16:47:31 armin76 Exp $ - -EAPI=3 -inherit multilib - -DESCRIPTION="Video Quirks database for pm-utils" -HOMEPAGE="http://pm-utils.freedesktop.org/" -SRC_URI="http://pm-utils.freedesktop.org/releases/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86" -IUSE="" - -S=${WORKDIR} - -src_install() { - insinto /usr/$(get_libdir)/pm-utils - doins -r video-quirks || die -} diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/ChangeLog b/sdk_container/src/third_party/portage-stable/sys-power/powertop/ChangeLog deleted file mode 100644 index 3edfdedf44..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/ChangeLog +++ /dev/null @@ -1,309 +0,0 @@ -# ChangeLog for sys-power/powertop -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/ChangeLog,v 1.74 2012/12/09 20:48:24 zerochaos Exp $ - - 09 Dec 2012; Rick Farina -powertop-1.11.ebuild, - -powertop-2.0.ebuild, -powertop-2.1-r1.ebuild, -powertop-2.1.ebuild, - powertop-2.2-r1.ebuild: - fix gettext deps per bug #398977 and clean out old ebuilds - -*powertop-2.2-r1 (23 Nov 2012) - - 23 Nov 2012; Rick Farina - +files/powertop-2.2-use-package_version.patch, +powertop-2.2-r1.ebuild, - -powertop-2.2.ebuild: - fix powertop 2.2 to report proper version tag wrt bug #444466 - - 22 Nov 2012; Rick Farina powertop-2.2.ebuild: - fix bug #444370 by switching to EAPI5, there goes my cherry - -*powertop-2.2 (22 Nov 2012) - - 22 Nov 2012; Rick Farina +powertop-2.2.ebuild: - bump to 2.2 - - 22 Nov 2012; Rick Farina powertop-2.1-r1.ebuild, - powertop-9999.ebuild: - SND_HDA_POWER_SAVE deprecated in kernel 3.7.0 so we conditionalize the check - - 18 Nov 2012; Pacho Ramos metadata.xml: - Drop mobile herd as talked in gentoo-dev ML - - 20 Sep 2012; Rick Farina powertop-2.1-r1.ebuild, - powertop-9999.ebuild: - match linux_config_exists format from other ebuilds to quiet reported warnings - - 18 Sep 2012; Rick Farina powertop-2.1-r1.ebuild, - powertop-9999.ebuild: - quiet a few useless warnings and fix live ebuild - - 17 Sep 2012; Rick Farina powertop-2.1-r1.ebuild: - reorder a few things, hopefully this is safer and avoids env pollution - - 14 Sep 2012; Rick Farina powertop-2.1-r1.ebuild: - my attempt to clarify kconfig requirements, and adjust SND_HDA stuff based on - complain in bug 434824 - - 14 Sep 2012; Rick Farina powertop-2.1-r1.ebuild: - make kconfig checks non-fatal to accomodate builders who don't use powertop - - 14 Sep 2012; Rick Farina metadata.xml: - tired of seaching for powertop bugs so now I'm the maintainer - - 14 Sep 2012; Rick Farina powertop-2.1-r1.ebuild: - bug #417485 requested xset become optional for users without X - - 11 Sep 2012; Rick Farina powertop-2.1-r1.ebuild: - addressing some concerns from bug# 414803 - -*powertop-2.1-r1 (10 Sep 2012) - - 10 Sep 2012; Rick Farina +powertop-2.1-r1.ebuild: - properly check required kernel options, based on bug #414803 - - 07 Sep 2012; Sergey Popov powertop-2.1.ebuild: - Revert back src_configure logic and ncurses dependency, make it correct. - Thanks to leio for pointing on this issue - - 07 Sep 2012; Sergey Popov powertop-2.1.ebuild: - Add proper unicode flag handling. Fixes bug #415535 - - 06 Sep 2012; Rick Farina powertop-2.1.ebuild: - refactor deps a big based on feedback from hasufell. likely more things can be - moved out of depend as well - - 06 Sep 2012; Rick Farina powertop-2.1.ebuild: - address dep issues, missing pkgconfig and libnl:3 requires slot - -*powertop-2.1 (05 Sep 2012) - - 05 Sep 2012; Rick Farina +powertop-2.1.ebuild: - version bump to 2.1 - - 01 Jun 2012; Mike Frysinger powertop-2.0.ebuild: - Drop hardcoded CXXFLAGS that break things. - - 01 Jun 2012; Mike Frysinger +files/csstoh, - powertop-2.0.ebuild: - Fix cross-compiling; already sent upstream. - - 01 Jun 2012; Mike Frysinger powertop-2.0.ebuild, - powertop-9999.ebuild: - Sync keywords with newer versions. - -*powertop-2.0 (10 May 2012) - - 10 May 2012; Mike Frysinger +powertop-2.0.ebuild, - -powertop-1.97-r1.ebuild, -powertop-1.98.ebuild, powertop-9999.ebuild: - Version bump. - - 20 Apr 2012; Mike Frysinger powertop-1.98.ebuild, - powertop-9999.ebuild: - Update git URL to new home. - - 19 Apr 2012; Mike Frysinger powertop-1.98.ebuild, - +files/powertop-1.98-gcc-4.7.patch, powertop-9999.ebuild: - Fix building with gcc-4.7. - - 19 Apr 2012; Mike Frysinger powertop-1.98.ebuild, - files/powertop-1.98-build.patch, +files/powertop-1.98-build-libnl-3.patch, - powertop-9999.ebuild: - Revert incorrect libnl change (powertop works with libnl ver 1, 2, or 3), and - further clean up the build. - - 27 Oct 2011; Jeroen Roovers powertop-1.97-r1.ebuild, - powertop-1.98.ebuild: - Fix libnl dependency (bug #382471). - -*powertop-1.98 (23 Aug 2011) - - 23 Aug 2011; Mike Frysinger +powertop-1.98.ebuild, - +files/powertop-1.98-build.patch, +files/powertop-1.98-build-cc.patch, - powertop-9999.ebuild: - Version bump and merging of live/release ebuilds. - - 03 May 2011; Tomáš Chvátal powertop-9999.ebuild: - Move to git-2 and use eapi4 features more nicely. - - 15 Mar 2011; Tomáš Chvátal powertop-1.97-r1.ebuild, - powertop-9999.ebuild: - Sync live ebuild again. There is no manpage now so drop needless gunzip. - - 14 Mar 2011; Jeroen Roovers powertop-1.97-r1.ebuild: - Add more build time and run time dependencies (bug #358869). - -*powertop-1.97-r1 (14 Mar 2011) - - 14 Mar 2011; Jeroen Roovers -powertop-1.97.ebuild, - +powertop-1.97-r1.ebuild: - Respect CC, CXX, CFLAGS, add cache dir. - -*powertop-1.97 (14 Mar 2011) - - 14 Mar 2011; Tomáš Chvátal +powertop-1.97.ebuild, - powertop-9999.ebuild: - Update live ebuild to reflect reality. Add latest version with only amd64 and - x86 because it is completely different stuff. Non-maintainer commit. - - 26 Jan 2011; Thilo Bangert powertop-9999.ebuild: - fix git url (#350783) - - 13 Jan 2011; Brent Baude powertop-1.13.ebuild: - stable ppc, bug 342047 - - 23 Oct 2010; Raúl Porcel powertop-1.13.ebuild: - arm/sparc stable wrt #342047 - - 21 Oct 2010; Markos Chandras powertop-1.13.ebuild: - Stable on amd64 wrt bug #342047 - - 21 Oct 2010; Thomas Kahle powertop-1.13.ebuild: - x86 stable per bug 342047 - - 12 Sep 2010; Thilo Bangert powertop-1.13.ebuild: - add dep on pciutils (#336858) - -*powertop-1.13 (09 Aug 2010) - - 09 Aug 2010; Thilo Bangert +powertop-1.13.ebuild: - version bump (#330925) - -*powertop-9999 (28 May 2010) - - 28 May 2010; Sebastian Pipping +powertop-9999.ebuild: - Add live ebuild, permission by bangert, fixes bug #319011 - - 05 Apr 2010; Raúl Porcel powertop-1.11.ebuild: - sparc stable wrt #302349 - - 31 Mar 2010; Jonathan Callen powertop-1.11.ebuild: - Bump to EAPI=3, add prefix keywords - - 08 Mar 2010; Markus Meier powertop-1.11.ebuild: - arm stable, bug #302349 - - 10 Feb 2010; Joseph Jezak powertop-1.11.ebuild: - Marked ppc stable for bug #302349. - - 03 Feb 2010; Markos Chandras powertop-1.11.ebuild: - Stable on amd64 wrt bug #302349 - - 01 Feb 2010; Christian Faulhammer powertop-1.11.ebuild: - stable x86, bug 302349 - - 16 Oct 2009; Thilo Bangert powertop-1.9.ebuild, - powertop-1.11.ebuild: - add missing dep on gettext - - 04 Apr 2009; Gordon Malm powertop-1.7.ebuild, - powertop-1.8.ebuild, powertop-1.9.ebuild, -powertop-1.10.ebuild, - powertop-1.11.ebuild: - Remove problematic version and make repoman happy, bug #236372. - -*powertop-1.11 (01 Mar 2009) - - 01 Mar 2009; Olivier Crête +powertop-1.11.ebuild: - Version bump, bug #254678 - -*powertop-1.10 (31 Aug 2008) - - 31 Aug 2008; Peter Alfredsen +powertop-1.10.ebuild: - Bump wrt bug 226373 - - 16 Jan 2008; Ferris McCormick powertop-1.9.ebuild: - Sparc stable, Bug #202082 (although I am not sure it is meaningful on sparc, - given the description). - - 16 Dec 2007; Samuli Suominen powertop-1.9.ebuild: - amd64 stable wrt #202082 - - 14 Dec 2007; nixnut powertop-1.9.ebuild: - Stable on ppc wrt bug 202082 - - 13 Dec 2007; Christian Faulhammer powertop-1.9.ebuild: - stable x86, bug 202082 - -*powertop-1.9 (06 Nov 2007) - - 06 Nov 2007; Stefan Schweizer +powertop-1.9.ebuild: - version bump - -*powertop-1.8 (30 Aug 2007) - - 30 Aug 2007; Stefan Schweizer +powertop-1.8.ebuild: - version bump - - 16 Aug 2007; Christoph Mende powertop-1.7.ebuild: - Stable on amd64 wrt bug #188590 - - 13 Aug 2007; Gustavo Zacarias powertop-1.7.ebuild: - Stable on sparc wrt #188590 - - 12 Aug 2007; Andrej Kacian powertop-1.7.ebuild: - Stable on x86, bug #188590. - - 04 Jul 2007; Gustavo Zacarias powertop-1.7.ebuild: - Keyworded ~sparc wrt #183769 - -*powertop-1.7 (19 Jun 2007) - - 19 Jun 2007; Timothy Redaelli -powertop-1.6.ebuild, - +powertop-1.7.ebuild: - New version. - Authorized by genstef. - - 10 Jun 2007; Timothy Redaelli powertop-1.6.ebuild: - Add ~ppc keyword. - -*powertop-1.6 (09 Jun 2007) - - 09 Jun 2007; Stefan Schweizer -powertop-1.5.ebuild, - +powertop-1.6.ebuild: - version bump - - 31 May 2007; Mike Frysinger powertop-1.5.ebuild: - Remove stupid USE=unicode requirement and make sure LDFLAGS are respected. - - 29 May 2007; Stefan Schweizer powertop-1.5.ebuild: - work around portage trying to compress twice thanks Andre - in bug 180222 - -*powertop-1.5 (28 May 2007) - - 28 May 2007; Stefan Schweizer -powertop-1.4.ebuild, - +powertop-1.5.ebuild: - Version bump thanks to Kelly Price in bug 180014 - -*powertop-1.4 (28 May 2007) - - 28 May 2007; Stefan Schweizer -powertop-1.3.ebuild, - +powertop-1.4.ebuild: - version bump thanks Hijacker in irc - -*powertop-1.3 (23 May 2007) - - 23 May 2007; Stefan Schweizer -powertop-1.1.ebuild, - -powertop-1.2.ebuild, +powertop-1.3.ebuild: - version bump thanks to Lars Langhans in bug 179524 - - 15 May 2007; Saleem Abdulrasool powertop-1.2.ebuild: - Keyword ~amd64 - -*powertop-1.2 (15 May 2007) - - 15 May 2007; Mike Frysinger +powertop-1.2.ebuild: - Version bump and cleanup. - -*powertop-1.1 (13 May 2007) - - 13 May 2007; Stefan Schweizer -powertop-1.0.ebuild, - +powertop-1.1.ebuild: - Version bump thanks to Christian Merkle in bug - 178130 - -*powertop-1.0 (13 May 2007) - - 13 May 2007; Stefan Schweizer +metadata.xml, - +powertop-1.0.ebuild: - New ebuild thanks to Christian Merkle in bug - 178130 diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/Manifest b/sdk_container/src/third_party/portage-stable/sys-power/powertop/Manifest deleted file mode 100644 index a7d8c5d4ca..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/Manifest +++ /dev/null @@ -1,13 +0,0 @@ -AUX csstoh 198 SHA256 03e4300bd73e0b8da29546e79f2c94be90626c545d88c84c2c95dd04b2d94035 SHA512 321087047f82cc2001e8f85495cefd7bdc19a6ede32ac9065f72e7e7970b979bdb5e1a534f0e6070502adc18a2c3c5f509aa21c39590e10c15b293b6f231d08d WHIRLPOOL 221f3cfdc896812e86a6241999e8c9acf453f37c47fa34dd8f49b60c1191849e33b641dcaef41bb5e1f9ecf270b681dfe093d45c122c5fe1c5572245c73d0f3c -AUX powertop-1.98-build-cc.patch 704 SHA256 36ccfeec0c64f0131415238316e14fee2239d4af0a52b48c0162181f49ad9457 SHA512 90c8fa25b59ebc726faee96a7a01fe992a271f6cd0c259d59eaf9276b557d84847e1e1588f0db43098cb9b10d04766f727271df99e51cb31592c0e98b76b2793 WHIRLPOOL 0e259abbcded879ecf8f6bb951bd84190a74fe186dd34fba31e24cadf2cc5c93c558f3c506e684d95638a05cd130b8db5c344d97a24ab96e6934bedeed7c29ad -AUX powertop-1.98-build-libnl-3.patch 611 SHA256 0799362cdf6923a1a8a0c9ac61097dbaa6ffa21d5b0dd038bae44f58102e4328 SHA512 c81b029c18d192792b6ffa89e7f56e12d3c74a37338fa56ea1f7401bd7bf83353b54cbe6b53e85285a2e1627b8b92c8ea84d2bcd59f24035d4e34fef4f6ac256 WHIRLPOOL 7771eb8c61b17c730d338bee42a604e52acb6a4d7ce0b68e419a73b5acd5620cf0771d3885c877bb76de20a4388b83b96afe2517e24e689c7143044eebcd1925 -AUX powertop-1.98-build.patch 2266 SHA256 8b76948494deb0bece80e7300ec8f84c2fab7bf1d79838faa3e52478142ebfeb SHA512 3f356e8526c337756bb803c7a3c695bda0f6eb0da686d53c0d627341bf443be1f925b96a56a9b066512e7f48f1fccb1c9c4db9033100bc9794626744fe74f696 WHIRLPOOL 555abbc36d90c26b46fbb9236895946e61752350ffcf3b2ec8bc53db6babcdcfe2ef8a2841212e7286e23395a63c9c540b723c3a57663c533692494bdafd302b -AUX powertop-1.98-gcc-4.7.patch 3720 SHA256 44335480e32fbd591e5fe45cc8f47c45ad45fcf656f371b05e6d2751dd248549 SHA512 98b3f0155d517cadc27bd32e87777ef74278c38d019ffdfff00eb68174ba846ea1899b1bfbf4841a843114d0978dde8a880528c7ce8486cb1132d1d0b0f3ab6b WHIRLPOOL 4c45cdaf5098c2093df41eec6f4e719ffea490ca870e049c7715a78c37fe932250cb8ce73e0d1c98e3194f1e786174596c98a6b21dcf648de1ba4798686f224d -AUX powertop-2.2-use-package_version.patch 740 SHA256 40258728ae75fb0ba425bd1295ce88784ca03bde59ef52aa114a2269020f1cd8 SHA512 196a866d13999103a6c0d7b5e1b03ce0a11ce1c3a7550346b45bcbb5597b1080b0b9fbd7b18b5d66e2b9d140d5e7ec460cd8be4749bc52c7b904287a0e621999 WHIRLPOOL 715823eb0e936764ebfc5ad6c4bbc7b818f54c310081dd3112da2640923046582b4eaec8b8c0f85891adcf147b04fb25150d1322099664b75a091f39b3c729b5 -DIST powertop-1.13.tar.gz 104675 SHA256 2bc866089496877dd26d2d316ad5763ab8ecb5e28aefba44bc5d355dcdc58d98 SHA512 0c22a903da64798d987492336d57260372e03eab067ad94cf30b7640e9ee05e759a2fe9fa48fbdc35404cd2782b6b29d705e11e68452653b08f7f9df1a52be44 WHIRLPOOL 5ba44b84f49609f67c32563f75e20f6576c21a93fcb1ca99ebfe064475397602aa0f0fb9575e05b5a0290983791e7cf6ebae0139b39158b962e4b51027a6f5aa -DIST powertop-2.2.tar.gz 617805 SHA256 1339e1bc3b9675c71dd70fed1132abf215d01469b348d23be7344bc65557b028 SHA512 f57586e100ca36a6787cd9a3794a8f057fffe7bd9decaa8cf04b9d81300bb1da7c2d1f7eab91e3c0faa9616b7d47007b6b796dcd777bde5aec53dbe3a7ed4bec WHIRLPOOL 62aae460529032d30174f51e1cd22d3986a197f6b03460184a4bd9b199c2f08a031e5f7c8732d552f479548c90cba567d93b95629d8ca1e668a5dd8aaa5c8d98 -EBUILD powertop-1.13.ebuild 1121 SHA256 ad10c47049432ef0f9047eee7c5c6db033843f699cd2003c5b087169a296a030 SHA512 d87e4874baf0163ddef11ab5c2984ca276e98d551caaf2760e1054cde03e60248ee17ed143a0dcbca23f4a591b883c3b2e46fd1c7f773ab78e1fcb117340232e WHIRLPOOL a372742bb77b08e8b208342ca14e33f1a2d2d6287610613aebb7ec73ae76714448fd4baa39ec84f1f75658fcbd34ec42e058a1dc181e04c68c1d901ef0a78a2f -EBUILD powertop-2.2-r1.ebuild 3611 SHA256 6fe87328a9cdd1a36aa96a5670ffc09a17c0e885f54bbc09ef36613a17e06490 SHA512 ac7c40d0f6297df5c5f3b2142fdddf97264112769a55a08359663dffb87b99112a8c4177cade94a50792c5e74205501ddb9677bf853b8c65ad6db7b6c7b94375 WHIRLPOOL b92664bdc3d9458548762192c6e87ce28c18a81bc887a2661fdeefdd65fd6cd735c38a29a384d092a7de0b7c045bfffe796d4322ce6c5c11dc06abf298b1647d -EBUILD powertop-9999.ebuild 3423 SHA256 daa3420ab6ef011b084486dd9e1ec6aea837b8ef9c5cd6c331d881ad4a30d1fc SHA512 e2075b5c8f8465c59fbeacf7517991c8ece4325ae7afbce9c612b992084d70a81d33d865e3145f5407239b4fbfbd8d583a94d5c21ba10d743cb0a6d4b6fc9df4 WHIRLPOOL d000d6c661171660a4bc9683b3a8db493d918bf500ffc0b39e914c6fceb6eef880fa4e4c76ca3a3902abf5b1e193020ad95c1ea766e4b1606b5499b20741ccbe -MISC ChangeLog 11050 SHA256 2b88d8cd8d4584a96dc03ed82b66969fc1e4234214051bc93622e7e24456514a SHA512 52bb36f90b683c7d96f4ff40d0a54544be42b70b9d2ed7c2d22a278290517b93ac87f4d4d19304f5f87d6da35e39dcc31a742a366a4d6da4175790951a266ee7 WHIRLPOOL 3bb02d74acd888c4b083478c9d6fd0488ee167b0d60c9928851cc9c871461dfc329c862a5a034ed460c6b8c30b66fc2bd03ec9527a6e5cfc89dff75d2d3c4036 -MISC metadata.xml 239 SHA256 24d3268dbe675a5446456b139438c1bd59bd6190077399a4a715805ef28da3cc SHA512 2fa025f3394a125b4a92ee5fdb579bcfe74755f4e4306d90979bbb04c5239adfd2fdf9242ee7623642909597100ca88a6f6b7578a24512d976930fad186e10f9 WHIRLPOOL ab1b126e1a8170eba68412f8704d38ac7a479cb80a461cb2466ad87966ab8f78ddc04ce66341e5056df8c3aa21e3cf2c530a1f3236461bb502b91842089b49bb diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/csstoh b/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/csstoh deleted file mode 100644 index 51d1ec1372..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/csstoh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -in=$1 -out=$2 - -( -cat < "${out}" diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build-cc.patch b/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build-cc.patch deleted file mode 100644 index 70beb81db3..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build-cc.patch +++ /dev/null @@ -1,28 +0,0 @@ -From e2a8efc2d349880833215ccbe9ac6cb80cdfe5d0 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Tue, 23 Aug 2011 18:03:38 -0400 -Subject: [PATCH] allow control over the build compiler - -Signed-off-by: Mike Frysinger ---- - Makefile | 3 ++- - 1 files changed, 2 insertions(+), 1 deletions(-) - -diff --git a/Makefile b/Makefile -index f637bfe..75e6e63 100644 ---- a/Makefile -+++ b/Makefile -@@ -80,8 +80,9 @@ install: powertop - @(cd po/ && env LOCALESDIR=$(LOCALESDIR) DESTDIR=$(DESTDIR) $(MAKE) $@) - - -+BUILD_CC ?= gcc - csstoh: csstoh.c -- gcc -o csstoh csstoh.c -+ $(BUILD_CC) -o csstoh csstoh.c - - css.h: csstoh powertop.css - ./csstoh powertop.css css.h --- -1.7.6 - diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build-libnl-3.patch b/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build-libnl-3.patch deleted file mode 100644 index bbe2b1c857..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build-libnl-3.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 21dcbd03507632c987e8c68b3efcf7b4a5d51147 Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Wed, 18 Apr 2012 21:11:22 -0400 -Subject: [PATCH] use right libnl pkg-config name - -Signed-off-by: Mike Frysinger ---- - Makefile | 3 +-- - 1 files changed, 1 insertions(+), 2 deletions(-) - -diff --git a/Makefile b/Makefile -index 94ed2be..8a90b85 100644 ---- a/Makefile -+++ b/Makefile -@@ -39,8 +39,7 @@ endif - - ifeq ($(NL3FOUND),Y) - CPPFLAGS += -DCONFIG_LIBNL20 --LIBS += -lnl-genl --NLLIBNAME = libnl-3.0 -+NLLIBNAME = libnl-genl-3.0 - endif - - ifeq ($(NLLIBNAME),) --- -1.7.8.5 - diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build.patch b/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build.patch deleted file mode 100644 index 8f130fdace..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-build.patch +++ /dev/null @@ -1,80 +0,0 @@ -From cafa47147fdc503103cda1e67e736ab95051e44a Mon Sep 17 00:00:00 2001 -From: Mike Frysinger -Date: Tue, 23 Aug 2011 18:01:36 -0400 -Subject: [PATCH] use right flag names - -CFLAGS for the C compiler, CXXFLAGS for the C++ compiler, and -CPPFLAGS for preprocessor flags. - -Signed-off-by: Mike Frysinger ---- - Makefile | 20 ++++++++++++-------- - 1 files changed, 12 insertions(+), 8 deletions(-) - -diff --git a/Makefile b/Makefile -index b0b6cb7..bf9b79a 100644 ---- a/Makefile -+++ b/Makefile -@@ -2,9 +2,13 @@ all: powertop po/powertop.pot - - VERSION := 1.98 - --CFLAGS += -Wall -O2 -g -fno-omit-frame-pointer -fstack-protector -Wshadow -Wformat -D_FORTIFY_SOURCE=2 --CPPFLAGS += -Wall -O2 -g -fno-omit-frame-pointer --CXXFLAGS += -Wall -O2 -g -fno-omit-frame-pointer -fstack-protector -Wshadow -Wformat -D_FORTIFY_SOURCE=2 -+WFLAGS = -Wall -Wshadow -Wformat -+COMMON_FLAGS = -O2 -g -fno-omit-frame-pointer -fstack-protector -+CFLAGS ?= $(COMMON_FLAGS) -+CFLAGS += $(WFLAGS) -+CXXFLAGS ?= $(COMMON_FLAGS) -+CXXFLAGS += $(WFLAGS) -+CPPFLAGS += -D_FORTIFY_SOURCE=2 - PKG_CONFIG ?= pkg-config - - OBJS := lib.o main.o display.o html.o devlist.o -@@ -31,13 +35,13 @@ NLLIBNAME = libnl-1 - endif - - ifeq ($(NL2FOUND),Y) --CFLAGS += -DCONFIG_LIBNL20 -+CPPFLAGS += -DCONFIG_LIBNL20 - LIBS += -lnl-genl - NLLIBNAME = libnl-2.0 - endif - - ifeq ($(NL3FOUND),Y) --CFLAGS += -DCONFIG_LIBNL20 -+CPPFLAGS += -DCONFIG_LIBNL20 - LIBS += -lnl-genl - NLLIBNAME = libnl-3.0 - endif -@@ -47,7 +51,7 @@ $(error Cannot find development files for any supported version of libnl) - endif - - LIBS += $(shell $(PKG_CONFIG) --libs $(NLLIBNAME)) --CFLAGS += $(shell $(PKG_CONFIG) --cflags $(NLLIBNAME)) -+CPPFLAGS += $(shell $(PKG_CONFIG) --cflags $(NLLIBNAME)) - - - -@@ -70,7 +74,7 @@ clean: - rm -f *.o *~ powertop DEADJOE core.* */*.o */*~ csstoh css.h - - powertop: $(OBJS) $(HEADERS) -- $(CXX) $(OBJS) $(LIBS) -o powertop -+ $(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o powertop - @(cd po/ && $(MAKE)) - - install: powertop -@@ -90,7 +94,7 @@ css.h: csstoh powertop.css - %.o: %.cpp lib.h css.h Makefile - @echo " CC $<" - @[ -x /usr/bin/cppcheck ] && /usr/bin/cppcheck -q $< || : -- @$(CC) $(CFLAGS) -c -o $@ $< -+ @$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $< - - - uptrans: --- -1.7.8.5 - diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-gcc-4.7.patch b/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-gcc-4.7.patch deleted file mode 100644 index 78d2d70e5e..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-1.98-gcc-4.7.patch +++ /dev/null @@ -1,151 +0,0 @@ -From b86877fb2f24563d74cd3faf7eceffcc8fa59299 Mon Sep 17 00:00:00 2001 -From: Han Shen -Date: Thu, 19 Apr 2012 12:14:08 -0400 -Subject: [PATCH] include unistd.h when necessary - -Older versions of gcc (pre-4.7) would implicitly include unistd.h in some -of its internal headers. With newer versions though, that is no longer -the case, so building powertop breaks with files that use things from the -unistd.h header but don't include it explicitly. - -Signed-off-by: Han Shen -Signed-off-by: Mike Frysinger ---- - cpu/intel_cpus.cpp | 1 + - devices/alsa.cpp | 2 +- - devices/device.cpp | 1 + - devices/i915-gpu.cpp | 2 +- - devices/network.cpp | 1 + - devices/rfkill.cpp | 2 +- - devices/thinkpad-fan.cpp | 1 + - devices/thinkpad-light.cpp | 1 + - html.cpp | 1 + - main.cpp | 1 + - 10 files changed, 10 insertions(+), 3 deletions(-) - -diff --git a/cpu/intel_cpus.cpp b/cpu/intel_cpus.cpp -index f42f3b4..bbbd460 100644 ---- a/cpu/intel_cpus.cpp -+++ b/cpu/intel_cpus.cpp -@@ -34,6 +34,7 @@ - #include - #include - #include -+#include - - #include "../lib.h" - #include "../parameters/parameters.h" -diff --git a/devices/alsa.cpp b/devices/alsa.cpp -index b0bcd3f..5100c36 100644 ---- a/devices/alsa.cpp -+++ b/devices/alsa.cpp -@@ -39,7 +39,7 @@ using namespace std; - #include "../devlist.h" - - #include -- -+#include - - alsa::alsa(char *_name, char *path): device() - { -diff --git a/devices/device.cpp b/devices/device.cpp -index c38b96c..9ce4509 100644 ---- a/devices/device.cpp -+++ b/devices/device.cpp -@@ -29,6 +29,7 @@ - #include - #include - #include -+#include - - using namespace std; - -diff --git a/devices/i915-gpu.cpp b/devices/i915-gpu.cpp -index a9dc899..ca2dad1 100644 ---- a/devices/i915-gpu.cpp -+++ b/devices/i915-gpu.cpp -@@ -28,7 +28,7 @@ - #include - #include - #include -- -+#include - - using namespace std; - -diff --git a/devices/network.cpp b/devices/network.cpp -index 5f3ddf2..72c766d 100644 ---- a/devices/network.cpp -+++ b/devices/network.cpp -@@ -33,6 +33,7 @@ - #include - #include - #include -+#include - - #include - -diff --git a/devices/rfkill.cpp b/devices/rfkill.cpp -index 5bf40c4..33a8fcd 100644 ---- a/devices/rfkill.cpp -+++ b/devices/rfkill.cpp -@@ -29,7 +29,7 @@ - #include - #include - #include -- -+#include - - using namespace std; - -diff --git a/devices/thinkpad-fan.cpp b/devices/thinkpad-fan.cpp -index 4ac3d11..8750c6e 100644 ---- a/devices/thinkpad-fan.cpp -+++ b/devices/thinkpad-fan.cpp -@@ -29,6 +29,7 @@ - #include - #include - #include -+#include - - #include "../lib.h" - -diff --git a/devices/thinkpad-light.cpp b/devices/thinkpad-light.cpp -index ba4c553..7e91637 100644 ---- a/devices/thinkpad-light.cpp -+++ b/devices/thinkpad-light.cpp -@@ -29,6 +29,7 @@ - #include - #include - #include -+#include - - #include "../lib.h" - -diff --git a/html.cpp b/html.cpp -index 0a4db2e..8260ed5 100644 ---- a/html.cpp -+++ b/html.cpp -@@ -29,6 +29,7 @@ - #include - #include - #include -+#include - - #include "css.h" - #include "lib.h" -diff --git a/main.cpp b/main.cpp -index 45a126e..0bbb4aa 100644 ---- a/main.cpp -+++ b/main.cpp -@@ -33,6 +33,7 @@ - #include - #include - #include -+#include - - #include "cpu/cpu.h" - #include "process/process.h" --- -1.7.8.5 - diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-2.2-use-package_version.patch b/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-2.2-use-package_version.patch deleted file mode 100644 index f4ec6c3ed0..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/files/powertop-2.2-use-package_version.patch +++ /dev/null @@ -1,26 +0,0 @@ -It was missed to update POWERTOP_VERSION macro so that the -new v2.2 release still shows v2.1 string on the header of -ncurses window. Convert to use PACKAGE_VERSION macro which -set by autotools to the AC_INIT version so that it cannot -be missed anymore. - -Signed-off-by: Namhyung Kim ---- - src/lib.h | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/lib.h b/src/lib.h -index 8cf4632..209421a 100644 ---- a/src/lib.h -+++ b/src/lib.h -@@ -35,8 +35,8 @@ - - #define _(STRING) gettext(STRING) - --#define POWERTOP_VERSION "v2.1" --#define POWERTOP_SHORT_VERSION "2.1" -+#define POWERTOP_VERSION "v"PACKAGE_VERSION -+#define POWERTOP_SHORT_VERSION PACKAGE_VERSION - - - extern int get_max_cpu(void); diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/metadata.xml b/sdk_container/src/third_party/portage-stable/sys-power/powertop/metadata.xml deleted file mode 100644 index 9cca7a80e6..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - zerochaos@gentoo.org - Rick Farina - - diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-1.13.ebuild b/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-1.13.ebuild deleted file mode 100644 index 28bd9d4707..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-1.13.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-1.13.ebuild,v 1.6 2011/01/13 22:36:51 ranger Exp $ - -EAPI=3 - -inherit toolchain-funcs eutils - -DESCRIPTION="tool that helps you find what software is using the most power" -HOMEPAGE="http://www.lesswatts.org/projects/powertop/" -SRC_URI="http://www.lesswatts.org/projects/powertop/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ppc sparc x86 ~amd64-linux ~x86-linux" -IUSE="unicode" - -DEPEND="sys-libs/ncurses[unicode?] - sys-devel/gettext" -RDEPEND="${DEPEND} - sys-apps/pciutils" - -src_prepare() { - sed -i '/${CFLAGS}/s:$: ${LDFLAGS}:' Makefile - use unicode || sed -i 's:-lncursesw:-lncurses:' Makefile -} - -src_configure() { - tc-export CC -} - -src_install() { - emake install DESTDIR="${ED}" || die - dodoc Changelog README - gunzip "${ED}"/usr/share/man/man1/powertop.1.gz -} - -pkg_postinst() { - echo - einfo "For PowerTOP to work best, use a Linux kernel with the" - einfo "tickless idle (NO_HZ) feature enabled (version 2.6.21 or later)" - echo -} diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-2.2-r1.ebuild b/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-2.2-r1.ebuild deleted file mode 100644 index 9443d3c3fc..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-2.2-r1.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-2.2-r1.ebuild,v 1.2 2012/12/09 20:48:24 zerochaos Exp $ - -EAPI="5" - -inherit eutils linux-info -if [ ${PV} == "9999" ] ; then - EGIT_REPO_URI="git://github.com/fenrus75/powertop.git" - inherit git-2 autotools - SRC_URI="" -else - SRC_URI="https://01.org/powertop/sites/default/files/downloads/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -DESCRIPTION="tool that helps you find what software is using the most power" -HOMEPAGE="https://01.org/powertop/ http://www.lesswatts.org/projects/powertop/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="unicode X" - -COMMON_DEPEND=" - dev-libs/libnl:3 - sys-apps/pciutils - sys-libs/ncurses[unicode?] -" - -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig - sys-devel/gettext -" -RDEPEND=" - ${COMMON_DEPEND} - X? ( x11-apps/xset ) - virtual/libintl -" - -DOCS=( TODO README ) - -pkg_setup() { - if linux_config_exists; then - CONFIG_CHECK=" - ~X86_MSR - ~DEBUG_FS - ~PERF_EVENTS - ~TRACEPOINTS - ~NO_HZ - ~HIGH_RES_TIMERS - ~HPET_TIMER - ~CPU_FREQ_STAT - ~CPU_FREQ_GOV_ONDEMAND - ~USB_SUSPEND - ~FTRACE - ~BLK_DEV_IO_TRACE - ~TIMER_STATS - ~EVENT_POWER_TRACING_DEPRECATED - ~TRACING - " - if kernel_is -lt 3 7 0; then - linux_chkconfig_present SND_HDA_INTEL && CONFIG_CHECK+="~SND_HDA_POWER_SAVE" - linux_chkconfig_present SND_HDA_INTEL && ERROR_KERNEL_SND_HDA_POWER_SAVE="SND_HDA_POWER_SAVE should be enabled in the kernel for full powertop function" - fi - ERROR_KERNEL_X86_MSR="X86_MSR is not enabled in the kernel, you almost certainly need it" - ERROR_KERNEL_DEBUG_FS="DEBUG_FS is not enabled in the kernel, you almost certainly need it" - ERROR_KERNEL_PERF_EVENTS="PERF_EVENTS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_TRACEPOINTS="TRACEPOINTS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_NO_HZ="NO_HZ should be enabled in the kernel for full powertop function" - ERROR_KERNEL_HIGH_RES_TIMERS="HIGH_RES_TIMERS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function" - ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function" - ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function" - ERROR_KERNEL_USB_SUSPEND="USB_SUSPEND should be enabled in the kernel for full powertop function" - ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE" - ERROR_KERNEL_BLK_DEV_IO_TRACE="BLK_DEV_IO_TRACE needs to be turned on to enable TIMER_STATS, TRACING and EVENT_POWER_TRACING_DEPRECATED" - ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function" - ERROR_KERNEL_TRACING="TRACING should be enabled in the kernel for full powertop function" - linux-info_pkg_setup - else - ewarn "unable to find kernel config, all checks disabled" - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-use-package_version.patch - if [ ${PV} == "9999" ] ; then - eautoreconf - fi -} - -src_configure() { - export ac_cv_search_delwin=$(usex unicode -lncursesw -lncurses) - default -} - -src_compile() { - #the clean is needed because the 2.1 tarball had object files in src/tuning/ - emake clean - emake -} - -src_install() { - default - keepdir /var/cache/powertop -} diff --git a/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-9999.ebuild b/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-9999.ebuild deleted file mode 100644 index ba7570238b..0000000000 --- a/sdk_container/src/third_party/portage-stable/sys-power/powertop/powertop-9999.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/powertop/powertop-9999.ebuild,v 1.16 2012/11/22 15:00:37 zerochaos Exp $ - -EAPI="4" - -inherit eutils linux-info -if [ ${PV} == "9999" ] ; then - EGIT_REPO_URI="git://github.com/fenrus75/powertop.git" - inherit git-2 autotools - SRC_URI="" -else - SRC_URI="https://01.org/powertop/sites/default/files/downloads/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" -fi - -DESCRIPTION="tool that helps you find what software is using the most power" -HOMEPAGE="https://01.org/powertop/ http://www.lesswatts.org/projects/powertop/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="unicode X" - -COMMON_DEPEND=" - dev-libs/libnl:3 - sys-apps/pciutils - sys-devel/gettext - sys-libs/ncurses[unicode?] -" - -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig -" -RDEPEND=" - ${COMMON_DEPEND} - X? ( x11-apps/xset ) -" - -DOCS=( TODO README ) - -pkg_setup() { - if linux_config_exists; then - CONFIG_CHECK=" - ~X86_MSR - ~DEBUG_FS - ~PERF_EVENTS - ~TRACEPOINTS - ~NO_HZ - ~HIGH_RES_TIMERS - ~HPET_TIMER - ~CPU_FREQ_STAT - ~CPU_FREQ_GOV_ONDEMAND - ~USB_SUSPEND - ~FTRACE - ~BLK_DEV_IO_TRACE - ~TIMER_STATS - ~EVENT_POWER_TRACING_DEPRECATED - ~TRACING - " - if kernel_is -lt 3 7 0; then - linux_chkconfig_present SND_HDA_INTEL && CONFIG_CHECK+="~SND_HDA_POWER_SAVE" - linux_chkconfig_present SND_HDA_INTEL && ERROR_KERNEL_SND_HDA_POWER_SAVE="SND_HDA_POWER_SAVE should be enabled in the kernel for full powertop function" - fi - ERROR_KERNEL_X86_MSR="X86_MSR is not enabled in the kernel, you almost certainly need it" - ERROR_KERNEL_DEBUG_FS="DEBUG_FS is not enabled in the kernel, you almost certainly need it" - ERROR_KERNEL_PERF_EVENTS="PERF_EVENTS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_TRACEPOINTS="TRACEPOINTS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_NO_HZ="NO_HZ should be enabled in the kernel for full powertop function" - ERROR_KERNEL_HIGH_RES_TIMERS="HIGH_RES_TIMERS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_HPET_TIMER="HPET_TIMER should be enabled in the kernel for full powertop function" - ERROR_KERNEL_CPU_FREQ_STAT="CPU_FREQ_STAT should be enabled in the kernel for full powertop function" - ERROR_KERNEL_CPU_FREQ_GOV_ONDEMAND="CPU_FREQ_GOV_ONDEMAND should be enabled in the kernel for full powertop function" - ERROR_KERNEL_USB_SUSPEND="USB_SUSPEND should be enabled in the kernel for full powertop function" - ERROR_KERNEL_FTRACE="FTRACE needs to be turned on to enable BLK_DEV_IO_TRACE" - ERROR_KERNEL_BLK_DEV_IO_TRACE="BLK_DEV_IO_TRACE needs to be turned on to enable TIMER_STATS, TRACING and EVENT_POWER_TRACING_DEPRECATED" - ERROR_KERNEL_TIMER_STATS="TIMER_STATS should be enabled in the kernel for full powertop function" - ERROR_KERNEL_EVENT_POWER_TRACING_DEPRECATED="EVENT_POWER_TRACING_DEPRECATED should be enabled in the kernel for full powertop function" - ERROR_KERNEL_TRACING="TRACING should be enabled in the kernel for full powertop function" - linux-info_pkg_setup - else - ewarn "unable to find kernel config, all checks disabled" - fi -} - -src_prepare() { - if [ ${PV} == "9999" ] ; then - eautoreconf - fi -} - -src_configure() { - export ac_cv_search_delwin=$(usex unicode -lncursesw -lncurses) - default -} - -src_install() { - default - keepdir /var/cache/powertop -}