diff options
author | Mike Doty <kingtaco@gentoo.org> | 2008-08-10 21:05:14 +0000 |
---|---|---|
committer | Mike Doty <kingtaco@gentoo.org> | 2008-08-10 21:05:14 +0000 |
commit | 99d23e2e9cb4a0601b4bc54fa1393119c3455ff7 (patch) | |
tree | ac7e2446b0e60a732b91f4f3bedd4cfe6ad580fb | |
parent | version bump (diff) | |
download | gentoo-2-99d23e2e9cb4a0601b4bc54fa1393119c3455ff7.tar.gz gentoo-2-99d23e2e9cb4a0601b4bc54fa1393119c3455ff7.tar.bz2 gentoo-2-99d23e2e9cb4a0601b4bc54fa1393119c3455ff7.zip |
version bump
(Portage version: 2.1.5.6)
-rw-r--r-- | app-emulation/emul-linux-x86-soundlibs/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20080810.ebuild | 40 |
2 files changed, 47 insertions, 1 deletions
diff --git a/app-emulation/emul-linux-x86-soundlibs/ChangeLog b/app-emulation/emul-linux-x86-soundlibs/ChangeLog index 46a57b752cd3..6fcf67de76d9 100644 --- a/app-emulation/emul-linux-x86-soundlibs/ChangeLog +++ b/app-emulation/emul-linux-x86-soundlibs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/emul-linux-x86-soundlibs # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 1.39 2008/06/22 09:52:57 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 1.40 2008/08/10 21:05:14 kingtaco Exp $ + +*emul-linux-x86-soundlibs-20080810 (10 Aug 2008) + + 10 Aug 2008; Mike Doty <kingtaco@gentoo.org> + +emul-linux-x86-soundlibs-20080810.ebuild: + version bump 22 Jun 2008; <welp@gentoo.org> emul-linux-x86-soundlibs-20080418.ebuild: Stable on amd64; bug 222759 diff --git a/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20080810.ebuild b/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20080810.ebuild new file mode 100644 index 000000000000..4d45510db425 --- /dev/null +++ b/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20080810.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20080810.ebuild,v 1.1 2008/08/10 21:05:14 kingtaco Exp $ + +inherit emul-linux-x86 + +LICENSE="as-is BSD GPL-2 LGPL-2 LGPL-2.1 Adobe-SourceCode" +KEYWORDS="-* ~amd64" +IUSE="arts esd alsa" + +RDEPEND=">=app-emulation/emul-linux-x86-baselibs-20071114 + >=app-emulation/emul-linux-x86-medialibs-20071114 + >=app-emulation/emul-linux-x86-xlibs-20080810" + +src_unpack() { + _ALLOWED="${S}/etc/env.d" + + if use alsa; then + _ALLOWED="${_ALLOWED}|${S}/usr/bin/aoss" + fi + + if use esd; then + _ALLOWED="${_ALLOWED}|${S}/usr/bin/esddsp" + fi + + if use arts; then + _ALLOWED="${_ALLOWED}|${S}/usr/kde/.*/bin/artsdsp" + fi + ALLOWED="(${_ALLOWED})" + + emul-linux-x86_src_unpack + + mv -f "${S}"/usr/bin/aoss{,32} + mv -f "${S}"/usr/kde/3.5/bin/artsdsp{,32} + mv -f "${S}"/usr/bin/esddsp{,32} + + if ! use arts; then + rm -rf "${S}"/usr/kde/ + fi +} |