diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-10-03 00:27:11 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-10-03 00:27:11 +0000 |
commit | c51740c24719fa745c0562cf24003c77a2cbf4b5 (patch) | |
tree | 0cc7d927cd8ae849342ebeef9df34fbc4435451c /media-sound/alsa-tools | |
parent | change alpha keywords (diff) | |
download | historical-c51740c24719fa745c0562cf24003c77a2cbf4b5.tar.gz historical-c51740c24719fa745c0562cf24003c77a2cbf4b5.tar.bz2 historical-c51740c24719fa745c0562cf24003c77a2cbf4b5.zip |
Update for 0.9.7.
Two tools have been removed (hdsploader and sscape_ctl), because they
no longer compile with linux headers from 2.4 series kernels. I sent
bug reports to the alsa-devel people, so, hopefully, they'll be fixed
in subsequent releases.
Diffstat (limited to 'media-sound/alsa-tools')
-rw-r--r-- | media-sound/alsa-tools/ChangeLog | 11 | ||||
-rw-r--r-- | media-sound/alsa-tools/alsa-tools-0.9.7.ebuild | 68 | ||||
-rw-r--r-- | media-sound/alsa-tools/files/digest-alsa-tools-0.9.7 | 1 | ||||
-rw-r--r-- | media-sound/alsa-tools/metadata.xml | 9 |
4 files changed, 88 insertions, 1 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog index c6cf05d39918..d78b772c688a 100644 --- a/media-sound/alsa-tools/ChangeLog +++ b/media-sound/alsa-tools/ChangeLog @@ -1,6 +1,15 @@ # 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.27 2003/08/18 11:29:53 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.28 2003/10/03 00:27:11 agenkin Exp $ + +*alsa-tools-0.9.7 (02 Oct 2003) + + 02 Oct 2003; Arcady Genkin <agenkin@gentoo.org> : + Version update. + Two tools have been removed (hdsploader and sscape_ctl), because they no + longer compile with linux headers from 2.4 series kernels. I sent bug + reports to the alsa-devel people, so, hopefully, they'll be fixed in + subsequent releases. *alsa-tools-0.9.6-r1 (18 Aug 2003) diff --git a/media-sound/alsa-tools/alsa-tools-0.9.7.ebuild b/media-sound/alsa-tools/alsa-tools-0.9.7.ebuild new file mode 100644 index 000000000000..9b61a80dd709 --- /dev/null +++ b/media-sound/alsa-tools/alsa-tools-0.9.7.ebuild @@ -0,0 +1,68 @@ +# 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.7.ebuild,v 1.1 2003/10/03 00:27:11 agenkin Exp $ + +IUSE="" + +DESCRIPTION="Advanced Linux Sound Architecture tools" +HOMEPAGE="http://www.alsa-project.org" +SRC_URI="mirror://alsaproject/tools/${P}.tar.bz2" + +SLOT="0.9" +KEYWORDS="~x86 ~ppc" +LICENSE="GPL-2" + +DEPEND=">=media-libs/alsa-lib-0.9.7 + virtual/alsa + =x11-libs/fltk-1.1* + =x11-libs/gtk+-1.2*" + +# This is a list of the tools in the package. +# 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. +ALSA_TOOLS="ac3dec as10k1 envy24control hdspmixer mixartloader rmedigicontrol \ + sb16_csp seq/sbiload vxloader" +# The below two tools do not compile with linux-headers from 2.4 kernels +# as of alsa-tools-0.9.7, so I removed them from the list for now. +# Bug reports have been sent to the alsa-devel mailing list. +# +# hdsploader +# sscape_ctl + +src_compile() { + # hdspmixer requires fltk + export LDFLAGS="-L/usr/lib/fltk-1.1" + export CPPFLAGS="-I/usr/include/fltk-1.1" + + # hdspmixer is missing depconf - copy from the hdsploader directory + cp ${S}/hdsploader/depcomp ${S}/hdspmixer/ + + local f + for f in ${ALSA_TOOLS} + do + cd "${S}/${f}" + econf || die "configure failed" + make || die "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.7 b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.7 new file mode 100644 index 000000000000..0f492d880274 --- /dev/null +++ b/media-sound/alsa-tools/files/digest-alsa-tools-0.9.7 @@ -0,0 +1 @@ +MD5 bd0758ca22a8aa1c7205f39d8af29f65 alsa-tools-0.9.7.tar.bz2 1479141 diff --git a/media-sound/alsa-tools/metadata.xml b/media-sound/alsa-tools/metadata.xml new file mode 100644 index 000000000000..03db19e85220 --- /dev/null +++ b/media-sound/alsa-tools/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sound</herd> +<maintainer> + <email>agenkin@gentoo.org</email> + <name>Arcady Genkin</name> +</maintainer> +</pkgmetadata> |