Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/jpeg: ChangeLog jpeg-8b.ebuild
Date: Mon, 23 Aug 2010 19:29:28
Message-Id: 20100823192925.5487120051@flycatcher.gentoo.org
1 ssuominen 10/08/23 19:29:25
2
3 Modified: ChangeLog jpeg-8b.ebuild
4 Log:
5 USE="static-libs".
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.116 media-libs/jpeg/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jpeg/ChangeLog?rev=1.116&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jpeg/ChangeLog?rev=1.116&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jpeg/ChangeLog?r1=1.115&r2=1.116
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v
18 retrieving revision 1.115
19 retrieving revision 1.116
20 diff -u -r1.115 -r1.116
21 --- ChangeLog 13 Aug 2010 12:45:24 -0000 1.115
22 +++ ChangeLog 23 Aug 2010 19:29:25 -0000 1.116
23 @@ -1,6 +1,9 @@
24 # ChangeLog for media-libs/jpeg
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.115 2010/08/13 12:45:24 josejx Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.116 2010/08/23 19:29:25 ssuominen Exp $
28 +
29 + 23 Aug 2010; Samuli Suominen <ssuominen@g.o> jpeg-8b.ebuild:
30 + USE="static-libs".
31
32 13 Aug 2010; Joseph Jezak <josejx@g.o> jpeg-8b.ebuild:
33 Marked ppc stable for bug #325825.
34
35
36
37 1.8 media-libs/jpeg/jpeg-8b.ebuild
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild?rev=1.8&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild?rev=1.8&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild?r1=1.7&r2=1.8
42
43 Index: jpeg-8b.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v
46 retrieving revision 1.7
47 retrieving revision 1.8
48 diff -u -r1.7 -r1.8
49 --- jpeg-8b.ebuild 13 Aug 2010 12:45:24 -0000 1.7
50 +++ jpeg-8b.ebuild 23 Aug 2010 19:29:25 -0000 1.8
51 @@ -1,8 +1,8 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.7 2010/08/13 12:45:24 josejx Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-8b.ebuild,v 1.8 2010/08/23 19:29:25 ssuominen Exp $
56
57 -EAPI="2"
58 +EAPI="3"
59
60 DEB_PV="7-1"
61 DEB_PN="libjpeg7"
62 @@ -18,7 +18,7 @@
63 LICENSE="as-is"
64 SLOT="0"
65 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"
66 -IUSE=""
67 +IUSE="static-libs"
68
69 src_unpack() {
70 unpack ${A}
71 @@ -38,11 +38,14 @@
72 econf \
73 --disable-dependency-tracking \
74 --enable-shared \
75 - --enable-static \
76 + $(use_enable static-libs static) \
77 --enable-maxmem=64
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die
82 dodoc change.log example.c README *.txt
83 + # Do this after -Wl,--as-needed has been default for long enough,
84 + # to minimize the impact for users. Uncomment 01-01-2011.
85 + # find "${ED}" -name '*.la' -exec rm -f '{}' +
86 }