diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-02-07 14:46:54 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-02-07 14:46:54 +0000 |
commit | e71623a97ba63543bfcd6924b8a097c496806191 (patch) | |
tree | 413a8b6f3b67bb7efc6a74527e0964a08f6a9e9c /media-libs | |
parent | Fix build bug #162537 (diff) | |
download | gentoo-2-e71623a97ba63543bfcd6924b8a097c496806191.tar.gz gentoo-2-e71623a97ba63543bfcd6924b8a097c496806191.tar.bz2 gentoo-2-e71623a97ba63543bfcd6924b8a097c496806191.zip |
Remove static useflag, thanks to Jakub Moc in bug #165766.
(Portage version: 2.1.2-r8)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libvisual/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libvisual/libvisual-0.2.0.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/media-libs/libvisual/ChangeLog b/media-libs/libvisual/ChangeLog index 4078d97a7dfc..bb22fa04736a 100644 --- a/media-libs/libvisual/ChangeLog +++ b/media-libs/libvisual/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libvisual -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisual/ChangeLog,v 1.26 2006/12/10 16:15:43 opfer Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisual/ChangeLog,v 1.27 2007/02/07 14:46:54 flameeyes Exp $ + + 07 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> libvisual-0.2.0.ebuild: + Remove static useflag, thanks to Jakub Moc in bug #165766. 10 Dec 2006; Christian Faulhammer <opfer@gentoo.org> libvisual-0.2.0.ebuild: diff --git a/media-libs/libvisual/libvisual-0.2.0.ebuild b/media-libs/libvisual/libvisual-0.2.0.ebuild index fcf7f7ecc560..4c4240d5f1be 100644 --- a/media-libs/libvisual/libvisual-0.2.0.ebuild +++ b/media-libs/libvisual/libvisual-0.2.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisual/libvisual-0.2.0.ebuild,v 1.10 2006/12/10 16:15:43 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisual/libvisual-0.2.0.ebuild,v 1.11 2007/02/07 14:46:54 flameeyes Exp $ inherit eutils flag-o-matic @@ -11,7 +11,7 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~mips ppc ppc64 sparc x86" -IUSE="static" +IUSE="" DEPEND="" @@ -23,9 +23,9 @@ src_unpack() { } src_compile() { - # force MMX on x86 to fix compilation, see bug 146335 + # force MMX on x86 to fix compilation, see bug 146335 use x86 && append-flags -mmmx - econf $(use_enable static) || die + econf --enable-static --enable-shared || die emake || die } |