diff options
author | Steve Arnold <nerdboy@gentoo.org> | 2007-02-08 06:17:15 +0000 |
---|---|---|
committer | Steve Arnold <nerdboy@gentoo.org> | 2007-02-08 06:17:15 +0000 |
commit | a296cda35aa1342b4db42cda22091a44bcea6906 (patch) | |
tree | b86341df2c7ca09ed2d21de050e4c9c44f48a7a1 /media-libs/libexif/libexif-0.6.13-r2.ebuild | |
parent | Stable on ppc wrt bug #165606. (diff) | |
download | gentoo-2-a296cda35aa1342b4db42cda22091a44bcea6906.tar.gz gentoo-2-a296cda35aa1342b4db42cda22091a44bcea6906.tar.bz2 gentoo-2-a296cda35aa1342b4db42cda22091a44bcea6906.zip |
corrected erroneous use of static use flag (bug 165358)
(Portage version: 2.1.2-r7)
Diffstat (limited to 'media-libs/libexif/libexif-0.6.13-r2.ebuild')
-rw-r--r-- | media-libs/libexif/libexif-0.6.13-r2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media-libs/libexif/libexif-0.6.13-r2.ebuild b/media-libs/libexif/libexif-0.6.13-r2.ebuild index c2a3add1b0a5..0fc7836551e8 100644 --- a/media-libs/libexif/libexif-0.6.13-r2.ebuild +++ b/media-libs/libexif/libexif-0.6.13-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.13-r2.ebuild,v 1.1 2007/02/04 20:26:44 griffon26 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.13-r2.ebuild,v 1.2 2007/02/08 06:17:15 nerdboy Exp $ inherit autotools eutils @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${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="doc nls static" +IUSE="doc nls" DEPEND="dev-util/pkgconfig doc? ( app-doc/doxygen ) @@ -38,7 +38,7 @@ src_compile() { local my_conf use doc && my_conf="--with-doc-dir=/usr/share/doc/${PF}" use nls || my_conf="${my_conf} --without-libintl-prefix" - econf $(use_enable nls) $(use_enable doc) $(use_enable static) \ + econf $(use_enable nls) $(use_enable doc) \ --with-pic --disable-rpath ${my_conf} || die emake || die } |