Gentoo Archives: gentoo-commits

From: "Steve Arnold (nerdboy)" <nerdboy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libgeotiff: ChangeLog libgeotiff-1.2.4.ebuild
Date: Mon, 04 Feb 2008 16:44:08
Message-Id: E1JM4QP-0002f9-Ux@stork.gentoo.org
1 nerdboy 08/02/04 16:44:05
2
3 Modified: ChangeLog libgeotiff-1.2.4.ebuild
4 Log:
5 added src_unpack to make portage and flameeyes happy
6 (Portage version: 2.1.4.1)
7
8 Revision Changes Path
9 1.17 sci-libs/libgeotiff/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/ChangeLog?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/ChangeLog?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/ChangeLog?r1=1.16&r2=1.17
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- ChangeLog 1 Sep 2007 20:10:31 -0000 1.16
22 +++ ChangeLog 4 Feb 2008 16:44:05 -0000 1.17
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-libs/libgeotiff
25 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.16 2007/09/01 20:10:31 nerdboy Exp $
27 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/ChangeLog,v 1.17 2008/02/04 16:44:05 nerdboy Exp $
29 +
30 + 04 Feb 2008; Steve Arnold <nerdboy@g.o> libgeotiff-1.2.4.ebuild:
31 + Added src_unpack to make portage and Diego Petten <flameeyes@g.o>
32 + happy...
33
34 01 Sep 2007; Steve Arnold <nerdboy@g.o> libgeotiff-1.2.4.ebuild:
35 updated use doc construct to fix borkage...
36
37
38
39 1.3 sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild?r1=1.2&r2=1.3
44
45 Index: libgeotiff-1.2.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- libgeotiff-1.2.4.ebuild 1 Sep 2007 20:10:31 -0000 1.2
52 +++ libgeotiff-1.2.4.ebuild 4 Feb 2008 16:44:05 -0000 1.3
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.2 2007/09/01 20:10:31 nerdboy Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.4.ebuild,v 1.3 2008/02/04 16:44:05 nerdboy Exp $
59
60 inherit autotools eutils flag-o-matic
61
62 @@ -20,11 +20,16 @@
63
64 WANT_AUTOCONF="latest"
65
66 -src_compile() {
67 - epatch ${FILESDIR}/${P}-soname.patch || die "epatch failed"
68 +src_unpack() {
69 + unpack ${A}
70 + cd "${S}"
71 +
72 + epatch "${FILESDIR}"/${P}-soname.patch || die "epatch failed"
73 filter-ldflags "-Wl,-O1"
74 eautoconf
75 +}
76
77 +src_compile() {
78 econf || die "econf failed"
79 emake -j1 || die "emake failed"
80
81 @@ -37,8 +42,8 @@
82 emake DESTDIR="${D}" install || die "make install failed"
83
84 exeinto /usr/bin
85 - doexe bin/makegeo
86 - use python && doexe csv/*.py
87 + doexe bin/makegeo || die "doexe makegeo failed"
88 + use python && doexe csv/*.py || die "doexe python failed"
89
90 dodoc README
91 newdoc csv/README README.csv
92
93
94
95 --
96 gentoo-commits@l.g.o mailing list