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-4.0.0-r1.ebuild
Date: Tue, 10 Jan 2012 18:54:01
Message-Id: 20120110185349.3A7972004C@flycatcher.gentoo.org
1 ssuominen 12/01/10 18:53:49
2
3 Modified: ChangeLog
4 Added: tiff-4.0.0-r1.ebuild
5 Log:
6 Insert -llzma to the Libs.private: -line in the libtiff-4.pc for static linking wrt #396531 by Alan Hourihane
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.179 media-libs/tiff/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.179&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.179&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?r1=1.178&r2=1.179
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
20 retrieving revision 1.178
21 retrieving revision 1.179
22 diff -u -r1.178 -r1.179
23 --- ChangeLog 30 Dec 2011 12:11:10 -0000 1.178
24 +++ ChangeLog 10 Jan 2012 18:53:49 -0000 1.179
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/tiff
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.178 2011/12/30 12:11:10 ssuominen Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.179 2012/01/10 18:53:49 ssuominen Exp $
31 +
32 +*tiff-4.0.0-r1 (10 Jan 2012)
33 +
34 + 10 Jan 2012; Samuli Suominen <ssuominen@g.o> +tiff-4.0.0-r1.ebuild,
35 + +files/tiff-4.0.0-missing_lzma_pkgconfig.patch:
36 + Insert -llzma to the Libs.private: -line in the libtiff-4.pc for static
37 + linking wrt #396531 by Alan Hourihane
38
39 30 Dec 2011; Samuli Suominen <ssuominen@g.o>
40 -files/tiff-3.9.2-CVE-2009-2347.patch, -tiff-4.0.0_beta7.ebuild:
41
42
43
44 1.1 media-libs/tiff/tiff-4.0.0-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.0-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.0-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tiff-4.0.0-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.0-r1.ebuild,v 1.1 2012/01/10 18:53:49 ssuominen Exp $
54
55 EAPI=4
56 inherit eutils libtool
57
58 DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images"
59 HOMEPAGE="http://www.remotesensing.org/libtiff/"
60 SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz
61 ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz"
62
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 ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
66 IUSE="+cxx jbig jpeg lzma static-libs zlib"
67
68 RDEPEND="jpeg? ( virtual/jpeg )
69 jbig? ( media-libs/jbigkit )
70 lzma? ( app-arch/xz-utils )
71 zlib? ( sys-libs/zlib )"
72 DEPEND="${RDEPEND}"
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${P}-missing_lzma_pkgconfig.patch #396531
76 elibtoolize
77 }
78
79 src_configure() {
80 econf \
81 $(use_enable static-libs static) \
82 $(use_enable zlib) \
83 $(use_enable jpeg) \
84 $(use_enable jbig) \
85 $(use_enable lzma) \
86 $(use_enable cxx) \
87 --without-x \
88 --with-docdir="${EPREFIX}"/usr/share/doc/${PF}
89 }
90
91 src_install() {
92 default
93
94 rm -f \
95 "${ED}"/usr/lib*/libtiff*.la \
96 "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION}
97 }