diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-06-23 22:22:13 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-06-23 22:22:13 +0000 |
commit | 59772685f933a71a791987f0777ea1ab76b0d98b (patch) | |
tree | c539192c052c7670c7da06126ecb8f5a27ea2137 /media-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-59772685f933a71a791987f0777ea1ab76b0d98b.tar.gz gentoo-2-59772685f933a71a791987f0777ea1ab76b0d98b.tar.bz2 gentoo-2-59772685f933a71a791987f0777ea1ab76b0d98b.zip |
Version bump wrt #513670 by "PG"
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/alsa-oss/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/alsa-oss/alsa-oss-1.0.28.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/media-libs/alsa-oss/ChangeLog b/media-libs/alsa-oss/ChangeLog index bc6d4cf59a3e..ce914e8387e7 100644 --- a/media-libs/alsa-oss/ChangeLog +++ b/media-libs/alsa-oss/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/alsa-oss # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.129 2014/05/09 14:32:19 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/ChangeLog,v 1.130 2014/06/23 22:22:13 ssuominen Exp $ + +*alsa-oss-1.0.28 (23 Jun 2014) + + 23 Jun 2014; Samuli Suominen <ssuominen@gentoo.org> +alsa-oss-1.0.28.ebuild: + Version bump wrt #513670 by "PG" *alsa-oss-1.0.25-r1 (09 May 2014) diff --git a/media-libs/alsa-oss/alsa-oss-1.0.28.ebuild b/media-libs/alsa-oss/alsa-oss-1.0.28.ebuild new file mode 100644 index 000000000000..186cc9324eb2 --- /dev/null +++ b/media-libs/alsa-oss/alsa-oss-1.0.28.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-oss/alsa-oss-1.0.28.ebuild,v 1.1 2014/06/23 22:22:13 ssuominen Exp $ + +EAPI=5 + +inherit autotools eutils multilib multilib-minimal + +MY_P="${P/_rc/rc}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Advanced Linux Sound Architecture OSS compatibility layer." +HOMEPAGE="http://www.alsa-project.org/" +SRC_URI="mirror://alsaproject/oss-lib/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="static-libs" + +RDEPEND=">=media-libs/alsa-lib-${PV}[${MULTILIB_USEDEP}] + abi_x86_32? ( + !<app-emulation/emul-linux-x86-soundlibs-20140406-r1 + !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32] + )" +DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}/${PN}-1.0.12-hardened.patch" ) + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + econf $(use_enable static-libs static) +} + +src_prepare() { + eautoreconf +} + +multilib_src_install_all() { + einstalldocs + prune_libtool_files --all + sed -i -e 's:\${exec_prefix}/\\$LIB/::' "${D}/usr/bin/aoss" || die +} |