diff options
author | Pacho Ramos <pacho@gentoo.org> | 2009-12-31 12:08:45 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2009-12-31 12:08:45 +0000 |
commit | fcc882f2387832f8a2fbb3c3128edfbc2eb853e3 (patch) | |
tree | 30b2341ea55767e584c332378a8c91416b644711 /app-emulation/emul-linux-x86-soundlibs | |
parent | amd64 stable wrt #298358 (diff) | |
download | historical-fcc882f2387832f8a2fbb3c3128edfbc2eb853e3.tar.gz historical-fcc882f2387832f8a2fbb3c3128edfbc2eb853e3.tar.bz2 historical-fcc882f2387832f8a2fbb3c3128edfbc2eb853e3.zip |
New emul set
Package-Manager: portage-2.1.7.15/cvs/Linux x86_64
Diffstat (limited to 'app-emulation/emul-linux-x86-soundlibs')
-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 +} |