summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Heim <phreak@gentoo.org>2007-10-24 19:52:42 +0000
committerChristian Heim <phreak@gentoo.org>2007-10-24 19:52:42 +0000
commit11ac0d3a28c9d6e8489c8be431d07b0270929260 (patch)
tree700146621ad20a1ea6e6e57fa4150b91eaf5b194 /media-sound/alsa-utils
parentCleaning up old ebuilds. (diff)
downloadgentoo-2-11ac0d3a28c9d6e8489c8be431d07b0270929260.tar.gz
gentoo-2-11ac0d3a28c9d6e8489c8be431d07b0270929260.tar.bz2
gentoo-2-11ac0d3a28c9d6e8489c8be431d07b0270929260.zip
Cleaning up old ebuilds.
(Portage version: 2.1.3.9)
Diffstat (limited to 'media-sound/alsa-utils')
-rw-r--r--media-sound/alsa-utils/ChangeLog6
-rw-r--r--media-sound/alsa-utils/alsa-utils-1.0.13.ebuild93
-rw-r--r--media-sound/alsa-utils/alsa-utils-1.0.14_rc1.ebuild93
-rw-r--r--media-sound/alsa-utils/alsa-utils-1.0.15_rc1.ebuild86
-rw-r--r--media-sound/alsa-utils/files/digest-alsa-utils-1.0.133
-rw-r--r--media-sound/alsa-utils/files/digest-alsa-utils-1.0.14_rc13
-rw-r--r--media-sound/alsa-utils/files/digest-alsa-utils-1.0.15_rc13
7 files changed, 5 insertions, 282 deletions
diff --git a/media-sound/alsa-utils/ChangeLog b/media-sound/alsa-utils/ChangeLog
index d70f25c1bfe7..a0959f105e3b 100644
--- a/media-sound/alsa-utils/ChangeLog
+++ b/media-sound/alsa-utils/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/alsa-utils
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.220 2007/10/22 20:35:38 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/ChangeLog,v 1.221 2007/10/24 19:52:41 phreak Exp $
+
+ 24 Oct 2007; Christian Heim <phreak@gentoo.org> -alsa-utils-1.0.13.ebuild,
+ -alsa-utils-1.0.14_rc1.ebuild, -alsa-utils-1.0.15_rc1.ebuild:
+ Cleaning up old ebuilds.
22 Oct 2007; Raúl Porcel <armin76@gentoo.org> alsa-utils-1.0.14.ebuild:
alpha/ia64 stable wrt #189155
diff --git a/media-sound/alsa-utils/alsa-utils-1.0.13.ebuild b/media-sound/alsa-utils/alsa-utils-1.0.13.ebuild
deleted file mode 100644
index a734f215c0a9..000000000000
--- a/media-sound/alsa-utils/alsa-utils-1.0.13.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.13.ebuild,v 1.12 2007/04/27 00:47:48 dsd Exp $
-
-inherit eutils autotools
-
-MY_P="${P/_rc/rc}"
-
-DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)"
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/utils/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~alpha amd64 arm hppa ia64 mips ppc ppc64 sh sparc x86"
-IUSE="nls"
-
-DEPEND=">=sys-libs/ncurses-5.1
- dev-util/dialog
- >=media-libs/alsa-lib-1.0.12"
-RDEPEND="${DEPEND}
- sys-apps/pciutils"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- if ! built_with_use --missing true media-libs/alsa-lib midi; then
- eerror ""
- eerror "To be able to build alsa-utils-${PF} you need"
- eerror "to have built media-libs/alsa-lib with midi USE flag."
- die "Missing midi USE flag on media-libs/alsa-lib"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${PN}-1.0.11_rc2-nls.patch"
- epatch "${FILESDIR}/${PN}-1.0.11_rc5-alsaconf-redirect.patch"
-}
-
-src_compile() {
- econf \
- $(use_enable nls) \
- || die "configure failed"
-
- emake || die "make failed"
-}
-
-src_install() {
- local ALSA_UTILS_DOCS="ChangeLog README TODO
- seq/aconnect/README.aconnect
- seq/aseqnet/README.aseqnet"
-
- emake DESTDIR="${D}" install || die "Installation Failed"
-
- dodoc ${ALSA_UTILS_DOCS}
- newdoc alsamixer/README README.alsamixer
-
- newconfd "${FILESDIR}/alsasound.confd" alsasound
- insinto /etc/modules.d
- newins "${FILESDIR}/alsa-modules.conf-rc" alsa
- newinitd "${FILESDIR}/alsasound-1.0.10_rc2" alsasound
-}
-
-pkg_postinst() {
- echo
- elog "The alsasound initscript is now provided by alsa-utils"
- elog "instead of alsa-driver for compatibility with kernel-sources"
- elog "which provide ALSA internally."
- echo
- elog "To take advantage of this, and automate the process of"
- elog "loading and unloading the ALSA sound drivers as well as"
- elog "storing and restoring sound-card mixer levels you should"
- elog "add alsasound to the boot runlevel. You can do this as"
- elog "root like so:"
- elog " # rc-update add alsasound boot"
- echo
- elog "You will also need to edit the file /etc/modules.d/alsa"
- elog "and run update-modules. You can do this like so:"
- elog " # nano -w /etc/modules.d/alsa && update-modules"
- echo
-
- if use sparc; then
- ewarn "Old versions of alsa-drivers had a broken snd-ioctl32 module"
- ewarn "which causes sparc64 machines to lockup on such tasks as"
- ewarn "changing the volume. Because of this, it is VERY important"
- ewarn "that you do not use the snd-ioctl32 modules contained in"
- ewarn "development-sources or <=gentoo-dev-sources-2.6.7-r14. Doing so"
- ewarn "may result in an unbootable system if you start alsasound at boot."
- fi
-}
diff --git a/media-sound/alsa-utils/alsa-utils-1.0.14_rc1.ebuild b/media-sound/alsa-utils/alsa-utils-1.0.14_rc1.ebuild
deleted file mode 100644
index 521ffaf67772..000000000000
--- a/media-sound/alsa-utils/alsa-utils-1.0.14_rc1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.14_rc1.ebuild,v 1.13 2007/06/24 22:02:04 vapier Exp $
-
-inherit eutils autotools
-
-MY_P="${P/_rc/rc}"
-
-DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)"
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/utils/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sh sparc x86"
-IUSE="nls"
-
-DEPEND=">=sys-libs/ncurses-5.1
- dev-util/dialog
- >=media-libs/alsa-lib-1.0.14_rc1"
-RDEPEND="${DEPEND}
- sys-apps/pciutils"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- if ! built_with_use --missing true media-libs/alsa-lib midi; then
- eerror ""
- eerror "To be able to build alsa-utils-${PF} you need"
- eerror "to have built media-libs/alsa-lib with midi USE flag."
- die "Missing midi USE flag on media-libs/alsa-lib"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${PN}-1.0.11_rc2-nls.patch"
- epatch "${FILESDIR}/${PN}-1.0.11_rc5-alsaconf-redirect.patch"
-}
-
-src_compile() {
- econf \
- $(use_enable nls) \
- || die "configure failed"
-
- emake || die "make failed"
-}
-
-src_install() {
- local ALSA_UTILS_DOCS="ChangeLog README TODO
- seq/aconnect/README.aconnect
- seq/aseqnet/README.aseqnet"
-
- emake DESTDIR="${D}" install || die "Installation Failed"
-
- dodoc ${ALSA_UTILS_DOCS}
- newdoc alsamixer/README README.alsamixer
-
- newconfd "${FILESDIR}/alsasound.confd" alsasound
- insinto /etc/modules.d
- newins "${FILESDIR}/alsa-modules.conf-rc" alsa
- newinitd "${FILESDIR}/alsasound-1.0.10_rc2" alsasound
-}
-
-pkg_postinst() {
- echo
- elog "The alsasound initscript is now provided by alsa-utils"
- elog "instead of alsa-driver for compatibility with kernel-sources"
- elog "which provide ALSA internally."
- echo
- elog "To take advantage of this, and automate the process of"
- elog "loading and unloading the ALSA sound drivers as well as"
- elog "storing and restoring sound-card mixer levels you should"
- elog "add alsasound to the boot runlevel. You can do this as"
- elog "root like so:"
- elog " # rc-update add alsasound boot"
- echo
- elog "You will also need to edit the file /etc/modules.d/alsa"
- elog "and run update-modules. You can do this like so:"
- elog " # nano -w /etc/modules.d/alsa && update-modules"
- echo
-
- if use sparc; then
- ewarn "Old versions of alsa-drivers had a broken snd-ioctl32 module"
- ewarn "which causes sparc64 machines to lockup on such tasks as"
- ewarn "changing the volume. Because of this, it is VERY important"
- ewarn "that you do not use the snd-ioctl32 modules contained in"
- ewarn "development-sources or <=gentoo-dev-sources-2.6.7-r14. Doing so"
- ewarn "may result in an unbootable system if you start alsasound at boot."
- fi
-}
diff --git a/media-sound/alsa-utils/alsa-utils-1.0.15_rc1.ebuild b/media-sound/alsa-utils/alsa-utils-1.0.15_rc1.ebuild
deleted file mode 100644
index 57b221639a9c..000000000000
--- a/media-sound/alsa-utils/alsa-utils-1.0.15_rc1.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/alsa-utils/alsa-utils-1.0.15_rc1.ebuild,v 1.2 2007/09/17 17:06:31 phreak Exp $
-
-WANT_AUTOMAKE="latest"
-WANT_AUTOCONF="latest"
-
-inherit eutils autotools
-
-MY_P="${P/_rc/rc}"
-
-DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)"
-HOMEPAGE="http://www.alsa-project.org/"
-SRC_URI="mirror://alsaproject/utils/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
-IUSE="nls midi"
-
-DEPEND=">=sys-libs/ncurses-5.1
- dev-util/dialog
- >=media-libs/alsa-lib-1.0.14_rc3"
-RDEPEND="${DEPEND}
- virtual/modutils
- sys-apps/pciutils"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- if use midi && ! built_with_use --missing true media-libs/alsa-lib midi; then
- eerror ""
- eerror "To be able to build alsa-utils with midi support you need"
- eerror "to have built media-libs/alsa-lib with midi USE flag."
- die "Missing midi USE flag on media-libs/alsa-lib"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${PN}-1.0.11_rc2-nls.patch"
- epatch "${FILESDIR}/${PN}-1.0.11_rc5-alsaconf-redirect.patch"
- epatch "${FILESDIR}/${PN}-1.0.15_rc1-seq.patch"
-
- AT_M4DIR="m4" eautoreconf
-}
-
-src_compile() {
- econf \
- $(use_enable nls) \
- $(use_enable midi sequencer) \
- || die "configure failed"
-
- emake || die "make failed"
-}
-
-src_install() {
- local ALSA_UTILS_DOCS="ChangeLog README TODO
- seq/aconnect/README.aconnect
- seq/aseqnet/README.aseqnet"
-
- emake DESTDIR="${D}" install || die "Installation Failed"
-
- dodoc ${ALSA_UTILS_DOCS}
- newdoc alsamixer/README README.alsamixer
-
- newinitd "${FILESDIR}/alsasound.initd" alsasound
- newconfd "${FILESDIR}/alsasound.confd" alsasound
- insinto /etc/modules.d
- newins "${FILESDIR}/alsa-modules.conf-rc" alsa
-
- keepdir /var/lib/alsa
-}
-
-pkg_postinst() {
- echo
- elog "To take advantage of the init script, and automate the process of"
- elog "loading and unloading the ALSA sound drivers as well as"
- elog "storing and restoring sound-card mixer levels you should"
- elog "add alsasound to the boot runlevel. You can do this as"
- elog "root like so:"
- elog " # rc-update add alsasound boot"
- echo
-}
diff --git a/media-sound/alsa-utils/files/digest-alsa-utils-1.0.13 b/media-sound/alsa-utils/files/digest-alsa-utils-1.0.13
deleted file mode 100644
index 9000baa0be91..000000000000
--- a/media-sound/alsa-utils/files/digest-alsa-utils-1.0.13
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 dfe4bb5d3217f3ec662b172ce8397cf0 alsa-utils-1.0.13.tar.bz2 980874
-RMD160 2a3cd882543232f81e211d216c9e8112da3f8977 alsa-utils-1.0.13.tar.bz2 980874
-SHA256 d7fe8a7995bc74331c89fbc1937a0682d239339d6659a402cd7b8e4b96c050f0 alsa-utils-1.0.13.tar.bz2 980874
diff --git a/media-sound/alsa-utils/files/digest-alsa-utils-1.0.14_rc1 b/media-sound/alsa-utils/files/digest-alsa-utils-1.0.14_rc1
deleted file mode 100644
index 165051f70d6c..000000000000
--- a/media-sound/alsa-utils/files/digest-alsa-utils-1.0.14_rc1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 931b22590a3a897d71c92fef6b1c1949 alsa-utils-1.0.14rc1.tar.bz2 980802
-RMD160 7d05cca060486d64e6ba87aa8c4a7e9b7a069ddb alsa-utils-1.0.14rc1.tar.bz2 980802
-SHA256 9b8ede92cfa5f28d6bf6bb1253bdc562f8ac937797fb5e5303609e2e49c2e886 alsa-utils-1.0.14rc1.tar.bz2 980802
diff --git a/media-sound/alsa-utils/files/digest-alsa-utils-1.0.15_rc1 b/media-sound/alsa-utils/files/digest-alsa-utils-1.0.15_rc1
deleted file mode 100644
index ba26440b5086..000000000000
--- a/media-sound/alsa-utils/files/digest-alsa-utils-1.0.15_rc1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f272e7681acc98d79b56909b935b7878 alsa-utils-1.0.15rc1.tar.bz2 1014178
-RMD160 22459fbda594c5d1e9030c1f1715437eee32bd73 alsa-utils-1.0.15rc1.tar.bz2 1014178
-SHA256 41ae98393b7a4fd2f32831f055a32e44efaf2344085cf2b5483400ddc616b632 alsa-utils-1.0.15rc1.tar.bz2 1014178