Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/gdal: ChangeLog gdal-1.7.2.ebuild
Date: Sat, 31 Jul 2010 14:02:21
Message-Id: 20100731133537.61EEB2CE15@corvid.gentoo.org
1 scarabeus 10/07/31 13:35:37
2
3 Modified: ChangeLog gdal-1.7.2.ebuild
4 Log:
5 Upate to fix linking failitures. Tiff is harddep so dont useflag it.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.93 sci-libs/gdal/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/ChangeLog?rev=1.93&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/ChangeLog?rev=1.93&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/ChangeLog?r1=1.92&r2=1.93
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v
18 retrieving revision 1.92
19 retrieving revision 1.93
20 diff -u -r1.92 -r1.93
21 --- ChangeLog 30 Jul 2010 12:27:51 -0000 1.92
22 +++ ChangeLog 31 Jul 2010 13:35:36 -0000 1.93
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sci-libs/gdal
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v 1.92 2010/07/30 12:27:51 scarabeus Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/ChangeLog,v 1.93 2010/07/31 13:35:36 scarabeus Exp $
28 +
29 + 31 Jul 2010; Tomáš Chvátal <scarabeus@g.o> gdal-1.7.2.ebuild:
30 + Upate to fix linking failitures. Tiff is harddep so dont useflag it.
31
32 *gdal-1.7.2 (30 Jul 2010)
33
34
35
36
37 1.2 sci-libs/gdal/gdal-1.7.2.ebuild
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild?r1=1.1&r2=1.2
42
43 Index: gdal-1.7.2.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- gdal-1.7.2.ebuild 30 Jul 2010 12:27:51 -0000 1.1
50 +++ gdal-1.7.2.ebuild 31 Jul 2010 13:35:36 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild,v 1.1 2010/07/30 12:27:51 scarabeus Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gdal/gdal-1.7.2.ebuild,v 1.2 2010/07/31 13:35:36 scarabeus Exp $
56
57 EAPI="3"
58
59 @@ -18,10 +18,12 @@
60 LICENSE="MIT"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x86-linux ~x86-macos"
62
63 -IUSE="curl debug doc ecwj2k fits geos gif gml hdf5 jpeg jpeg2k mysql netcdf odbc ogdi pam perl png postgres python ruby sqlite tiff threads"
64 +IUSE="curl debug doc ecwj2k fits geos gif gml hdf5 jpeg jpeg2k mysql netcdf odbc ogdi pam perl png postgres python ruby sqlite threads"
65
66 RDEPEND="
67 dev-libs/expat
68 + >=media-libs/tiff-4.0.0_beta6
69 + sci-libs/libgeotiff
70 sys-libs/zlib
71 curl? ( net-misc/curl )
72 ecwj2k? ( sci-libs/libecwj2 )
73 @@ -48,10 +50,6 @@
74 python? ( dev-python/numpy )
75 ruby? ( >=dev-lang/ruby-1.8.4.20060226 )
76 sqlite? ( >=dev-db/sqlite-3 )
77 - tiff? (
78 - >=media-libs/tiff-4.0.0_beta6
79 - sci-libs/libgeotiff
80 - )
81 "
82
83 DEPEND="${RDEPEND}
84 @@ -96,6 +94,7 @@
85 # bsb - legal issues
86 # oracle - disabled, i dont have and can't test
87 # ingres - same story as oracle oci
88 + # tiff is a hard dep
89 econf \
90 --enable-shared \
91 --disable-static \
92 @@ -117,10 +116,13 @@
93 --without-epsilon \
94 --without-idb \
95 --without-sde \
96 + --without-libtool \
97 --with-libz="${EPREFIX}/usr/" \
98 --with-ogr \
99 --with-grib \
100 --with-vfk \
101 + --with-libtiff \
102 + --with-geotiff \
103 $(use_enable debug) \
104 $(use_with postgres pg) \
105 $(use_with fits cfitsio) \
106 @@ -128,8 +130,6 @@
107 $(use_with png) \
108 $(use_with jpeg) \
109 $(use_with jpeg pcidsk) \
110 - $(use_with tiff libtiff) \
111 - $(use_with tiff geotiff) \
112 $(use_with gif) \
113 $(use_with ogdi ogdi "${EPREFIX}"/usr) \
114 $(use_with hdf5) \