From: | "Tomas Chvatal (scarabeus)" <scarabeus@g.o> |
---|---|
To: | gentoo-commits@l.g.o |
Subject: | [gentoo-commits] gentoo-x86 commit in sci-libs/libgeotiff: ChangeLog libgeotiff-1.3.0_rc2.ebuild libgeotiff-1.2.1.ebuild libgeotiff-1.3.0_beta1.ebuild |
Date: | Mon, 26 Apr 2010 22:29:32 |
Message-Id: | 20100426222926.A6A022C04C@corvid.gentoo.org |
1 | scarabeus 10/04/26 22:29:26 |
2 | |
3 | Modified: ChangeLog |
4 | Added: libgeotiff-1.3.0_rc2.ebuild |
5 | Removed: libgeotiff-1.2.1.ebuild |
6 | libgeotiff-1.3.0_beta1.ebuild |
7 | Log: |
8 | Version bump. Remove older. |
9 | (Portage version: 2.2_rc67/cvs/Linux x86_64) |
10 | |
11 | Revision Changes Path |
12 | 1.30 sci-libs/libgeotiff/ChangeLog |
13 | |
14 | file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/ChangeLog?rev=1.30&view=markup |
15 | plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/ChangeLog?rev=1.30&content-type=text/plain |
16 | diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/ChangeLog?r1=1.29&r2=1.30 |
17 | |
18 | Index: ChangeLog |
19 | =================================================================== |
20 | RCS file: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v |
21 | retrieving revision 1.29 |
22 | retrieving revision 1.30 |
23 | diff -u -r1.29 -r1.30 |
24 | --- ChangeLog 17 Apr 2010 17:14:03 -0000 1.29 |
25 | +++ ChangeLog 26 Apr 2010 22:29:26 -0000 1.30 |
26 | @@ -1,6 +1,13 @@ |
27 | # ChangeLog for sci-libs/libgeotiff |
28 | # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 |
29 | -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.29 2010/04/17 17:14:03 nerdboy Exp $ |
30 | +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.30 2010/04/26 22:29:26 scarabeus Exp $ |
31 | + |
32 | +*libgeotiff-1.3.0_rc2 (26 Apr 2010) |
33 | + |
34 | + 26 Apr 2010; Tomáš Chvátal <scarabeus@g.o> |
35 | + -libgeotiff-1.2.1.ebuild, -libgeotiff-1.3.0_beta1.ebuild, |
36 | + +libgeotiff-1.3.0_rc2.ebuild: |
37 | + Version bump. Remove older. |
38 | |
39 | *libgeotiff-1.2.5 (17 Apr 2010) |
40 | |
41 | |
42 | |
43 | |
44 | 1.1 sci-libs/libgeotiff/libgeotiff-1.3.0_rc2.ebuild |
45 | |
46 | file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.3.0_rc2.ebuild?rev=1.1&view=markup |
47 | plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.3.0_rc2.ebuild?rev=1.1&content-type=text/plain |
48 | |
49 | Index: libgeotiff-1.3.0_rc2.ebuild |
50 | =================================================================== |
51 | # Copyright 1999-2010 Gentoo Foundation |
52 | # Distributed under the terms of the GNU General Public License v2 |
53 | # $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.3.0_rc2.ebuild,v 1.1 2010/04/26 22:29:26 scarabeus Exp $ |
54 | |
55 | EAPI="3" |
56 | inherit base |
57 | |
58 | MY_P=${P/_rc/RC} |
59 | |
60 | DESCRIPTION="Library for reading TIFF files with embedded tags for geographic (cartographic) information" |
61 | HOMEPAGE="http://geotiff.osgeo.org/" |
62 | SRC_URI="http://download.osgeo.org/geotiff/${PN}/${MY_P}.tar.gz" |
63 | |
64 | LICENSE="GPL-2" |
65 | SLOT="0" |
66 | KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" |
67 | IUSE="debug doc static-libs" |
68 | |
69 | RDEPEND=" |
70 | media-libs/jpeg |
71 | >=media-libs/tiff-3.9.1 |
72 | sci-libs/proj |
73 | sys-libs/zlib" |
74 | |
75 | DEPEND="${RDEPEND} |
76 | doc? ( app-doc/doxygen )" |
77 | |
78 | S=${WORKDIR}/${MY_P/RC*/} |
79 | |
80 | src_configure() { |
81 | econf \ |
82 | $(use_enable static_libs static) \ |
83 | --enable-debug=$(use debug && echo yes || echo no) \ |
84 | --with-jpeg=/usr/ \ |
85 | --with-zip=/usr/ |
86 | |
87 | } |
88 | src_compile() { |
89 | base_src_compile |
90 | |
91 | if use doc; then |
92 | mkdir -p docs/api |
93 | cp "${FILESDIR}"/Doxyfile Doxyfile |
94 | doxygen -u Doxyfile || die "updating doxygen config failed" |
95 | doxygen Doxyfile || die "docs generation failed" |
96 | fi |
97 | } |
98 | |
99 | src_install() { |
100 | base_src_install |
101 | |
102 | dodoc README ChangeLog || die |
103 | use doc && { dohtml docs/api/* || die ; } |
104 | } |
105 | |
106 | pkg_postinst() { |
107 | echo |
108 | ewarn "You should rebuild any packages built against ${PN} by running:" |
109 | ewarn "# revdep-rebuild --library='libgeotiff.so.*'" |
110 | ewarn "or using preserved-rebuild features of portage-2.2:" |
111 | ewarn "# emerge @preserved-rebuild" |
112 | echo |
113 | } |