summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-04-19 23:34:40 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-04-19 23:34:40 +0000
commitfa278152ef02d721a3334ab71377ff911edd1db7 (patch)
treea261cc88ef54617e8e24af04a3d34cb14b0e706f /media-sound/alsa-tools
parentVersion bump. This version will replace all the old release candidates. (diff)
downloadhistorical-fa278152ef02d721a3334ab71377ff911edd1db7.tar.gz
historical-fa278152ef02d721a3334ab71377ff911edd1db7.tar.bz2
historical-fa278152ef02d721a3334ab71377ff911edd1db7.zip
Drop release candidate versions.
Package-Manager: portage-2.1_pre7-r5
Diffstat (limited to 'media-sound/alsa-tools')
-rw-r--r--media-sound/alsa-tools/ChangeLog7
-rw-r--r--media-sound/alsa-tools/alsa-tools-1.0.11_rc3.ebuild101
-rw-r--r--media-sound/alsa-tools/alsa-tools-1.0.11_rc4.ebuild101
-rw-r--r--media-sound/alsa-tools/alsa-tools-1.0.11_rc5.ebuild101
-rw-r--r--media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc33
-rw-r--r--media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc43
-rw-r--r--media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc53
7 files changed, 6 insertions, 313 deletions
diff --git a/media-sound/alsa-tools/ChangeLog b/media-sound/alsa-tools/ChangeLog
index 0f394c4ec7cd..cb066cea8796 100644
--- a/media-sound/alsa-tools/ChangeLog
+++ b/media-sound/alsa-tools/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/alsa-tools
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.98 2006/04/19 23:26:07 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-tools/ChangeLog,v 1.99 2006/04/19 23:34:34 flameeyes Exp $
+
+ 19 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
+ -alsa-tools-1.0.11_rc3.ebuild, -alsa-tools-1.0.11_rc4.ebuild,
+ -alsa-tools-1.0.11_rc5.ebuild:
+ Drop release candidate versions.
*alsa-tools-1.0.11 (19 Apr 2006)
diff --git a/media-sound/alsa-tools/alsa-tools-1.0.11_rc3.ebuild b/media-sound/alsa-tools/alsa-tools-1.0.11_rc3.ebuild
deleted file mode 100644
index 8501911a0698..000000000000
--- a/media-sound/alsa-tools/alsa-tools-1.0.11_rc3.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2006 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.11_rc3.ebuild,v 1.1 2006/02/02 09:40:12 flameeyes Exp $
-
-inherit gnuconfig eutils flag-o-matic
-
-MY_P="${P/_rc/rc}"
-
-DESCRIPTION="Advanced Linux Sound Architecture tools"
-HOMEPAGE="http://www.alsa-project.org"
-SRC_URI="mirror://alsaproject/tools/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="fltk gtk"
-
-DEPEND=">=media-libs/alsa-lib-1.0.0
- virtual/alsa
- fltk? ( =x11-libs/fltk-1.1* )
- gtk? ( =x11-libs/gtk+-1.2* )"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- # 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
- ALSA_TOOLS="ac3dec as10k1 hdsploader mixartloader seq/sbiload \
- sscape_ctl us428control usx2yloader vxloader"
-
- if use fltk; then
- ALSA_TOOLS="${ALSA_TOOLS} hdspconf hdspmixer"
- fi
-
- if use gtk; then
- ALSA_TOOLS="${ALSA_TOOLS} echomixer envy24control rmedigicontrol"
- fi
-
- # sb16_csp won't build on ppc64 _AND_ ppc (and is not needed)
- if use !ppc64 && use !ppc; then
- ALSA_TOOLS="${ALSA_TOOLS} sb16_csp"
- fi
-
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- gnuconfig_update
-}
-
-src_compile() {
- if use fltk; then
- # hdspmixer requires fltk
- append-ldflags "-L/usr/$(get_libdir)/fltk-1.1"
- append-flags "-I/usr/include/fltk-1.1"
- fi
-
- # 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 "econf 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 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.11_rc4.ebuild b/media-sound/alsa-tools/alsa-tools-1.0.11_rc4.ebuild
deleted file mode 100644
index b979852f7456..000000000000
--- a/media-sound/alsa-tools/alsa-tools-1.0.11_rc4.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2006 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.11_rc4.ebuild,v 1.1 2006/03/24 14:00:36 flameeyes Exp $
-
-inherit gnuconfig eutils flag-o-matic
-
-MY_P="${P/_rc/rc}"
-
-DESCRIPTION="Advanced Linux Sound Architecture tools"
-HOMEPAGE="http://www.alsa-project.org"
-SRC_URI="mirror://alsaproject/tools/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="fltk gtk"
-
-DEPEND=">=media-libs/alsa-lib-1.0.0
- virtual/alsa
- fltk? ( =x11-libs/fltk-1.1* )
- gtk? ( =x11-libs/gtk+-1.2* )"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- # 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
- ALSA_TOOLS="ac3dec as10k1 hdsploader mixartloader seq/sbiload \
- sscape_ctl us428control usx2yloader vxloader"
-
- if use fltk; then
- ALSA_TOOLS="${ALSA_TOOLS} hdspconf hdspmixer"
- fi
-
- if use gtk; then
- ALSA_TOOLS="${ALSA_TOOLS} echomixer envy24control rmedigicontrol"
- fi
-
- # sb16_csp won't build on ppc64 _AND_ ppc (and is not needed)
- if use !ppc64 && use !ppc; then
- ALSA_TOOLS="${ALSA_TOOLS} sb16_csp"
- fi
-
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- gnuconfig_update
-}
-
-src_compile() {
- if use fltk; then
- # hdspmixer requires fltk
- append-ldflags "-L/usr/$(get_libdir)/fltk-1.1"
- append-flags "-I/usr/include/fltk-1.1"
- fi
-
- # 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 "econf 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 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.11_rc5.ebuild b/media-sound/alsa-tools/alsa-tools-1.0.11_rc5.ebuild
deleted file mode 100644
index d58eb40d8ffa..000000000000
--- a/media-sound/alsa-tools/alsa-tools-1.0.11_rc5.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2006 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.11_rc5.ebuild,v 1.1 2006/04/11 19:36:09 flameeyes Exp $
-
-inherit gnuconfig eutils flag-o-matic
-
-MY_P="${P/_rc/rc}"
-
-DESCRIPTION="Advanced Linux Sound Architecture tools"
-HOMEPAGE="http://www.alsa-project.org"
-SRC_URI="mirror://alsaproject/tools/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="fltk gtk"
-
-DEPEND=">=media-libs/alsa-lib-1.0.0
- virtual/alsa
- fltk? ( =x11-libs/fltk-1.1* )
- gtk? ( =x11-libs/gtk+-1.2* )"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- # 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
- ALSA_TOOLS="ac3dec as10k1 hdsploader mixartloader seq/sbiload \
- sscape_ctl us428control usx2yloader vxloader"
-
- if use fltk; then
- ALSA_TOOLS="${ALSA_TOOLS} hdspconf hdspmixer"
- fi
-
- if use gtk; then
- ALSA_TOOLS="${ALSA_TOOLS} echomixer envy24control rmedigicontrol"
- fi
-
- # sb16_csp won't build on ppc64 _AND_ ppc (and is not needed)
- if use !ppc64 && use !ppc; then
- ALSA_TOOLS="${ALSA_TOOLS} sb16_csp"
- fi
-
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- gnuconfig_update
-}
-
-src_compile() {
- if use fltk; then
- # hdspmixer requires fltk
- append-ldflags "-L/usr/$(get_libdir)/fltk-1.1"
- append-flags "-I/usr/include/fltk-1.1"
- fi
-
- # 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 "econf 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 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.11_rc3 b/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc3
deleted file mode 100644
index 7ea6634fd55e..000000000000
--- a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc3
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 a01a5d6ef73bb604948a5c896f67026b alsa-tools-1.0.11rc3.tar.bz2 1443050
-RMD160 3b80afc835098444865128da6850bd78137e4dcb alsa-tools-1.0.11rc3.tar.bz2 1443050
-SHA256 f6671dc2a30612f429f40bf0a6abe2833ee9af6899027eccfe1dda99f012bc32 alsa-tools-1.0.11rc3.tar.bz2 1443050
diff --git a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc4 b/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc4
deleted file mode 100644
index c34a4fbc2d22..000000000000
--- a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f9451ef2f1792879d20713616e25477e alsa-tools-1.0.11rc4.tar.bz2 1443893
-RMD160 39335c7dfc850d92b88da58b19d98dce79816bfe alsa-tools-1.0.11rc4.tar.bz2 1443893
-SHA256 a2e387296fd36132e230de2605fa0fba19cf55f4e6081dd54ffed24c553d3796 alsa-tools-1.0.11rc4.tar.bz2 1443893
diff --git a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc5 b/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc5
deleted file mode 100644
index 0973feae7f23..000000000000
--- a/media-sound/alsa-tools/files/digest-alsa-tools-1.0.11_rc5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 2aa6251a3dc6f4360730e01ad025451c alsa-tools-1.0.11rc5.tar.bz2 1445607
-RMD160 87c5907871f67dca98b96385de785779a94af7ff alsa-tools-1.0.11rc5.tar.bz2 1445607
-SHA256 76462eb28e750cec73adb064e61000065a5df755cd0c8fa982668c2a2d3b9683 alsa-tools-1.0.11rc5.tar.bz2 1445607