summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2004-11-12 10:20:03 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2004-11-12 10:20:03 +0000
commitdbdf8e3c5dda0442ba0e10526e7504236d33482b (patch)
tree483b8d63d511132dc3d34789bbfeb253248115be /media-sound/alsa-tools
parentKeyworded ppc for GNOME 2.8 (Manifest recommit) (diff)
downloadgentoo-2-dbdf8e3c5dda0442ba0e10526e7504236d33482b.tar.gz
gentoo-2-dbdf8e3c5dda0442ba0e10526e7504236d33482b.tar.bz2
gentoo-2-dbdf8e3c5dda0442ba0e10526e7504236d33482b.zip
Removing old versions.
Diffstat (limited to 'media-sound/alsa-tools')
-rw-r--r--media-sound/alsa-tools/ChangeLog6
-rw-r--r--media-sound/alsa-tools/alsa-tools-1.0.4.ebuild91
-rw-r--r--media-sound/alsa-tools/alsa-tools-1.0.5-r1.ebuild93
-rw-r--r--media-sound/alsa-tools/files/digest-alsa-tools-1.0.41
-rw-r--r--media-sound/alsa-tools/files/digest-alsa-tools-1.0.5-r11
5 files changed, 5 insertions, 187 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog
index 2d3f6133cf13..9ab218d46165 100644
--- a/media-sound/alsa-tools/ChangeLog
+++ b/media-sound/alsa-tools/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/alsa-tools
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.58 2004/10/07 03:23:54 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.59 2004/11/12 10:20:02 eradicator Exp $
+
+ 12 Nov 2004; Jeremy Huddleston <eradicator@gentoo.org>
+ -alsa-tools-1.0.4.ebuild, -alsa-tools-1.0.5-r1.ebuild:
+ Removing old versions.
06 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org>
alsa-tools-1.0.6.ebuild:
diff --git a/media-sound/alsa-tools/alsa-tools-1.0.4.ebuild b/media-sound/alsa-tools/alsa-tools-1.0.4.ebuild
deleted file mode 100644
index e3cdc1c7596e..000000000000
--- a/media-sound/alsa-tools/alsa-tools-1.0.4.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-1.0.4.ebuild,v 1.5 2004/06/24 23:49:38 agriffis Exp $
-
-inherit gnuconfig
-
-IUSE=""
-
-DESCRIPTION="Advanced Linux Sound Architecture tools"
-HOMEPAGE="http://www.alsa-project.org"
-
-MY_P=${P/_rc/rc}
-#SRC_URI="ftp://ftp.alsa-project.org/pub/tools/${MY_P}.tar.bz2"
-SRC_URI="mirror://alsaproject/tools/${P}.tar.bz2"
-
-SLOT="0.9"
-KEYWORDS="~x86 ~ppc ~amd64"
-LICENSE="GPL-2"
-S=${WORKDIR}/${MY_P}
-
-DEPEND=">=media-libs/alsa-lib-1.0.0
- 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.
-#
-# By default, all the supported tools will be compiled.
-# If you want to only compile for specific tool(s), set ALSA_TOOLS
-# environment to a space-separated list of tools that you want to build.
-# For example:
-#
-# env ALSA_TOOLS='as10k1 ac3dec' emerge alsa-tools
-#
-[ x"${ALSA_TOOLS}" = x ] &&
-ALSA_TOOLS="ac3dec as10k1 envy24control hdspconf hdsploader hdspmixer \
- mixartloader rmedigicontrol sb16_csp seq/sbiload sscape_ctl \
- us428control usx2yloader 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_unpack() {
- unpack ${A}
-}
-
-src_compile() {
- gnuconfig_update
-
- # 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 --with-kernel="${KV}" || 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/alsa-tools-1.0.5-r1.ebuild b/media-sound/alsa-tools/alsa-tools-1.0.5-r1.ebuild
deleted file mode 100644
index 90adf360ca0e..000000000000
--- a/media-sound/alsa-tools/alsa-tools-1.0.5-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/alsa-tools-1.0.5-r1.ebuild,v 1.4 2004/09/02 10:36:08 lv Exp $
-
-inherit gnuconfig eutils
-
-IUSE="X"
-
-DESCRIPTION="Advanced Linux Sound Architecture tools"
-HOMEPAGE="http://www.alsa-project.org"
-
-MY_P=${P/_rc/rc}
-#SRC_URI="ftp://ftp.alsa-project.org/pub/tools/${MY_P}.tar.bz2"
-SRC_URI="mirror://alsaproject/tools/${P}.tar.bz2"
-
-SLOT="0.9"
-KEYWORDS="x86 ~ppc amd64"
-LICENSE="GPL-2"
-S=${WORKDIR}/${MY_P}
-
-DEPEND=">=media-libs/alsa-lib-1.0.0
- virtual/alsa
- X? ( =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.
-#
-# By default, all the supported tools will be compiled.
-# If you want to only compile for specific tool(s), set ALSA_TOOLS
-# environment to a space-separated list of tools that you want to build.
-# For example:
-#
-# env ALSA_TOOLS='as10k1 ac3dec' emerge alsa-tools
-#
-if [ -z "${ALSA_TOOLS}" ]; then
- if use X; then
- ALSA_TOOLS="ac3dec as10k1 envy24control hdspconf hdsploader hdspmixer \
- mixartloader rmedigicontrol sb16_csp seq/sbiload sscape_ctl \
- us428control usx2yloader vxloader"
- else
- ALSA_TOOLS="ac3dec as10k1 hdsploader \
- mixartloader sb16_csp seq/sbiload sscape_ctl \
- us428control usx2yloader vxloader"
- fi
-fi
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/alsa-tools-1.0.6-gcc34.patch
-}
-
-src_compile() {
- gnuconfig_update
-
- # 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 --with-kernel="${KV}" || 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-1.0.4 b/media-sound/alsa-tools/files/digest-alsa-tools-1.0.4
deleted file mode 100644
index 155bd8a34c44..000000000000
--- a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c901a79e60a42f82f07f7a77cb45691a alsa-tools-1.0.4.tar.bz2 732789
diff --git a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.5-r1 b/media-sound/alsa-tools/files/digest-alsa-tools-1.0.5-r1
deleted file mode 100644
index 364c611d4120..000000000000
--- a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.5-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c620d27c72733ad6733b44fee53f4b27 alsa-tools-1.0.5.tar.bz2 750721