diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-06-03 16:47:51 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-06-03 16:47:51 +0000 |
commit | 26bbced25e6752cc0d7034dd93911f9c600c4481 (patch) | |
tree | 4afc213d0c1433f087cf9d40ce18a0536aaf95d0 /media-sound/alsa-tools | |
parent | update to 0.9.4 (diff) | |
download | gentoo-2-26bbced25e6752cc0d7034dd93911f9c600c4481.tar.gz gentoo-2-26bbced25e6752cc0d7034dd93911f9c600c4481.tar.bz2 gentoo-2-26bbced25e6752cc0d7034dd93911f9c600c4481.zip |
update to 0.9.4
Diffstat (limited to 'media-sound/alsa-tools')
-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 |
3 files changed, 60 insertions, 1 deletions
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 |