summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArcady Genkin <agenkin@gentoo.org>2002-04-27 08:04:55 +0000
committerArcady Genkin <agenkin@gentoo.org>2002-04-27 08:04:55 +0000
commitc40282d34a9f3af8c0d75401d3e0fd5477e9aaae (patch)
tree2d14fc44b2f26c9d79c3cd0233a3a65e4b28afc3
parentcleanup (diff)
downloadgentoo-2-c40282d34a9f3af8c0d75401d3e0fd5477e9aaae.tar.gz
gentoo-2-c40282d34a9f3af8c0d75401d3e0fd5477e9aaae.tar.bz2
gentoo-2-c40282d34a9f3af8c0d75401d3e0fd5477e9aaae.zip
This is a quick ALSA update for the lastest version which came out a
couple of days ago (0.9.0rc1).
-rw-r--r--media-libs/alsa-lib/ChangeLog9
-rw-r--r--media-libs/alsa-lib/alsa-lib-0.9.0_rc1.ebuild35
-rw-r--r--media-libs/alsa-lib/files/digest-alsa-lib-0.9.0_rc11
-rw-r--r--media-libs/alsa-oss/ChangeLog9
-rw-r--r--media-libs/alsa-oss/alsa-oss-0.9.0_rc1.ebuild25
-rw-r--r--media-libs/alsa-oss/files/digest-alsa-oss-0.9.0_rc11
-rw-r--r--media-sound/alsa-driver/ChangeLog13
-rw-r--r--media-sound/alsa-driver/alsa-driver-0.9.0_rc1.ebuild53
-rw-r--r--media-sound/alsa-driver/files/digest-alsa-driver-0.9.0_rc11
-rw-r--r--media-sound/alsa-tools/ChangeLog9
-rw-r--r--media-sound/alsa-tools/alsa-tools-0.9.0_rc1.ebuild50
-rw-r--r--media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc11
-rw-r--r--media-sound/alsa-utils/ChangeLog9
-rw-r--r--media-sound/alsa-utils/alsa-utils-0.9.0_rc1.ebuild35
-rw-r--r--media-sound/alsa-utils/files/digest-alsa-utils-0.9.0_rc11
15 files changed, 245 insertions, 7 deletions
diff --git a/media-libs/alsa-lib/ChangeLog b/media-libs/alsa-lib/ChangeLog
index 4612307c912c..1336da303265 100644
--- a/media-libs/alsa-lib/ChangeLog
+++ b/media-libs/alsa-lib/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.2 2002/02/04 04:50:32 tod Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/ChangeLog,v 1.3 2002/04/27 08:04:55 agenkin Exp $
+
+*alsa-lib-0.9.0_rc1 (27 Apr 2002)
+
+ 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com>
+ alsa-lib-0.9.0_rc1.ebuild :
+
+ Quick update to version 0.9.0rc1.
*alsa-lib-0.9.0.1_beta10 (3 Feb 2002)
diff --git a/media-libs/alsa-lib/alsa-lib-0.9.0_rc1.ebuild b/media-libs/alsa-lib/alsa-lib-0.9.0_rc1.ebuild
new file mode 100644
index 000000000000..91dc27d0f01d
--- /dev/null
+++ b/media-libs/alsa-lib/alsa-lib-0.9.0_rc1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Achim Gottinger <achim@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.9.0_rc1.ebuild,v 1.1 2002/04/27 08:04:55 agenkin Exp $
+
+DESCRIPTION="Advanced Linux Sound Architecture Library"
+HOMEPAGE="http://www.alsa-project.org/"
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/lib/${P/_rc/rc}.tar.bz2"
+S=${WORKDIR}/${P/_rc/rc}
+
+DEPEND="virtual/glibc
+ =media-sound/alsa-driver-0.9.0_rc1"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ || die "./configure failed"
+ emake || die "Parallel Make Failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "Installation 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.2 and a simple link
+ #fixes the problem (fingers crossed)
+ dosym /usr/lib/libasound.so.2 /usr/lib/libasound.so.1
+
+ dodoc ChangeLog COPYING TODO
+}
diff --git a/media-libs/alsa-lib/files/digest-alsa-lib-0.9.0_rc1 b/media-libs/alsa-lib/files/digest-alsa-lib-0.9.0_rc1
new file mode 100644
index 000000000000..951e699e60f6
--- /dev/null
+++ b/media-libs/alsa-lib/files/digest-alsa-lib-0.9.0_rc1
@@ -0,0 +1 @@
+MD5 21f5b276462cd4881e6b8b986064dbc0 alsa-lib-0.9.0rc1.tar.bz2 397912
diff --git a/media-libs/alsa-oss/ChangeLog b/media-libs/alsa-oss/ChangeLog
index 42dde31dfc3f..aece0366c6f3 100644
--- a/media-libs/alsa-oss/ChangeLog
+++ b/media-libs/alsa-oss/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.2 2002/02/17 07:32:02 agenkin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.3 2002/04/27 08:04:55 agenkin Exp $
+
+*alsa-oss-0.9.0_rc1 (27 Apr 2002)
+
+ 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com>
+ alsa-oss-0.9.0_rc1.ebuild :
+
+ Quick update to version 0.9.0rc1.
*alsa-oss-0.9.0.1_beta10 (17 Feb 2002)
diff --git a/media-libs/alsa-oss/alsa-oss-0.9.0_rc1.ebuild b/media-libs/alsa-oss/alsa-oss-0.9.0_rc1.ebuild
new file mode 100644
index 000000000000..18ebb46f82f7
--- /dev/null
+++ b/media-libs/alsa-oss/alsa-oss-0.9.0_rc1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Arcady Genkin <agenkin@thpoon.com>
+# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/alsa-oss-0.9.0_rc1.ebuild,v 1.1 2002/04/27 08:04:55 agenkin Exp $
+
+DESCRIPTION="Advanced Linux Sound Architecture OSS compatibility layer"
+HOMEPAGE="http://www.alsa-project.org/"
+
+DEPEND="virtual/glibc
+ ~media-libs/alsa-lib-0.9.0_rc1"
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/oss-lib/${P/_rc/rc}.tar.bz2"
+S="${WORKDIR}/${P/_rc/rc}"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ || die "./configure failed"
+ emake || die "Parallel Make Failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+}
diff --git a/media-libs/alsa-oss/files/digest-alsa-oss-0.9.0_rc1 b/media-libs/alsa-oss/files/digest-alsa-oss-0.9.0_rc1
new file mode 100644
index 000000000000..c80f5fdfcfbb
--- /dev/null
+++ b/media-libs/alsa-oss/files/digest-alsa-oss-0.9.0_rc1
@@ -0,0 +1 @@
+MD5 97b404900619c480820214fe61f0f305 alsa-oss-0.9.0rc1.tar.bz2 93309
diff --git a/media-sound/alsa-driver/ChangeLog b/media-sound/alsa-driver/ChangeLog
index 4a7756394c2d..4b06b78eef59 100644
--- a/media-sound/alsa-driver/ChangeLog
+++ b/media-sound/alsa-driver/ChangeLog
@@ -1,6 +1,15 @@
# ChangeLog for media-sound/alsa-driver
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-driver/ChangeLog,v 1.3 2002/02/09 01:44:32 woodchip Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-driver/ChangeLog,v 1.4 2002/04/27 08:04:55 agenkin Exp $
+
+*alsa-driver-0.9.0_rc1 (27 Apr 2002)
+
+ 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com>
+ alsa-driver-0.9.0_rc1.ebuild :
+
+ Quick update to version 0.9.0rc1.
+
+*alsa-driver-0.9.0_beta10 (3 Feb 2002)
8 Feb 2002; Donny Davies <woodchip@gentoo.org> ChangeLog,
alsa-driver-0.5.11.ebuild, alsa-driver-0.5.12a.ebuild,
@@ -9,8 +18,6 @@
Moved the code looking for the kernel sources into pkg_setup().
Closes bug #273. No revisions bumped, mostly a cosmetic change.
-*alsa-driver-0.9.0_beta10 (3 Feb 2002)
-
3 Feb 2002; T.Neidt <tod@gentoo.org> ChangeLog :
Upgraded version to latest beta.
diff --git a/media-sound/alsa-driver/alsa-driver-0.9.0_rc1.ebuild b/media-sound/alsa-driver/alsa-driver-0.9.0_rc1.ebuild
new file mode 100644
index 000000000000..1529938e28e2
--- /dev/null
+++ b/media-sound/alsa-driver/alsa-driver-0.9.0_rc1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2001 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Daniel Robbins <drobbins@gentoo.org>
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-driver/alsa-driver-0.9.0_rc1.ebuild,v 1.1 2002/04/27 08:04:55 agenkin Exp $
+
+DESCRIPTION="Advanced Linux Sound Architecture kernel modules"
+HOMEPAGE="http://www.alsa-project.org/"
+
+# By default, drivers for all supported cards will be compiled.
+# If you want to only compile for specific card(s), set ALSA_CARDS
+# environment variable accordingly
+[ x${ALSA_CARDS} = x ] && ALSA_CARDS=all
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/driver/${P/_rc/rc}.tar.bz2"
+S=${WORKDIR}/${P/_rc/rc}
+
+#virtual/glibc should depend on specific kernel headers
+DEPEND="sys-devel/autoconf
+ virtual/glibc"
+PROVIDE="virtual/alsa"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --with-kernel="${ROOT}usr/src/linux-${KV}" \
+ --with-isapnp=yes \
+ --with-sequencer=yes \
+ --with-oss=yes \
+ --with-cards=${ALSA_CARDS} \
+ || die "./configure failed"
+
+ emake || die "Parallel Make Failed"
+}
+
+src_install () {
+ insinto /usr/include/sound
+ cd ${S}/include
+ doins *.h
+ cd ${S}
+ dodoc CARDS-STATUS COPYING FAQ INSTALL README WARNING TODO
+ dodir /lib/modules/${KV}/misc
+ cp ${S}/modules/*.o ${D}/lib/modules/${KV}/misc
+ insinto /etc/modules.d
+ doins ${FILESDIR}/alsa
+ insinto /etc/init.d
+ doins ${S}/utils/alsasound
+
+}
+
+pkg_postinst () {
+ /usr/sbin/update-modules || return 0
+}
diff --git a/media-sound/alsa-driver/files/digest-alsa-driver-0.9.0_rc1 b/media-sound/alsa-driver/files/digest-alsa-driver-0.9.0_rc1
new file mode 100644
index 000000000000..ab82b0c07726
--- /dev/null
+++ b/media-sound/alsa-driver/files/digest-alsa-driver-0.9.0_rc1
@@ -0,0 +1 @@
+MD5 440feeb7a0932a9f40a059fe78b3d6b2 alsa-driver-0.9.0rc1.tar.bz2 1103418
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog
index 2df7bba42134..996099b55361 100644
--- a/media-sound/alsa-tools/ChangeLog
+++ b/media-sound/alsa-tools/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/alsa-lib
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.2 2002/02/17 18:07:07 agenkin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.3 2002/04/27 08:04:55 agenkin Exp $
+
+*alsa-tools-0.9.0_rc1 (27 Apr 2002)
+
+ 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com>
+ alsa-tools-0.9.0_rc1.ebuild :
+
+ Quick update to version 0.9.0rc1.
*alsa-tools-0.9.0_beta10-r1 (17 Feb 2002)
diff --git a/media-sound/alsa-tools/alsa-tools-0.9.0_rc1.ebuild b/media-sound/alsa-tools/alsa-tools-0.9.0_rc1.ebuild
new file mode 100644
index 000000000000..147d7be7f199
--- /dev/null
+++ b/media-sound/alsa-tools/alsa-tools-0.9.0_rc1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2002 Arcady Genkin <agenkin@thpoon.com>
+# Distributed under the terms of the GNU General Public License, v2
+# Author Arcady Genkin <agenkin@thpoon.com>
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-0.9.0_rc1.ebuild,v 1.1 2002/04/27 08:04:55 agenkin Exp $
+
+DESCRIPTION="Advanced Linux Sound Architecture tools"
+HOMEPAGE="http://www.alsa-project.org"
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/tools/${P/_rc/rc}.tar.bz2"
+S="${WORKDIR}/${P/_rc/rc}"
+
+DEPEND="virtual/glibc
+ ~media-libs/alsa-lib-0.9.0.1_beta10
+ >=x11-libs/gtk+-1.0.1"
+
+# This is a list of the tools in the package.
+ALSA_TOOLS="ac3dec as10k1 envy24control sb16_csp seq/sbiload"
+
+src_compile() {
+ # Some of the tools don't make proper use of CFLAGS, even though
+ # all of them seem to use autoconf. This needs to be fixed.
+ local f
+ for f in ${ALSA_TOOLS}
+ do
+ cd "${S}/${f}"
+ ./configure --host="${CHOST}" --prefix=/usr || die "./configure failed"
+ emake || die "Parallel Make Failed"
+ done
+}
+
+src_install() {
+ local f
+ for f in ${ALSA_TOOLS}
+ do
+ # Install the main stuff
+ cd "${S}/${f}"
+ make DESTDIR="${D}" install || die
+
+ # Install the text documentation
+ local doc
+ for doc in README TODO ChangeLog COPYING AUTHORS
+ do
+ if [ -f "${doc}" ]
+ then
+ mv "${doc}" "${doc}.`basename ${f}`"
+ dodoc "${doc}.`basename ${f}`"
+ fi
+ done
+ done
+}
diff --git a/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc1 b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc1
new file mode 100644
index 000000000000..3071640b689c
--- /dev/null
+++ b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc1
@@ -0,0 +1 @@
+MD5 ddec389b7d51d26532904b2080e003eb alsa-tools-0.9.0rc1.tar.bz2 165390
diff --git a/media-sound/alsa-utils/ChangeLog b/media-sound/alsa-utils/ChangeLog
index b30d3e527b43..30085278ca6c 100644
--- a/media-sound/alsa-utils/ChangeLog
+++ b/media-sound/alsa-utils/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-sound/alsa-utils
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.2 2002/02/04 04:55:10 tod Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.3 2002/04/27 08:04:55 agenkin Exp $
+
+*alsa-utils-0.9.0_rc1 (27 Apr 2002)
+
+ 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com>
+ alsa-utils-0.9.0_rc1.ebuild :
+
+ Quick update to version 0.9.0rc1.
*alsa-utils-0.9.0.1_beta10 (3 Feb 2002)
diff --git a/media-sound/alsa-utils/alsa-utils-0.9.0_rc1.ebuild b/media-sound/alsa-utils/alsa-utils-0.9.0_rc1.ebuild
new file mode 100644
index 000000000000..a42bd68f5e37
--- /dev/null
+++ b/media-sound/alsa-utils/alsa-utils-0.9.0_rc1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Author Achim Gottinger <achim@gentoo.org>
+# /home/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-0.5.10-r6.ebuild,v 1.1 2001/10/02 20:34:44 woodchip Exp
+
+DESCRIPTION="Advanced Linux Sound Architecture Utils"
+HOMEPAGE="http://www.alsa-project.org/"
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/utils/${P/_rc/rc}.tar.bz2"
+S=${WORKDIR}/${P/_rc/rc}
+
+DEPEND="virtual/glibc
+ >=sys-libs/ncurses-5.1
+ =media-libs/alsa-lib-0.9.0_rc1"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ || die "./configure failed"
+ emake || die "Parallel Make Failed"
+}
+
+src_install() {
+ ALSA_UTILS_DOCS="COPYING ChangeLog README TODO
+ seq/aconnect/README.aconnect
+ seq/aseqnet/README.aseqnet"
+
+ make DESTDIR=${D} install || die "Installation Failed"
+
+ dodoc ${ALSA_UTILS_DOCS}
+ newdoc alsamixer/README README.alsamixer
+ exeinto /etc/init.d
+ newexe ${FILESDIR}/alsa.rc6 alsa
+}
diff --git a/media-sound/alsa-utils/files/digest-alsa-utils-0.9.0_rc1 b/media-sound/alsa-utils/files/digest-alsa-utils-0.9.0_rc1
new file mode 100644
index 000000000000..6774e6f95429
--- /dev/null
+++ b/media-sound/alsa-utils/files/digest-alsa-utils-0.9.0_rc1
@@ -0,0 +1 @@
+MD5 42de36e896f503aeca8fd3611b573c21 alsa-utils-0.9.0rc1.tar.bz2 86431