summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2005-03-16 11:56:02 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2005-03-16 11:56:02 +0000
commit0c3efbc5827e2e0c3dee9fe6e7277df04c8121f9 (patch)
tree2ee958917e420b90b3807cbde45a3ece83851663 /media-libs
parentExclude the gcc4 patch if we're not using gcc4 (diff)
downloadhistorical-0c3efbc5827e2e0c3dee9fe6e7277df04c8121f9.tar.gz
historical-0c3efbc5827e2e0c3dee9fe6e7277df04c8121f9.tar.bz2
historical-0c3efbc5827e2e0c3dee9fe6e7277df04c8121f9.zip
Removing old versions.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/alsa-lib/ChangeLog7
-rw-r--r--media-libs/alsa-lib/alsa-lib-1.0.5-r3.ebuild73
-rw-r--r--media-libs/alsa-lib/alsa-lib-1.0.5.ebuild73
-rw-r--r--media-libs/alsa-lib/alsa-lib-1.0.6.ebuild78
-rw-r--r--media-libs/alsa-lib/alsa-lib-1.0.8_rc1.ebuild63
-rw-r--r--media-libs/alsa-lib/files/digest-alsa-lib-1.0.51
-rw-r--r--media-libs/alsa-lib/files/digest-alsa-lib-1.0.5-r31
-rw-r--r--media-libs/alsa-lib/files/digest-alsa-lib-1.0.61
-rw-r--r--media-libs/alsa-lib/files/digest-alsa-lib-1.0.8_rc11
-rw-r--r--media-libs/alsa-oss/ChangeLog6
-rw-r--r--media-libs/alsa-oss/alsa-oss-1.0.6.ebuild23
-rw-r--r--media-libs/alsa-oss/files/digest-alsa-oss-1.0.61
12 files changed, 11 insertions, 317 deletions
diff --git a/media-libs/alsa-lib/ChangeLog b/media-libs/alsa-lib/ChangeLog
index 67243f2d4c25..3c88ea48f51d 100644
--- a/media-libs/alsa-lib/ChangeLog
+++ b/media-libs/alsa-lib/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.105 2005/03/16 06:36:15 chriswhite Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.106 2005/03/16 11:53:52 eradicator Exp $
+
+ 16 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
+ -alsa-lib-1.0.5.ebuild, -alsa-lib-1.0.5-r3.ebuild, -alsa-lib-1.0.6.ebuild,
+ -alsa-lib-1.0.8_rc1.ebuild:
+ Removing old versions.
16 Mar 2005; Chris White <chriswhite@gentoo.org>
+files/alsa-lib-mixer.patch, alsa-lib-1.0.8.ebuild,
diff --git a/media-libs/alsa-lib/alsa-lib-1.0.5-r3.ebuild b/media-libs/alsa-lib/alsa-lib-1.0.5-r3.ebuild
deleted file mode 100644
index 785c6e04eb20..000000000000
--- a/media-libs/alsa-lib/alsa-lib-1.0.5-r3.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.5-r3.ebuild,v 1.4 2005/01/02 06:24:55 eradicator Exp $
-
-IUSE="static jack"
-
-inherit libtool
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
-
-SLOT="0"
-KEYWORDS="x86 ~ppc ~alpha amd64 -sparc ~ia64 ~ppc64 hppa"
-LICENSE="GPL-2 LGPL-2.1"
-
-RDEPEND="virtual/alsa
- >=media-sound/alsa-headers-1.0.5a"
-
-DEPEND=">=sys-devel/automake-1.7.2
- >=sys-devel/autoconf-2.57-r1"
-
-PDEPEND="!ppc? ( jack? ( =media-plugins/alsa-jack-${PV}* ) )"
-
-src_unpack() {
- unpack ${A}
-
- if use static; then
- mv ${S} ${S}.static
- unpack ${A}
-
- cd ${S}.static
- elibtoolize
- fi
-
- cd ${S}
- elibtoolize
-}
-
-src_compile() {
- local myconf=""
-
- # needed to avoid gcc looping internaly
- use hppa && export CFLAGS="-O1 -pipe"
-
- econf --enable-static=no --enable-shared=yes || die
- emake || die
-
- # Can't do both according to alsa docs and bug #48233
- if use static; then
- cd ${S}.static
- econf --enable-static=yes --enable-shared=no || die
- emake || die
- fi
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- #This alsa version does not provide libasound.so.1
- #Without this library just about everything even remotely
- #linked to previous versions of alsa-lib will break.
- #Fortunately, libasound.so.2 seems to be backwards
- #compatible with libasound.so.1 and a simple link
- #fixes the problem (fingers crossed)
- dosym /usr/lib/libasound.so.2 /usr/lib/libasound.so.1
- dodoc ChangeLog COPYING TODO
-
- if use static; then
- cd ${S}.static
- make DESTDIR="${D}" install || die "make install failed"
- fi
-}
diff --git a/media-libs/alsa-lib/alsa-lib-1.0.5.ebuild b/media-libs/alsa-lib/alsa-lib-1.0.5.ebuild
deleted file mode 100644
index bc414d4238c5..000000000000
--- a/media-libs/alsa-lib/alsa-lib-1.0.5.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.5.ebuild,v 1.11 2005/01/02 06:24:55 eradicator Exp $
-
-inherit libtool
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/"
-
-SLOT="0"
-KEYWORDS="x86 ppc ~alpha amd64 -sparc ~ia64 ppc64"
-LICENSE="GPL-2 LGPL-2.1"
-
-IUSE="static jack"
-
-RDEPEND="virtual/libc"
-
-DEPEND=">=sys-devel/automake-1.7.2
- >=sys-devel/autoconf-2.57-r1"
-
-PDEPEND="jack? ( =media-plugins/alsa-jack-${PV}* )"
-
-MY_P=${P/_rc/rc}
-#SRC_URI="ftp://ftp.alsa-project.org/pub/lib/${MY_P}.tar.bz2"
-SRC_URI="mirror://alsaproject/lib/${MY_P}.tar.bz2"
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
-
- if use static; then
- mv ${S} ${S}.static
- unpack ${A}
-
- cd ${S}.static
- elibtoolize
- fi
-
- cd ${S}
- elibtoolize
-}
-
-src_compile() {
- local myconf=""
-
- econf --enable-static=no --enable-shared=yes || die
- emake || die
-
- # Can't do both according to alsa docs and bug #48233
- if use static; then
- cd ${S}.static
- econf --enable-static=yes --enable-shared=no || die
- emake || die
- fi
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- #This alsa version does not provide libasound.so.1
- #Without this library just about everything even remotely
- #linked to previous versions of alsa-lib will break.
- #Fortunately, libasound.so.2 seems to be backwards
- #compatible with libasound.so.1 and a simple link
- #fixes the problem (fingers crossed)
- dosym /usr/lib/libasound.so.2 /usr/lib/libasound.so.1
- dodoc ChangeLog COPYING TODO
-
- if use static; then
- cd ${S}.static
- make DESTDIR="${D}" install || die "make install failed"
- fi
-}
diff --git a/media-libs/alsa-lib/alsa-lib-1.0.6.ebuild b/media-libs/alsa-lib/alsa-lib-1.0.6.ebuild
deleted file mode 100644
index c81e602c05f8..000000000000
--- a/media-libs/alsa-lib/alsa-lib-1.0.6.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.6.ebuild,v 1.10 2005/01/02 06:24:55 eradicator Exp $
-
-IUSE="static jack"
-
-inherit libtool eutils
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/lib/${P}.tar.bz2"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ppc64 -sparc x86"
-LICENSE="GPL-2 LGPL-2.1"
-
-RDEPEND="virtual/alsa
- >=media-sound/alsa-headers-1.0.5a"
-
-DEPEND=">=sys-devel/automake-1.7.2
- >=sys-devel/autoconf-2.57-r1"
-
-PDEPEND="jack? ( =media-plugins/alsa-jack-${PV}* )"
-
-src_unpack() {
- unpack ${A}
-
- if use static; then
- mv ${S} ${S}.static
- unpack ${A}
-
- cd ${S}.static
- elibtoolize
- fi
-
- cd ${S}
- elibtoolize
-}
-
-src_compile() {
- local myconf=""
-
- # needed to avoid gcc looping internaly
- use hppa && export CFLAGS="-O1 -pipe"
-
- econf --enable-static=no --enable-shared=yes || die
- emake || die
-
- # Can't do both according to alsa docs and bug #48233
- if use static; then
- cd ${S}.static
- econf --enable-static=yes --enable-shared=no || die
- emake || die
- fi
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- preserve_old_lib /usr/$(get_libdir)/libasound.so.1
-
- dodoc ChangeLog COPYING TODO
-
- if use static; then
- cd ${S}.static
- make DESTDIR="${D}" install || die "make install failed"
- fi
-}
-
-pkg_postinst() {
- preserve_old_lib_notify /usr/$(get_libdir)/libasound.so.1
-
- einfo "If you are using an emu10k1 based sound card, and you are upgrading"
- einfo "from a version of alsalib <1.0.6, you will need to recompile packages"
- einfo "that link against alsa-lib due to some ABI changes between 1.0.5 and"
- einfo "1.0.6 unique to that hardware. See the following URL for more information:"
- einfo "http://bugs.gentoo.org/show_bug.cgi?id=65347"
-}
diff --git a/media-libs/alsa-lib/alsa-lib-1.0.8_rc1.ebuild b/media-libs/alsa-lib/alsa-lib-1.0.8_rc1.ebuild
deleted file mode 100644
index ef74482973e3..000000000000
--- a/media-libs/alsa-lib/alsa-lib-1.0.8_rc1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-1.0.8_rc1.ebuild,v 1.4 2005/03/16 06:36:15 chriswhite Exp $
-
-inherit eutils
-
-MY_P="${P/_rc/rc}"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/lib/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="static jack doc"
-
-RDEPEND="virtual/alsa
- >=media-sound/alsa-headers-${PV}"
-DEPEND="${RDEPEND}
- doc? ( >=app-doc/doxygen-1.2.6 )"
-
-PDEPEND="jack? ( =media-plugins/alsa-jack-${PV}* )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-mixer.patch
-}
-
-src_compile() {
- local myconf=""
-
- # needed to avoid gcc looping internaly
- use hppa && export CFLAGS="-O1 -pipe"
-
- econf $(use_enable static) --enable-shared=yes || die
- emake || die
-
- if use doc; then
- emake doc || die
- fi
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- preserve_old_lib /usr/$(get_libdir)/libasound.so.1
-
- dodoc ChangeLog COPYING TODO
- use doc && dohtml -r doc/doxygen/html/*
-}
-
-pkg_postinst() {
- preserve_old_lib_notify /usr/$(get_libdir)/libasound.so.1
-
- einfo "If you are using an emu10k1 based sound card, and you are upgrading"
- einfo "from a version of alsalib <1.0.6, you will need to recompile packages"
- einfo "that link against alsa-lib due to some ABI changes between 1.0.5 and"
- einfo "1.0.6 unique to that hardware. See the following URL for more information:"
- einfo "http://bugs.gentoo.org/show_bug.cgi?id=65347"
-}
diff --git a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.5 b/media-libs/alsa-lib/files/digest-alsa-lib-1.0.5
deleted file mode 100644
index 358b269dffe0..000000000000
--- a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 fc9d701a8a26c09db0aaf3faef13eeb0 alsa-lib-1.0.5.tar.bz2 576678
diff --git a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.5-r3 b/media-libs/alsa-lib/files/digest-alsa-lib-1.0.5-r3
deleted file mode 100644
index 358b269dffe0..000000000000
--- a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.5-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 fc9d701a8a26c09db0aaf3faef13eeb0 alsa-lib-1.0.5.tar.bz2 576678
diff --git a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.6 b/media-libs/alsa-lib/files/digest-alsa-lib-1.0.6
deleted file mode 100644
index 10bf81c06236..000000000000
--- a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 d1534d9d2301f247b54a9e8cff4183c5 alsa-lib-1.0.6.tar.bz2 675254
diff --git a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.8_rc1 b/media-libs/alsa-lib/files/digest-alsa-lib-1.0.8_rc1
deleted file mode 100644
index 074db6f55df3..000000000000
--- a/media-libs/alsa-lib/files/digest-alsa-lib-1.0.8_rc1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0cad864d0b4c12f43564aa7d6aa24b71 alsa-lib-1.0.8rc1.tar.bz2 677208
diff --git a/media-libs/alsa-oss/ChangeLog b/media-libs/alsa-oss/ChangeLog
index 903c61978483..9e607e882124 100644
--- a/media-libs/alsa-oss/ChangeLog
+++ b/media-libs/alsa-oss/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/alsa-oss
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.48 2005/03/09 01:38:14 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.49 2005/03/16 11:56:01 eradicator Exp $
+
+ 16 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
+ -alsa-oss-1.0.6.ebuild:
+ Removing old versions.
*alsa-oss-1.0.8-r1 (08 Mar 2005)
diff --git a/media-libs/alsa-oss/alsa-oss-1.0.6.ebuild b/media-libs/alsa-oss/alsa-oss-1.0.6.ebuild
deleted file mode 100644
index eecd05490d8a..000000000000
--- a/media-libs/alsa-oss/alsa-oss-1.0.6.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/alsa-oss-1.0.6.ebuild,v 1.5 2005/01/23 11:24:56 eradicator Exp $
-
-IUSE=""
-
-MY_P=${P/_rc/rc}
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="Advanced Linux Sound Architecture OSS compatibility layer."
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/oss-lib/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ppc -sparc x86"
-
-DEPEND="virtual/libc
- >=media-libs/alsa-lib-1.0"
-
-src_install() {
- make DESTDIR="${D}" install || die
-}
diff --git a/media-libs/alsa-oss/files/digest-alsa-oss-1.0.6 b/media-libs/alsa-oss/files/digest-alsa-oss-1.0.6
deleted file mode 100644
index 0b22fc08f030..000000000000
--- a/media-libs/alsa-oss/files/digest-alsa-oss-1.0.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b104ba44268718cacf36fa18383162fe alsa-oss-1.0.6.tar.bz2 223104