diff options
author | Pacho Ramos <pacho@gentoo.org> | 2009-12-31 12:07:57 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2009-12-31 12:07:57 +0000 |
commit | 95992c66e9853cb6529c9e255007b7904c248f00 (patch) | |
tree | 8159cce8512a96d13fbcc8739da567e4a7216252 /app-emulation | |
parent | New emul set (diff) | |
download | gentoo-2-95992c66e9853cb6529c9e255007b7904c248f00.tar.gz gentoo-2-95992c66e9853cb6529c9e255007b7904c248f00.tar.bz2 gentoo-2-95992c66e9853cb6529c9e255007b7904c248f00.zip |
New emul set
(Portage version: 2.1.7.15/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/emul-linux-x86-soundlibs/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20091231.ebuild | 29 |
2 files changed, 36 insertions, 1 deletions
diff --git a/app-emulation/emul-linux-x86-soundlibs/ChangeLog b/app-emulation/emul-linux-x86-soundlibs/ChangeLog index 3822ce3e80ac..ee54f32a316a 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 1.47 2009/12/30 19:52:47 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-soundlibs/ChangeLog,v 1.48 2009/12/31 12:07:57 pacho Exp $ + +*emul-linux-x86-soundlibs-20091231 (31 Dec 2009) + + 31 Dec 2009; Pacho Ramos <pacho@gentoo.org> + +emul-linux-x86-soundlibs-20091231.ebuild: + New emul set: fix bug 240040 30 Dec 2009; Pacho Ramos <pacho@gentoo.org> emul-linux-x86-soundlibs-20081109.ebuild, diff --git a/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20091231.ebuild b/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20091231.ebuild new file mode 100644 index 000000000000..ca4eebe1f5aa --- /dev/null +++ b/app-emulation/emul-linux-x86-soundlibs/emul-linux-x86-soundlibs-20091231.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 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-20091231.ebuild,v 1.1 2009/12/31 12:07:57 pacho Exp $ + +EAPI=1 +inherit emul-linux-x86 + +LICENSE="as-is BSD GPL-2 LGPL-2 LGPL-2.1 gsm" +KEYWORDS="-* ~amd64" +IUSE="alsa" + +RDEPEND="~app-emulation/emul-linux-x86-baselibs-${PV} + ~app-emulation/emul-linux-x86-medialibs-${PV}" + +QA_DT_HASH="usr/lib32/.*" + +src_unpack() { + _ALLOWED="${S}/etc/env.d" + + if use alsa; then + _ALLOWED="${_ALLOWED}|${S}/usr/bin/aoss" + fi + + ALLOWED="(${_ALLOWED})" + + emul-linux-x86_src_unpack + + mv -f "${S}"/usr/bin/aoss{,32} || die +} |