diff options
author | 2003-06-03 16:47:51 +0000 | |
---|---|---|
committer | 2003-06-03 16:47:51 +0000 | |
commit | b37b6f24dded7dd2b3e8fbaee36c648337c22241 (patch) | |
tree | 728933a9a8962415b26b79edb0cdb91def0ad895 | |
parent | update to 0.9.4 (diff) | |
download | historical-b37b6f24dded7dd2b3e8fbaee36c648337c22241.tar.gz historical-b37b6f24dded7dd2b3e8fbaee36c648337c22241.tar.bz2 historical-b37b6f24dded7dd2b3e8fbaee36c648337c22241.zip |
update to 0.9.4
-rw-r--r-- | media-sound/alsa-driver/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/alsa-driver/alsa-driver-0.9.4.ebuild | 93 | ||||
-rw-r--r-- | media-sound/alsa-driver/files/digest-alsa-driver-0.9.4 | 1 | ||||
-rw-r--r-- | media-sound/alsa-tools/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/alsa-tools/alsa-tools-0.9.4.ebuild | 53 | ||||
-rw-r--r-- | media-sound/alsa-tools/files/digest-alsa-tools-0.9.4 | 1 | ||||
-rw-r--r-- | media-sound/alsa-utils/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/alsa-utils/alsa-utils-0.9.4.ebuild | 32 | ||||
-rw-r--r-- | media-sound/alsa-utils/files/digest-alsa-utils-0.9.4 | 1 |
9 files changed, 199 insertions, 3 deletions
diff --git a/media-sound/alsa-driver/ChangeLog b/media-sound/alsa-driver/ChangeLog index b9246d7ab2b4..8f280ef2341f 100644 --- a/media-sound/alsa-driver/ChangeLog +++ b/media-sound/alsa-driver/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/alsa-driver # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-driver/ChangeLog,v 1.38 2003/05/25 02:33:43 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-driver/ChangeLog,v 1.39 2003/06/03 16:40:45 agenkin Exp $ + +*alsa-driver-0.9.4 (03 June 2003) + + 03 June 2003; Arcady Genkin <agenkin@gentoo.org> : + Version update. *alsa-driver-0.9.3c-r1 (24 May 2003) diff --git a/media-sound/alsa-driver/alsa-driver-0.9.4.ebuild b/media-sound/alsa-driver/alsa-driver-0.9.4.ebuild new file mode 100644 index 000000000000..3434145e7839 --- /dev/null +++ b/media-sound/alsa-driver/alsa-driver-0.9.4.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-driver/alsa-driver-0.9.4.ebuild,v 1.1 2003/06/03 16:40:45 agenkin Exp $ + +DESCRIPTION="Advanced Linux Sound Architecture kernel modules" +HOMEPAGE="http://www.alsa-project.org/" +LICENSE="GPL-2 LGPL-2.1" + +# By default, drivers for all supported cards will be compiled. +# If you want to only compile for specific card(s), set ALSA_CARDS +# environment to a space-separated list of drivers that you want to build. +# For example: +# +# env ALSA_CARDS='emu10k1 intel8x0 ens1370' emerge alsa-driver +# +[ x"${ALSA_CARDS}" = x ] && ALSA_CARDS=all + +# Need the baselayout 1.7.9 or newer for the init script to work correctly. +DEPEND="sys-devel/autoconf + virtual/glibc + >=sys-apps/portage-1.9.10 + >=sys-apps/baselayout-1.7.9" +PROVIDE="virtual/alsa" + +SLOT="0.9" +KEYWORDS="~x86 ~ppc" + +SRC_URI="ftp://ftp.alsa-project.org/pub/driver/${P}.tar.bz2" +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + cd ${S} + # Some *broken* Gentoo packages install stuff in /etc/rc.d/init.d + # instead of /etc/init.d. However, this causes alsa's installer + # to do the same foolish thing. This *hack* inibits the problem. + # I filed a bug report about this with the ALSA people: + # http://sourceforge.net/tracker/?func=detail&aid=551668&group_id=27464&atid=390601 + # Arcady Genkin <agenkin@thpoon.com> + sed -e 's:/etc/rc.d/init.d:/etc/init.d:' < Makefile > Makefile.hacked + mv Makefile.hacked Makefile + +} + + +src_compile() { + # Portage should determine the version of the kernel sources + check_KV + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --with-kernel="${ROOT}usr/src/linux" \ + --with-isapnp=yes \ + --with-sequencer=yes \ + --with-oss=yes \ + --with-cards="${ALSA_CARDS}" \ + || die "./configure failed" + + make || die "Parallel Make Failed" +} + + +src_install() { + dodir /usr/include/sound + dodir /etc/init.d + make DESTDIR=${D} install || die + + dodoc CARDS-STATUS COPYING FAQ INSTALL README WARNING TODO doc/* + + insinto /etc/modules.d + newins ${FILESDIR}/alsa-modules.conf-rc alsa + exeinto /etc/init.d + doexe ${FILESDIR}/alsasound +} + +pkg_postinst() { + if [ "${ROOT}" = / ] + then + [ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules + fi + + einfo + einfo "You need to edit file /etc/modules.d/alsa according to your" + einfo "hardware configuration." + einfo + einfo "If you are going to be using the 'alsasound' init script, make sure" + einfo "that you add it to the 'boot' runlevel (not 'default')." + einfo + einfo "Also, remember that all mixer channels will be MUTED by default." + einfo "Use 'alsamixer' program to unmute them." + einfo +} + diff --git a/media-sound/alsa-driver/files/digest-alsa-driver-0.9.4 b/media-sound/alsa-driver/files/digest-alsa-driver-0.9.4 new file mode 100644 index 000000000000..2c4abe3f2d9d --- /dev/null +++ b/media-sound/alsa-driver/files/digest-alsa-driver-0.9.4 @@ -0,0 +1 @@ +MD5 ff6dfaa93e8bc60d3d6a300de0fa5540 alsa-driver-0.9.4.tar.bz2 1530239 diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog index fee8f2e97988..61ddea8b4535 100644 --- a/media-sound/alsa-tools/ChangeLog +++ b/media-sound/alsa-tools/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/alsa-tools # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.18 2003/05/04 09:27:17 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.19 2003/06/03 16:47:51 agenkin Exp $ + +*alsa-driver-0.9.4 (03 June 2003) + + 03 June 2003; Arcady Genkin <agenkin@gentoo.org> : + Version update. *alsa-tools-0.9.3 (04 May 2003) diff --git a/media-sound/alsa-tools/alsa-tools-0.9.4.ebuild b/media-sound/alsa-tools/alsa-tools-0.9.4.ebuild new file mode 100644 index 000000000000..a296c616faca --- /dev/null +++ b/media-sound/alsa-tools/alsa-tools-0.9.4.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-0.9.4.ebuild,v 1.1 2003/06/03 16:47:51 agenkin Exp $ + +DESCRIPTION="Advanced Linux Sound Architecture tools" +HOMEPAGE="http://www.alsa-project.org" +LICENSE="GPL-2" + +DEPEND=">=media-libs/alsa-lib-0.9.4 + >=x11-libs/gtk+-1.0.1" + +SLOT="0.9" +KEYWORDS="~x86 ~ppc" + +SRC_URI="ftp://ftp.alsa-project.org/pub/tools/${P}.tar.bz2" +S="${WORKDIR}/${P}" + +# 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}" + + econf || 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.4 b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.4 new file mode 100644 index 000000000000..693c809b0a84 --- /dev/null +++ b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.4 @@ -0,0 +1 @@ +MD5 9d3889cfb17bce87a99fb84ac827b285 alsa-tools-0.9.4.tar.bz2 676158 diff --git a/media-sound/alsa-utils/ChangeLog b/media-sound/alsa-utils/ChangeLog index 436a92d2fa1e..20fe6ab62fc7 100644 --- a/media-sound/alsa-utils/ChangeLog +++ b/media-sound/alsa-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/alsa-utils # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.21 2003/05/04 09:27:17 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.22 2003/06/03 16:45:45 agenkin Exp $ + +*alsa-utils-0.9.4 (03 June 2003) + + 03 June 2003; Arcady Genkin <agenkin@gentoo.org> : + Version update. *alsa-utils-0.9.3 (04 May 2003) diff --git a/media-sound/alsa-utils/alsa-utils-0.9.4.ebuild b/media-sound/alsa-utils/alsa-utils-0.9.4.ebuild new file mode 100644 index 000000000000..4622a5da17b6 --- /dev/null +++ b/media-sound/alsa-utils/alsa-utils-0.9.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-0.9.4.ebuild,v 1.1 2003/06/03 16:45:45 agenkin Exp $ + +DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)" +HOMEPAGE="http://www.alsa-project.org/" +DEPEND=">=sys-libs/ncurses-5.1 + >=media-libs/alsa-lib-0.9.4" + +SLOT="0.9" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc" + +SRC_URI="ftp://ftp.alsa-project.org/pub/utils/${P}.tar.bz2" +S=${WORKDIR}/${P} + +src_compile() { + + econf || die "./configure failed" + emake || die "Parallel Make Failed" +} + +src_install() { + local 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 +} diff --git a/media-sound/alsa-utils/files/digest-alsa-utils-0.9.4 b/media-sound/alsa-utils/files/digest-alsa-utils-0.9.4 new file mode 100644 index 000000000000..9714d8940abd --- /dev/null +++ b/media-sound/alsa-utils/files/digest-alsa-utils-0.9.4 @@ -0,0 +1 @@ +MD5 96f49b21d65709c9af55da01ec7945e3 alsa-utils-0.9.4.tar.bz2 107663 |