diff options
author | 2002-06-27 03:47:31 +0000 | |
---|---|---|
committer | 2002-06-27 03:47:31 +0000 | |
commit | b686a40aa2f78211a7de0e7d1c4e94263d669ee1 (patch) | |
tree | ddb47dc2a95ae1012b44b736bd5f621958114336 /media-sound/alsa-tools | |
parent | adjsuted bzcat to bunzip2 -c - bug #3037 (diff) | |
download | gentoo-2-b686a40aa2f78211a7de0e7d1c4e94263d669ee1.tar.gz gentoo-2-b686a40aa2f78211a7de0e7d1c4e94263d669ee1.tar.bz2 gentoo-2-b686a40aa2f78211a7de0e7d1c4e94263d669ee1.zip |
a dependency tweak to avoid emerge -pu world to pull in the old rc1
Diffstat (limited to 'media-sound/alsa-tools')
-rw-r--r-- | media-sound/alsa-tools/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/alsa-tools/alsa-tools-0.9.0_rc1-r1.ebuild | 51 | ||||
-rw-r--r-- | media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc1-r1 | 1 |
3 files changed, 59 insertions, 2 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog index c34fca1678fd..634852aba1b3 100644 --- a/media-sound/alsa-tools/ChangeLog +++ b/media-sound/alsa-tools/ChangeLog @@ -1,7 +1,12 @@ # 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.4 2002/05/23 16:16:19 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.5 2002/06/27 03:47:30 spider Exp $ + +alsa-tools-0.9.0_rc1-r1 (27 Jun 2002) + 27 Jun 2002; Spider <spider@gentoo.org> alsa-tools-0.9.0_rc1-r1.ebuild : + Just changed the dep to >= on alsa-lib to get the new portage to not install the old rc, it works with rc2 .. + *alsa-tools-0.9.0_rc1 (27 Apr 2002) 23 May 2002; Arcady Genkin <agenkin@thpoon.com> @@ -27,4 +32,4 @@ 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com> alsa-tools-0.9.0_beta10.ebuild : - The first version of this package.
\ No newline at end of file + The first version of this package. diff --git a/media-sound/alsa-tools/alsa-tools-0.9.0_rc1-r1.ebuild b/media-sound/alsa-tools/alsa-tools-0.9.0_rc1-r1.ebuild new file mode 100644 index 000000000000..0e6f691b281c --- /dev/null +++ b/media-sound/alsa-tools/alsa-tools-0.9.0_rc1-r1.ebuild @@ -0,0 +1,51 @@ +# 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-r1.ebuild,v 1.1 2002/06/27 03:47:31 spider 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_rc1 + >=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 --mandir=/usr/share/man \ + || 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-r1 b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc1-r1 new file mode 100644 index 000000000000..3071640b689c --- /dev/null +++ b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_rc1-r1 @@ -0,0 +1 @@ +MD5 ddec389b7d51d26532904b2080e003eb alsa-tools-0.9.0rc1.tar.bz2 165390 |