diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-07-11 20:19:09 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-07-11 20:19:09 +0000 |
commit | b913ffdf6089d2e5f36053e7bd4e15861f44d828 (patch) | |
tree | 8b7771965483da909de205e41ea1cc4deffd06ff /media-sound | |
parent | forgot to describe it ;) (diff) | |
download | gentoo-2-b913ffdf6089d2e5f36053e7bd4e15861f44d828.tar.gz gentoo-2-b913ffdf6089d2e5f36053e7bd4e15861f44d828.tar.bz2 gentoo-2-b913ffdf6089d2e5f36053e7bd4e15861f44d828.zip |
Version bump.
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/alsa-tools/ChangeLog | 10 | ||||
-rw-r--r-- | media-sound/alsa-tools/alsa-tools-0.9.5.ebuild | 60 | ||||
-rw-r--r-- | media-sound/alsa-tools/files/digest-alsa-tools-0.9.5 | 1 |
3 files changed, 69 insertions, 2 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog index 093acecad4ef..6409012bca8f 100644 --- a/media-sound/alsa-tools/ChangeLog +++ b/media-sound/alsa-tools/ChangeLog @@ -1,6 +1,6 @@ # 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.23 2003/07/04 08:11:14 jje Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.24 2003/07/11 20:19:09 agenkin Exp $ 04 Jul 2003; jje <jje@gentoo.org> alsa-tools-0.9.4.ebuild: Added alsa-driver to DEPEND. See #23613. Most people follow the instructions @@ -15,7 +15,13 @@ 05 Jun 2003; Daniel Ahlberg <aliz@gentoo.org> alsa-tools-0.9.4.ebuild : Switched to mirror://alsaproject in SRC_URI. -*alsa-driver-0.9.4 (03 June 2003) +*alsa-tools-0.9.5 (11 Jul 2003) + + 11 Jul 2003; Arcady Genkin <agenkin@gentoo.org> : + Version update. + Require virtual/alsa instead of media-sound/alsa-driver. + +*alsa-tools-0.9.4 (03 June 2003) 06 June 2003; Arcady Genkin <agenkin@gentoo.org> : Added patch by Jason Rhinelander <jason-gentoo@gossamer-threads.com> diff --git a/media-sound/alsa-tools/alsa-tools-0.9.5.ebuild b/media-sound/alsa-tools/alsa-tools-0.9.5.ebuild new file mode 100644 index 000000000000..4a60729cc8fc --- /dev/null +++ b/media-sound/alsa-tools/alsa-tools-0.9.5.ebuild @@ -0,0 +1,60 @@ +# 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.5.ebuild,v 1.1 2003/07/11 20:19:09 agenkin Exp $ + +DESCRIPTION="Advanced Linux Sound Architecture tools" +HOMEPAGE="http://www.alsa-project.org" +LICENSE="GPL-2" + +DEPEND=">=media-libs/alsa-lib-0.9.5 + virtual/alsa + =x11-libs/gtk+-1.2*" + +SLOT="0.9" +KEYWORDS="~x86 ~ppc" + +SRC_URI="mirror://alsaproject/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_unpack() { + unpack ${A} + cd ${S} + #patch -p1 < ${FILESDIR}/${P}-gcc3.3.patch || die +} + +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.5 b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.5 new file mode 100644 index 000000000000..81f222086a50 --- /dev/null +++ b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.5 @@ -0,0 +1 @@ +MD5 b6ecfca26bf43ce29bb1b4ed78721a65 alsa-tools-0.9.5.tar.bz2 717202 |