diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-02-17 18:07:07 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-02-17 18:07:07 +0000 |
commit | 9d3530b852ee56d40cc8d58dcf138fb55751952b (patch) | |
tree | 5889d962a1379fdc8d4ec8fb196661ad0f310121 /media-sound | |
parent | Fixed typo in the dependencies. (diff) | |
download | historical-9d3530b852ee56d40cc8d58dcf138fb55751952b.tar.gz historical-9d3530b852ee56d40cc8d58dcf138fb55751952b.tar.bz2 historical-9d3530b852ee56d40cc8d58dcf138fb55751952b.zip |
Fixed typo in the dependencies.
Automated installation of documentation.
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.0_beta10-r1.ebuild | 53 | ||||
-rw-r--r-- | media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_beta10-r1 | 1 |
3 files changed, 63 insertions, 1 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog index d10a72190665..2df7bba42134 100644 --- a/media-sound/alsa-tools/ChangeLog +++ b/media-sound/alsa-tools/ChangeLog @@ -1,7 +1,15 @@ # 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.1 2002/02/17 08:04:30 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.2 2002/02/17 18:07:07 agenkin Exp $ +*alsa-tools-0.9.0_beta10-r1 (17 Feb 2002) + + 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com> + alsa-tools-0.9.0_beta10.ebuild-r1 : + + Installs the documentation properly. + Fixes a typo in the dependencies. + *alsa-tools-0.9.0_beta10 (17 Feb 2002) 17 Feb 2002; Arcady Genkin <agenkin@thpoon.com> diff --git a/media-sound/alsa-tools/alsa-tools-0.9.0_beta10-r1.ebuild b/media-sound/alsa-tools/alsa-tools-0.9.0_beta10-r1.ebuild new file mode 100644 index 000000000000..63b8d480625d --- /dev/null +++ b/media-sound/alsa-tools/alsa-tools-0.9.0_beta10-r1.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 Arcady Genkin <agenkin@thpoon.com> +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-0.9.0_beta10-r1.ebuild,v 1.1 2002/02/17 18:07:07 agenkin Exp $ + +DESCRIPTION="Advanced Linux Sound Architecture tools" +HOMEPAGE="http://www.alsa-project.org" +DEPEND="virtual/glibc + ~media-libs/alsa-lib-0.9.0.1_beta10 + >=x11-libs/gtk+-1.0.1" + +#transform P to match tarball versioning +MYPV="${PV/_beta/beta}" +MYP="${PN}-${MYPV}" +S="${WORKDIR}/${MYP}" + +SRC_URI="ftp://ftp.alsa-project.org/pub/tools/${MYP}.tar.bz2" + +# 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_beta10-r1 b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_beta10-r1 new file mode 100644 index 000000000000..add97c8b84f5 --- /dev/null +++ b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.0_beta10-r1 @@ -0,0 +1 @@ +MD5 2461717cde689d95f2354534cced3236 alsa-tools-0.9.0beta10.tar.bz2 163354 |