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.3.ebuild ChangeLog
Date: Tue, 23 Sep 2014 16:15:12
Message-Id: 20140923161505.8726560D2@oystercatcher.gentoo.org
1 hasufell 14/09/23 16:15:05
2
3 Modified: ChangeLog
4 Added: libspatialindex-1.8.3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.12-r1/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.6 sci-libs/libspatialindex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 30 Jun 2013 19:18:14 -0000 1.5
24 +++ ChangeLog 23 Sep 2014 16:15:05 -0000 1.6
25 @@ -1,6 +1,12 @@
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.5 2013/06/30 19:18:14 hasufell Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libspatialindex/ChangeLog,v 1.6 2014/09/23 16:15:05 hasufell Exp $
31 +
32 +*libspatialindex-1.8.3 (23 Sep 2014)
33 +
34 + 23 Sep 2014; Julian Ospald <hasufell@g.o>
35 + +libspatialindex-1.8.3.ebuild:
36 + version bump
37
38 *libspatialindex-1.8.1 (30 Jun 2013)
39
40
41
42
43 1.1 sci-libs/libspatialindex/libspatialindex-1.8.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/libspatialindex/libspatialindex-1.8.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libspatialindex-1.8.3.ebuild
49 ===================================================================
50 # Copyright 1999-2014 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.3.ebuild,v 1.1 2014/09/23 16:15:05 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/3"
68 IUSE="debug static-libs"
69
70 S=${WORKDIR}/${MY_P}
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${PN}-1.8.1-QA.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 }