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.ebuild
Date: Fri, 30 Dec 2011 12:10:16
Message-Id: 20111230121006.AC85B2004B@flycatcher.gentoo.org
1 ssuominen 11/12/30 12:10:06
2
3 Modified: ChangeLog
4 Added: tiff-4.0.0.ebuild
5 Log:
6 Version bump wrt #396465 by Stefan Talpalaru
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.177 media-libs/tiff/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.177&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.177&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?r1=1.176&r2=1.177
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
20 retrieving revision 1.176
21 retrieving revision 1.177
22 diff -u -r1.176 -r1.177
23 --- ChangeLog 10 Oct 2011 20:40:39 -0000 1.176
24 +++ ChangeLog 30 Dec 2011 12:10:06 -0000 1.177
25 @@ -1,6 +1,11 @@
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.176 2011/10/10 20:40:39 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.177 2011/12/30 12:10:06 ssuominen Exp $
30 +
31 +*tiff-4.0.0 (30 Dec 2011)
32 +
33 + 30 Dec 2011; Samuli Suominen <ssuominen@g.o> +tiff-4.0.0.ebuild:
34 + Version bump wrt #396465 by Stefan Talpalaru
35
36 *tiff-3.9.5-r1 (10 Oct 2011)
37
38
39
40
41 1.1 media-libs/tiff/tiff-4.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tiff-4.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.0.ebuild,v 1.1 2011/12/30 12:10:06 ssuominen Exp $
51
52 EAPI=4
53 inherit libtool
54
55 DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images"
56 HOMEPAGE="http://www.remotesensing.org/libtiff/"
57 SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz
58 ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz"
59
60 LICENSE="as-is"
61 SLOT="0"
62 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"
63 IUSE="+cxx jbig jpeg lzma static-libs zlib"
64
65 RDEPEND="jpeg? ( virtual/jpeg )
66 jbig? ( media-libs/jbigkit )
67 lzma? ( app-arch/xz-utils )
68 zlib? ( sys-libs/zlib )"
69 DEPEND="${RDEPEND}"
70
71 src_prepare() {
72 elibtoolize
73 }
74
75 src_configure() {
76 econf \
77 $(use_enable static-libs static) \
78 $(use_enable zlib) \
79 $(use_enable jpeg) \
80 $(use_enable jbig) \
81 $(use_enable lzma) \
82 $(use_enable cxx) \
83 --without-x \
84 --with-docdir="${EPREFIX}"/usr/share/doc/${PF}
85 }
86
87 src_install() {
88 default
89
90 rm -f \
91 "${ED}"/usr/lib*/libtiff*.la \
92 "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION}
93 }