Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libspatialindex: libspatialindex-1.8.1.ebuild ChangeLog
Date: Sun, 30 Jun 2013 19:18:21
Message-Id: 20130630191814.E88A82171C@flycatcher.gentoo.org
1 hasufell 13/06/30 19:18:14
2
3 Modified: ChangeLog
4 Added: libspatialindex-1.8.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.5 sci-libs/libspatialindex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 25 Jun 2013 12:57:40 -0000 1.4
24 +++ ChangeLog 30 Jun 2013 19:18:14 -0000 1.5
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-libs/libspatialindex
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/ChangeLog,v 1.4 2013/06/25 12:57:40 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/ChangeLog,v 1.5 2013/06/30 19:18:14 hasufell Exp $
30 +
31 +*libspatialindex-1.8.1 (30 Jun 2013)
32 +
33 + 30 Jun 2013; Julian Ospald <hasufell@g.o>
34 + +libspatialindex-1.8.1.ebuild, +files/libspatialindex-1.8.1-QA.patch,
35 + +files/libspatialindex-1.8.1-pkgconfig.patch:
36 + version bump
37
38 25 Jun 2013; Agostino Sarubbo <ago@g.o> libspatialindex-1.8.0.ebuild:
39 Stable for amd64, wrt bug #474422
40
41
42
43 1.1 sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libspatialindex-1.8.1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.1.ebuild,v 1.1 2013/06/30 19:18:14 hasufell Exp $
53
54 EAPI=5
55
56 inherit autotools eutils
57
58 MY_PN="spatialindex-src"
59 MY_P="${MY_PN}-${PV}"
60
61 DESCRIPTION="General framework for developing spatial indices"
62 HOMEPAGE="http://libspatialindex.github.com/"
63 SRC_URI="http://download.osgeo.org/libspatialindex/${MY_P}.tar.bz2"
64 LICENSE="MIT"
65
66 KEYWORDS="~amd64 ~x86"
67 SLOT="0"
68 IUSE="debug static-libs"
69
70 S=${WORKDIR}/${MY_P}
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${P}-{QA,pkgconfig}.patch
74 eautoreconf
75 }
76
77 src_configure() {
78 econf \
79 $(use_enable static-libs static) \
80 $(use_enable debug)
81 }
82
83 src_install() {
84 default
85 use static-libs || prune_libtool_files
86 }