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/tiff: ChangeLog tiff-3.9.2.ebuild
Date: Thu, 05 Nov 2009 18:23:19
Message-Id: E1N66zN-0004gT-06@stork.gentoo.org
1 ssuominen 09/11/05 18:23:16
2
3 Modified: ChangeLog
4 Added: tiff-3.9.2.ebuild
5 Log:
6 Version bump wrt #291948, thanks to Jean-Claude Repetto for reporting.
7 (Portage version: 2.2_rc48/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.134 media-libs/tiff/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.134&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.134&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/ChangeLog?r1=1.133&r2=1.134
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
19 retrieving revision 1.133
20 retrieving revision 1.134
21 diff -u -r1.133 -r1.134
22 --- ChangeLog 4 Nov 2009 16:03:58 -0000 1.133
23 +++ ChangeLog 5 Nov 2009 18:23:16 -0000 1.134
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/tiff
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.133 2009/11/04 16:03:58 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.134 2009/11/05 18:23:16 ssuominen Exp $
29 +
30 +*tiff-3.9.2 (05 Nov 2009)
31 +
32 + 05 Nov 2009; Samuli Suominen <ssuominen@g.o> +tiff-3.9.2.ebuild:
33 + Version bump wrt #291948, thanks to Jean-Claude Repetto for reporting.
34
35 04 Nov 2009; Markus Meier <maekke@g.o> tiff-3.9.1.ebuild:
36 amd64/arm/x86 stable, bug #291612
37
38
39
40 1.1 media-libs/tiff/tiff-3.9.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/tiff-3.9.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/tiff-3.9.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tiff-3.9.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-3.9.2.ebuild,v 1.1 2009/11/05 18:23:16 ssuominen Exp $
50
51 EAPI=2
52 inherit eutils libtool
53
54 DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images"
55 HOMEPAGE="http://www.remotesensing.org/libtiff/"
56 SRC_URI="ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz"
57
58 LICENSE="as-is"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
61 IUSE="jpeg jbig +cxx zlib"
62
63 DEPEND="jpeg? ( >=media-libs/jpeg-6b )
64 jbig? ( media-libs/jbigkit )
65 zlib? ( sys-libs/zlib )"
66
67 src_prepare() {
68 epatch "${FILESDIR}"/${PN}-3.8.2-CVE-2009-2285.patch
69 elibtoolize
70 }
71
72 src_configure() {
73 econf \
74 --disable-dependency-tracking \
75 $(use_enable cxx) \
76 $(use_enable zlib) \
77 $(use_enable jpeg) \
78 $(use_enable jbig) \
79 --without-x \
80 --with-docdir=/usr/share/doc/${PF}
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die
85 dodoc ChangeLog README TODO
86 }
87
88 pkg_postinst() {
89 if use jbig; then
90 echo
91 elog "JBIG support is intended for Hylafax fax compression, so we"
92 elog "really need more feedback in other areas (most testing has"
93 elog "been done with fax). Be sure to recompile anything linked"
94 elog "against tiff if you rebuild it with jbig support."
95 echo
96 fi
97 }