diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-09 13:31:10 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-09 13:31:10 +0000 |
commit | e41a07474e1a75e386f05be066654e5a52796bc6 (patch) | |
tree | 2c8da507a075ffaa69f33441c9a893fcbcb59d1f /media-libs/ming | |
parent | Stable on amd64 wrt bug #374887 (diff) | |
download | gentoo-2-e41a07474e1a75e386f05be066654e5a52796bc6.tar.gz gentoo-2-e41a07474e1a75e386f05be066654e5a52796bc6.tar.bz2 gentoo-2-e41a07474e1a75e386f05be066654e5a52796bc6.zip |
USE="static-libs" and remove useless libtool archive.
(Portage version: 2.2.0_alpha63/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/ming')
-rw-r--r-- | media-libs/ming/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/ming/ming-0.4.3-r1.ebuild | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/media-libs/ming/ChangeLog b/media-libs/ming/ChangeLog index 16983c21f52e..4771d90ae639 100644 --- a/media-libs/ming/ChangeLog +++ b/media-libs/ming/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/ming # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.79 2011/06/28 15:24:19 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ChangeLog,v 1.80 2011/10/09 13:31:10 ssuominen Exp $ + + 09 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> ming-0.4.3-r1.ebuild: + USE="static-libs" and remove useless libtool archive. 28 Jun 2011; Ole Markus With <olemarkus@gentoo.org> -ming-0.4.3.ebuild: Non-maintainer commit: Removing ebuild depending on older PHP versions. Bug diff --git a/media-libs/ming/ming-0.4.3-r1.ebuild b/media-libs/ming/ming-0.4.3-r1.ebuild index fbce766b9568..eb07fb6d43ff 100644 --- a/media-libs/ming/ming-0.4.3-r1.ebuild +++ b/media-libs/ming/ming-0.4.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.3-r1.ebuild,v 1.4 2011/04/05 05:40:33 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ming/ming-0.4.3-r1.ebuild,v 1.5 2011/10/09 13:31:10 ssuominen Exp $ EAPI="3" @@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/ming/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="+perl +python php" +IUSE="+perl +python php static-libs" RDEPEND="perl? ( dev-lang/perl ) python? ( dev-lang/python ) @@ -64,7 +64,10 @@ src_configure() { # build is sensitive to -O3 (bug #297437) replace-flags -O3 -O2 - econf $(use_enable perl) $(use_enable python) + econf \ + $(use_enable static-libs static) \ + $(use_enable perl) \ + $(use_enable python) } src_compile() { @@ -86,6 +89,8 @@ src_test() { src_install() { emake DESTDIR="${D}" INSTALLDIRS="vendor" install || die + rm -f "${ED}"usr/lib*/lib${PN}.la + fixlocalpod # Get rid of the precompiled stuff, we generate it later. |