diff options
author | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-19 17:55:18 +0000 |
---|---|---|
committer | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-19 17:55:18 +0000 |
commit | 7cf9f26e38ac6c5ab7d539bee5449a0e7bf3ec3f (patch) | |
tree | 748fe1004f872681d77d74a075c506db10833059 /media-libs/mediastreamer/files | |
parent | IO-Compress replaces Compress-Zlib (diff) | |
download | gentoo-2-7cf9f26e38ac6c5ab7d539bee5449a0e7bf3ec3f.tar.gz gentoo-2-7cf9f26e38ac6c5ab7d539bee5449a0e7bf3ec3f.tar.bz2 gentoo-2-7cf9f26e38ac6c5ab7d539bee5449a0e7bf3ec3f.zip |
removing old ebuilds and patches
(Portage version: 13823-svn/cvs/Linux ppc)
Diffstat (limited to 'media-libs/mediastreamer/files')
-rw-r--r-- | media-libs/mediastreamer/files/mediastreamer-2.2.3-arts.patch | 32 | ||||
-rw-r--r-- | media-libs/mediastreamer/files/mediastreamer-2.2.3-autodeps.patch | 139 |
2 files changed, 0 insertions, 171 deletions
diff --git a/media-libs/mediastreamer/files/mediastreamer-2.2.3-arts.patch b/media-libs/mediastreamer/files/mediastreamer-2.2.3-arts.patch deleted file mode 100644 index fc5188912702..000000000000 --- a/media-libs/mediastreamer/files/mediastreamer-2.2.3-arts.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- configure.ac.old 2009-04-24 12:06:10.000000000 -0400 -+++ configure.ac 2009-04-24 12:12:35.000000000 -0400 -@@ -210,15 +210,11 @@ - ],[ - dnl Old detection - if test x$artsc = xtrue ; then -- AC_CHECK_HEADERS(kde/artsc/artsc.h, -- [ AC_CHECK_LIB(artsc,arts_init, -- [ ARTS_LIBS="-lartsc" -- arts_enabled=true -- ]) -- ] -- ) -+ MS_CHECK_DEP([ARTS],[ARTS],[/usr/kde/3.5/include],[/usr/kde/3.5/lib],[artsc/artsc.h],[artsc],[arts_init]) -+ if test "$ARTS_found" = "yes"; then -+ arts_enabled=true -+ fi - fi -- AC_SUBST(ARTS_LIBS) - ]) - fi - ---- src/Makefile.am.old 2009-04-22 23:09:57.000000000 -0400 -+++ src/Makefile.am 2009-04-22 23:10:06.000000000 -0400 -@@ -126,6 +126,7 @@ - $(ORTP_CFLAGS) \ - $(SPEEX_CFLAGS) \ - $(GSM_CFLAGS) \ -+ $(ARTS_CFLAGS) \ - $(STRICT_OPTIONS) - - if BUILD_VIDEO diff --git a/media-libs/mediastreamer/files/mediastreamer-2.2.3-autodeps.patch b/media-libs/mediastreamer/files/mediastreamer-2.2.3-autodeps.patch deleted file mode 100644 index 92ea389676e8..000000000000 --- a/media-libs/mediastreamer/files/mediastreamer-2.2.3-autodeps.patch +++ /dev/null @@ -1,139 +0,0 @@ ---- configure.ac.old 2009-04-22 23:01:49.000000000 -0400 -+++ configure.ac 2009-04-24 12:06:10.000000000 -0400 -@@ -146,6 +146,15 @@ - - found_sound=no - -+AC_ARG_ENABLE(oss, -+ [ --enable-oss Disable oss support], -+ [case "${enableval}" in -+ yes) oss=true ;; -+ no) oss=false ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-oss) ;; -+ esac],[oss=true]) -+ -+if "$oss" = "true"; then - AC_CHECK_HEADERS(soundcard.h sys/soundcard.h machine/soundcard.h sys/audio.h) - if test "${ac_cv_header_sys_soundcard_h}" = "yes" || \ - test "${ac_cv_header_soundcard_h}" = "yes" || \ -@@ -153,6 +162,7 @@ - test "${ac_cv_header_machine_soundcard_h}" = "yes"; then - found_sound=yes - fi -+fi - - AM_CONDITIONAL(BUILD_OSS, test x$found_sound = xyes) - -@@ -274,6 +284,16 @@ - - AM_CONDITIONAL(BUILD_MACAQSND, test x$macaqsnd_enabled = xtrue) - -+AC_ARG_ENABLE(jack, -+ [ --disable-jack Disable jack support], -+ [case "${enableval}" in -+ yes) jack=true ;; -+ no) jack=false ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-jack) ;; -+ esac],[jack=true]) -+ -+if test x$jack = xtrue; then -+ - dnl Check for samplerate libraries - dnl Check for jack libraries (sound output plugin) - PKG_CHECK_MODULES(JACK,jack >= 0.15.0, -@@ -300,6 +320,8 @@ - AC_SUBST(JACK_CFLAGS) - AC_SUBST(JACK_LIBS) - -+fi -+ - if test "$found_sound" = "no"; then - AC_MSG_ERROR([Could not find a support sound driver API]) - fi -@@ -309,6 +331,16 @@ - dnl check for various codecs libraries - dnl ************************************* - -+AC_ARG_ENABLE(speex, -+ [ --disable-speex Disable speex support], -+ [case "${enableval}" in -+ yes) speex=true ;; -+ no) speex=false ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-speex) ;; -+ esac],[speex=true]) -+ -+if test x$speex = xtrue; then -+ - dnl check for installed version of speex - PKG_CHECK_MODULES(SPEEX, speex >= 1.1.12, - [ AC_DEFINE(HAVE_SPEEX_NOISE,1,[tells whether the noise arg of speex_echo_cancel can be used]) ], -@@ -322,11 +354,26 @@ - [AC_MSG_NOTICE([No speexdsp library found.]) - ] - ) -+else -+SPEEX_CFLAGS="-DDISABLE_SPEEX" -+fi -+ - AC_SUBST(SPEEX_CFLAGS) - AC_SUBST(SPEEX_LIBS) -+ - AM_CONDITIONAL(BUILD_SPEEX, test x$build_speex = xyes ) - AM_CONDITIONAL(BUILD_RESAMPLE, test x$build_resample = xyes ) - -+AC_ARG_ENABLE(gsm, -+ [ --disable-gsm Disable gsm support], -+ [case "${enableval}" in -+ yes) gsm=true ;; -+ no) gsm=false ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-gsm) ;; -+ esac],[gsm=true]) -+ -+if test x$gsm = xtrue; then -+ - dnl check for gsm - build_gsm=no - AC_ARG_WITH( gsm, -@@ -343,6 +390,9 @@ - else - build_gsm=no - fi -+ -+fi -+ - AM_CONDITIONAL(BUILD_GSM, test x$build_gsm = xyes ) - - MS_CHECK_VIDEO ---- acinclude.m4.old 2009-04-22 22:09:20.000000000 -0400 -+++ acinclude.m4 2009-04-23 14:59:39.000000000 -0400 -@@ -108,9 +108,30 @@ - fi - fi - -+ AC_ARG_ENABLE(theora, -+ [ --disable-theora Disable theora support], -+ [case "${enableval}" in -+ yes) theora=true ;; -+ no) theora=false ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-theora) ;; -+ esac],[theora=true]) -+ -+ if test x$theora = xtrue; then - PKG_CHECK_MODULES(THEORA, [theora >= 1.0alpha7 ], [have_theora=yes], - [have_theora=no]) -+ fi -+ -+ AC_ARG_ENABLE(x11, -+ [ --disable-x11 Disable X11 support], -+ [case "${enableval}" in -+ yes) enable_x11=true ;; -+ no) enable_x11=false ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --disable-x11) ;; -+ esac],[enable_x11=true]) -+ -+ if test "$enable_x11" = "true"; then - AC_CHECK_HEADERS(X11/Xlib.h) -+ fi - - VIDEO_CFLAGS=" $FFMPEG_CFLAGS -DVIDEO_ENABLED" - VIDEO_LIBS=" $FFMPEG_LIBS $SWSCALE_LIBS" |