Gentoo Archives: gentoo-commits

From: "Thomas Beierlein (tomjbe)" <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-radio/xastir: ChangeLog xastir-2.0.0-r2.ebuild
Date: Mon, 27 Aug 2012 18:46:12
Message-Id: 20120827183740.40DD620969@flycatcher.gentoo.org
1 tomjbe 12/08/27 18:37:40
2
3 Modified: ChangeLog xastir-2.0.0-r2.ebuild
4 Log:
5 Do not builtin shapelib if sci-libs/shapelib is not installed. Build without shapelib support instead. (bug #430704). Thanks Diego.
6
7 (Portage version: 2.1.11.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 media-radio/xastir/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/xastir/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/xastir/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/xastir/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-radio/xastir/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 18 Jun 2012 09:04:04 -0000 1.23
23 +++ ChangeLog 27 Aug 2012 18:37:39 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-radio/xastir
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/ChangeLog,v 1.23 2012/06/18 09:04:04 ago Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/ChangeLog,v 1.24 2012/08/27 18:37:39 tomjbe Exp $
29 +
30 + 27 Aug 2012; Thomas Beierlein <tomjbe@g.o> xastir-2.0.0-r2.ebuild,
31 + +files/xastir-2.0.0-no-builtin-shapelib.diff:
32 + Do not use builtin shapelib if sci-libs/shapelib is not installed. Build
33 + without shapelib support instead. (bug #430704). Thanks Diego.
34
35 18 Jun 2012; Agostino Sarubbo <ago@g.o> -xastir-1.9.8.ebuild:
36 Remove old
37
38
39
40 1.3 media-radio/xastir/xastir-2.0.0-r2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild?r1=1.2&r2=1.3
45
46 Index: xastir-2.0.0-r2.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- xastir-2.0.0-r2.ebuild 4 Jun 2012 17:51:52 -0000 1.2
53 +++ xastir-2.0.0-r2.ebuild 27 Aug 2012 18:37:40 -0000 1.3
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild,v 1.2 2012/06/04 17:51:52 tomjbe Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/xastir-2.0.0-r2.ebuild,v 1.3 2012/08/27 18:37:40 tomjbe Exp $
59
60 EAPI=2
61 inherit autotools eutils
62 @@ -43,12 +43,15 @@
63 # fix breakage with >=sci-libs/proj-4.8
64 epatch "${FILESDIR}"/${P}-proj48.diff
65
66 + # do not use builtin shapelib if sci-libs/shapelib is not installed
67 + # instead build without shapelib support (bug #430704)
68 + epatch "${FILESDIR}"/${P}-no-builtin-shapelib.diff
69 +
70 eautoreconf
71 }
72
73 src_configure() {
74 - econf --without-graphicsmagick \
75 - --with-pcre \
76 + econf --with-pcre \
77 --with-shapelib \
78 --with-dbfawk \
79 --without-ax25 \