Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/tiff: ChangeLog tiff-3.8.2-r3.ebuild
Date: Fri, 28 Dec 2007 13:01:26
Message-Id: E1J8Eq1-0001Rx-0F@stork.gentoo.org
1 maekke 07/12/28 13:01:21
2
3 Modified: ChangeLog
4 Added: tiff-3.8.2-r3.ebuild
5 Log:
6 fix the documentation dir wrt bug #142770 and quotes
7 (Portage version: 2.1.4_rc11)
8
9 Revision Changes Path
10 1.97 media-libs/tiff/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.97&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/ChangeLog?rev=1.97&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/ChangeLog?r1=1.96&r2=1.97
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v
19 retrieving revision 1.96
20 retrieving revision 1.97
21 diff -u -r1.96 -r1.97
22 --- ChangeLog 12 Jul 2007 08:54:26 -0000 1.96
23 +++ ChangeLog 28 Dec 2007 13:01:20 -0000 1.97
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/tiff
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.96 2007/07/12 08:54:26 uberlord Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tiff/ChangeLog,v 1.97 2007/12/28 13:01:20 maekke Exp $
29 +
30 +*tiff-3.8.2-r3 (28 Dec 2007)
31 +
32 + 28 Dec 2007; Markus Meier <maekke@g.o> +tiff-3.8.2-r3.ebuild:
33 + fix the documentation dir wrt bug #142770 and quotes
34
35 12 Jul 2007; Roy Marples <uberlord@g.o> tiff-3.8.2-r2.ebuild:
36 Keyworded ~sparc-fbsd
37
38
39
40 1.1 media-libs/tiff/tiff-3.8.2-r3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/tiff-3.8.2-r3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/tiff/tiff-3.8.2-r3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tiff-3.8.2-r3.ebuild
46 ===================================================================
47 # Copyright 1999-2007 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.8.2-r3.ebuild,v 1.1 2007/12/28 13:01:20 maekke Exp $
50
51 inherit eutils libtool
52
53 DESCRIPTION="Library for manipulation of TIFF (Tag Image File Format) images"
54 HOMEPAGE="http://remotesensing.org/libtiff/"
55 SRC_URI="ftp://ftp.remotesensing.org/pub/libtiff/${P}.tar.gz
56 mirror://gentoo/${P}-tiff2pdf.patch.bz2"
57
58 LICENSE="as-is"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
61 IUSE="jpeg jbig nocxx zlib"
62
63 DEPEND="jpeg? ( >=media-libs/jpeg-6b )
64 jbig? ( >=media-libs/jbigkit-1.6-r1 )
65 zlib? ( >=sys-libs/zlib-1.1.3-r2 )"
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70 epatch "${WORKDIR}"/${P}-tiff2pdf.patch || die "epatch tiff2pdf failed"
71 epatch "${FILESDIR}"/${P}-tiffsplit.patch || die "epatch tiffsplit failed"
72 if use jbig; then
73 epatch "${FILESDIR}"/${PN}-jbig.patch || die "epatch jbig failed"
74 fi
75 epatch "${FILESDIR}"/${P}-goo-sec.patch || die "epatch goo-sec failed"
76 elibtoolize
77 }
78
79 src_compile() {
80 econf \
81 $(use_enable !nocxx cxx) \
82 $(use_enable zlib) \
83 $(use_enable jpeg) \
84 $(use_enable jbig) \
85 --with-pic --without-x \
86 --with-docdir=/usr/share/doc/${PF} \
87 || die "econf failed"
88 emake || die "emake failed"
89 }
90
91 src_install() {
92 make install DESTDIR="${D}" || die "make install failed"
93 dodoc README TODO VERSION
94 }
95
96 pkg_postinst() {
97 echo
98 elog "JBIG support is intended for Hylafax fax compression, so we"
99 elog "really need more feedback in other areas (most testing has"
100 elog "been done with fax). Be sure to recompile anything linked"
101 elog "against tiff if you rebuild it with jbig support."
102 echo
103 }
104
105
106
107 --
108 gentoo-commits@g.o mailing list