diff options
author | 2010-08-23 19:29:25 +0000 | |
---|---|---|
committer | 2010-08-23 19:29:25 +0000 | |
commit | eb24b5d0ca0dd5c9ecf23f1c841520855ee383fc (patch) | |
tree | 71d87af1477937c15017b8d97b9c935c8571c61c /media-libs/jpeg | |
parent | Version bump via perl-bump experimental tool. (diff) | |
download | gentoo-2-eb24b5d0ca0dd5c9ecf23f1c841520855ee383fc.tar.gz gentoo-2-eb24b5d0ca0dd5c9ecf23f1c841520855ee383fc.tar.bz2 gentoo-2-eb24b5d0ca0dd5c9ecf23f1c841520855ee383fc.zip |
USE="static-libs".
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/jpeg')
-rw-r--r-- | media-libs/jpeg/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/jpeg/jpeg-8b.ebuild | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/media-libs/jpeg/ChangeLog b/media-libs/jpeg/ChangeLog index 30a736f52fe2..166d3196058b 100644 --- a/media-libs/jpeg/ChangeLog +++ b/media-libs/jpeg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/jpeg # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.115 2010/08/13 12:45:24 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.116 2010/08/23 19:29:25 ssuominen Exp $ + + 23 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> jpeg-8b.ebuild: + USE="static-libs". 13 Aug 2010; Joseph Jezak <josejx@gentoo.org> jpeg-8b.ebuild: Marked ppc stable for bug #325825. diff --git a/media-libs/jpeg/jpeg-8b.ebuild b/media-libs/jpeg/jpeg-8b.ebuild index bb16fff21e00..d7267135adca 100644 --- a/media-libs/jpeg/jpeg-8b.ebuild +++ b/media-libs/jpeg/jpeg-8b.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.7 2010/08/13 12:45:24 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.8 2010/08/23 19:29:25 ssuominen Exp $ -EAPI="2" +EAPI="3" DEB_PV="7-1" DEB_PN="libjpeg7" @@ -18,7 +18,7 @@ SRC_URI="http://www.ijg.org/files/${PN}src.v${PV}.tar.gz LICENSE="as-is" SLOT="0" KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" +IUSE="static-libs" src_unpack() { unpack ${A} @@ -38,11 +38,14 @@ src_configure() { econf \ --disable-dependency-tracking \ --enable-shared \ - --enable-static \ + $(use_enable static-libs static) \ --enable-maxmem=64 } src_install() { emake DESTDIR="${D}" install || die dodoc change.log example.c README *.txt + # Do this after -Wl,--as-needed has been default for long enough, + # to minimize the impact for users. Uncomment 01-01-2011. + # find "${ED}" -name '*.la' -exec rm -f '{}' + } |