diff options
author | Matt Turner <mattst88@gentoo.org> | 2013-05-06 04:20:55 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2013-05-06 04:20:55 +0000 |
commit | b512d756925caeb20f73ad7037b3500abb96d148 (patch) | |
tree | 289303634b438b5019256c4971e67e03b24252d4 /media-libs | |
parent | Automake 1.13 fix (diff) | |
download | gentoo-2-b512d756925caeb20f73ad7037b3500abb96d148.tar.gz gentoo-2-b512d756925caeb20f73ad7037b3500abb96d148.tar.bz2 gentoo-2-b512d756925caeb20f73ad7037b3500abb96d148.zip |
Readd MMX, SSE2, and SSE3 USE flags. Thanks to Andrew Savchenko for the bug report and patch. Bug 460570.
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/spandsp/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/spandsp/spandsp-0.0.6_pre21.ebuild | 15 |
2 files changed, 14 insertions, 7 deletions
diff --git a/media-libs/spandsp/ChangeLog b/media-libs/spandsp/ChangeLog index 9d07e0be3950..2f16d29997fd 100644 --- a/media-libs/spandsp/ChangeLog +++ b/media-libs/spandsp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/spandsp # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.25 2013/02/06 23:20:19 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.26 2013/05/06 04:20:55 mattst88 Exp $ + + 06 May 2013; Matt Turner <mattst88@gentoo.org> spandsp-0.0.6_pre21.ebuild: + Readd MMX, SSE2, and SSE3 USE flags. Thanks to Andrew Savchenko for the bug + report and patch. Bug 460570. *spandsp-0.0.6_pre21 (06 Feb 2013) diff --git a/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild b/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild index 3c66725cdadd..d8ab45b03991 100644 --- a/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild +++ b/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild,v 1.1 2013/02/06 23:20:19 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre21.ebuild,v 1.2 2013/05/06 04:20:55 mattst88 Exp $ -EAPI="2" +EAPI="5" inherit multilib versionator @@ -13,7 +13,7 @@ SRC_URI="http://www.soft-switch.org/downloads/spandsp/${P/_}.tgz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="doc fixed-point static-libs" +IUSE="doc fixed-point mmx sse sse2 sse3 static-libs" RDEPEND="media-libs/tiff" DEPEND="${RDEPEND} @@ -32,12 +32,15 @@ src_configure() { --disable-dependency-tracking \ $(use_enable doc) \ $(use_enable fixed-point) \ + $(use_enable mmx) \ + $(use_enable sse2) \ + $(use_enable sse3) \ $(use_enable static-libs static) } src_install () { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog DueDiligence NEWS README || die "dodoc failed" + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog DueDiligence NEWS README if ! use static-libs; then # remove useless la file when not installing static lib @@ -45,6 +48,6 @@ src_install () { fi if use doc; then - dohtml -r doc/{api/html/*,t38_manual} || die "dohtml failed" + dohtml -r doc/{api/html/*,t38_manual} fi } |