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: tiff-4.0.3-r1.ebuild ChangeLog
Date: Sat, 03 Nov 2012 04:42:12
Message-Id: 20121103044149.C3052215F3@flycatcher.gentoo.org
1 ssuominen 12/11/03 04:41:49
2
3 Modified: ChangeLog
4 Added: tiff-4.0.3-r1.ebuild
5 Log:
6 Fix output colors of tiff2pdf when JPEG compression is enabled wrt #145055 by Syed Amer Gilani
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.218 media-libs/tiff/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.218&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.218&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/ChangeLog?r1=1.217&r2=1.218
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
20 retrieving revision 1.217
21 retrieving revision 1.218
22 diff -u -r1.217 -r1.218
23 --- ChangeLog 7 Oct 2012 09:01:42 -0000 1.217
24 +++ ChangeLog 3 Nov 2012 04:41:49 -0000 1.218
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/tiff
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.217 2012/10/07 09:01:42 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.218 2012/11/03 04:41:49 ssuominen Exp $
30 +
31 +*tiff-4.0.3-r1 (03 Nov 2012)
32 +
33 + 03 Nov 2012; Samuli Suominen <ssuominen@g.o> +tiff-4.0.3-r1.ebuild,
34 + +files/tiff-4.0.3-tiff2pdf-colors.patch:
35 + Fix output colors of `tiff2pdf` when JPEG compression is enabled wrt #145055 by
36 + Syed Amer Gilani
37
38 07 Oct 2012; Pacho Ramos <pacho@g.o> metadata.xml:
39 Drop maintainer due retirement, #24135.
40
41
42
43 1.1 media-libs/tiff/tiff-4.0.3-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tiff/tiff-4.0.3-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tiff-4.0.3-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/tiff-4.0.3-r1.ebuild,v 1.1 2012/11/03 04:41:49 ssuominen Exp $
53
54 EAPI=4
55 inherit eutils libtool
56
57 DESCRIPTION="Tag Image File Format (TIFF) library"
58 HOMEPAGE="http://www.remotesensing.org/libtiff/"
59 SRC_URI="http://download.osgeo.org/libtiff/${P}.tar.gz
60 ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz"
61
62 LICENSE="as-is"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~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"
65 IUSE="+cxx jbig jpeg lzma static-libs zlib"
66
67 RDEPEND="jpeg? ( virtual/jpeg )
68 jbig? ( media-libs/jbigkit )
69 lzma? ( app-arch/xz-utils )
70 zlib? ( sys-libs/zlib )"
71 DEPEND="${RDEPEND}"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-4.0.3-tiff2pdf-colors.patch #145055
75 elibtoolize
76 }
77
78 src_configure() {
79 econf \
80 $(use_enable static-libs static) \
81 $(use_enable zlib) \
82 $(use_enable jpeg) \
83 $(use_enable jbig) \
84 $(use_enable lzma) \
85 $(use_enable cxx) \
86 --without-x \
87 --with-docdir="${EPREFIX}"/usr/share/doc/${PF}
88 }
89
90 src_install() {
91 default
92 prune_libtool_files --all
93 rm -f "${ED}"/usr/share/doc/${PF}/{COPYRIGHT,README*,RELEASE-DATE,TODO,VERSION}
94 }