Gentoo Archives: gentoo-commits

From: Sam Jorna <wraeth@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/postgis/
Date: Sun, 27 Mar 2016 12:02:10
Message-Id: 1459079852.102c4692e6c8c5e39ff926e13733c3d17359fef6.wraeth@gentoo
1 commit: 102c4692e6c8c5e39ff926e13733c3d17359fef6
2 Author: Sam Jorna <wraeth <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 10:44:05 2016 +0000
4 Commit: Sam Jorna <wraeth <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 11:57:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=102c4692
7
8 dev-db/postgis: bump to 2.2.2
9
10 Package-Manager: portage-2.2.28
11
12 dev-db/postgis/Manifest | 1 +
13 dev-db/postgis/postgis-2.2.2.ebuild | 145 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 146 insertions(+)
15
16 diff --git a/dev-db/postgis/Manifest b/dev-db/postgis/Manifest
17 index 76af672..342e9eb 100644
18 --- a/dev-db/postgis/Manifest
19 +++ b/dev-db/postgis/Manifest
20 @@ -4,3 +4,4 @@ DIST postgis-2.1.1.tar.gz 6717940 SHA256 f55acf056362e7e78766bec7a403e02a3b6b087
21 DIST postgis-2.1.8.tar.gz 6811272 SHA256 7c2380b895fe7bda34c2e70deab3fcf4c12b13ab40d7501cdaa6fa36f1a6c662 SHA512 e8aeb739a1ecf95b224a3908d2af3aa38933b56c63713af30d14243653745436165b418a3368601a699b744f6fe61ce645c980319eb159395d68166a3815c5f4 WHIRLPOOL b6675fecbb922379bd50c351abe1553fdbda53543fce56451c688e25a3fa2e9d0813d8f3a349b623b85fcb4016fc4710f6746a224ba7673ec0d2106c7635d3d1
22 DIST postgis-2.2.0.tar.gz 10164837 SHA256 66f0f8480d535959b8bb9abb5ee5d602d1001413ca770df120baf3de627f9e91 SHA512 e9954d5c4aa381536ae87c32bb37b166a7ede0f9b9fc96cfb300dc2350b9351f40870429f64e755c3371be692a1956f5f8ea21733b64aab490f42d2232ae5d8f WHIRLPOOL 639c6b278dd6e5c3a11ed1d8de179ee72a4e6e9c54ba1e74e585e9233167a3c2cdca0704c47966cf757db22221ebbc8970a68375894a6179970ab6c0e6c637a2
23 DIST postgis-2.2.1.tar.gz 10069889 SHA256 0fe500b0250203aac656bfa8f42f8458b63f33258404844e066e0e535988fa09 SHA512 e580fc6556e1d8e2ba36d62795650852d303ce4c935c8e538d14f0bf0f00c3c27dcb034c42dfafa0c8995eb0f28f71119c8ada4ceecaa8ca9897d0653552bb2f WHIRLPOOL a91f5e44de49b1b41d90188a4f7842c23d41b8c589416014273f4a1e655e0f3013176f7341bac0ea7004c3f7af86634981f3c0695d3e848e45798eeb5f7bfdeb
24 +DIST postgis-2.2.2.tar.gz 10071528 SHA256 40232391f8f66a6dc740ebb26088e568c8ccb663666998616c71c3bdaeed4163 SHA512 c5ad97abe52b7ec67e52a06e05e694099eaf2daacb7dc73c85dce71a61c269c755ec401f1077a1760cfb930ccd42fb1d34ebfb79990f52f5bc3aafa9db2e9ce4 WHIRLPOOL 265630298436c79023a4a1263ca0f4208ba7ece62d5a992fac9914ee6489926d94d23ea6d0f4c0557caa47a1032f4ef0b5d71b22f95ed0e11c5f265aafa3c48a
25
26 diff --git a/dev-db/postgis/postgis-2.2.2.ebuild b/dev-db/postgis/postgis-2.2.2.ebuild
27 new file mode 100644
28 index 0000000..3442637
29 --- /dev/null
30 +++ b/dev-db/postgis/postgis-2.2.2.ebuild
31 @@ -0,0 +1,145 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=6
37 +POSTGRES_COMPAT=( 9.{1,2,3,4,5} )
38 +
39 +inherit autotools eutils versionator
40 +
41 +MY_PV=$(replace_version_separator 3 '')
42 +MY_P="${PN}-${MY_PV}"
43 +S="${WORKDIR}/${MY_P}"
44 +
45 +DESCRIPTION="Geographic Objects for PostgreSQL"
46 +HOMEPAGE="http://postgis.net"
47 +SRC_URI="http://download.osgeo.org/postgis/source/${MY_P}.tar.gz"
48 +LICENSE="GPL-2"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
51 +IUSE="doc gtk static-libs test"
52 +
53 +RDEPEND="
54 + || (
55 + dev-db/postgresql:9.5[server]
56 + dev-db/postgresql:9.4[server]
57 + dev-db/postgresql:9.3[server]
58 + dev-db/postgresql:9.2[server]
59 + dev-db/postgresql:9.1[server]
60 + )
61 + dev-libs/json-c
62 + dev-libs/libxml2:2
63 + >=sci-libs/geos-3.5.0
64 + >=sci-libs/proj-4.6.0
65 + >=sci-libs/gdal-1.10.0
66 + gtk? ( x11-libs/gtk+:2 )
67 +"
68 +
69 +DEPEND="${RDEPEND}
70 + doc? (
71 + app-text/docbook-xsl-stylesheets
72 + app-text/docbook-xml-dtd:4.5
73 + dev-libs/libxslt
74 + || (
75 + media-gfx/imagemagick[png]
76 + media-gfx/graphicsmagick[imagemagick,png]
77 + )
78 + )
79 + virtual/pkgconfig
80 + test? ( dev-util/cunit )
81 +"
82 +
83 +PGIS="$(get_version_component_range 1-2)"
84 +
85 +REQUIRED_USE="test? ( doc )"
86 +
87 +# Needs a running psql instance, doesn't work out of the box
88 +RESTRICT="test"
89 +
90 +MAKEOPTS+=' -j1'
91 +
92 +# These modules are built using the same *FLAGS that were used to build
93 +# dev-db/postgresql. The right thing to do is to ignore the current
94 +# *FLAGS settings.
95 +QA_FLAGS_IGNORED="usr/lib(64)?/(rt)?postgis-${PGIS}\.so"
96 +
97 +postgres_check_slot() {
98 + if ! declare -p POSTGRES_COMPAT &>/dev/null; then
99 + die 'POSTGRES_COMPAT not declared.'
100 + fi
101 +
102 +# Don't die because we can't run postgresql-config during pretend.
103 +[[ "$EBUILD_PHASE" = "pretend" \
104 + && -z "$(which postgresql-config 2> /dev/null)" ]] && return 0
105 +
106 + local res=$(echo ${POSTGRES_COMPAT[@]} \
107 + | grep -c $(postgresql-config show 2> /dev/null) 2> /dev/null)
108 +
109 + if [[ "$res" -eq "0" ]] ; then
110 + eerror "PostgreSQL slot must be set to one of: "
111 + eerror " ${POSTGRES_COMPAT[@]}"
112 + return 1
113 + fi
114 +
115 + return 0
116 +}
117 +
118 +pkg_pretend() {
119 + postgres_check_slot || die
120 +}
121 +
122 +pkg_setup() {
123 + postgres_check_slot || die
124 + export PGSLOT="$(postgresql-config show)"
125 +}
126 +
127 +src_prepare() {
128 + epatch "${FILESDIR}/${PN}-2.2.0-arflags.patch"
129 +
130 + eapply_user
131 +
132 + local AT_M4DIR="macros"
133 + eautoreconf
134 +}
135 +
136 +src_configure() {
137 + local myargs=""
138 + use gtk && myargs+=" --with-gui"
139 + econf \
140 + --with-pgconfig="/usr/lib/postgresql-${PGSLOT}/bin/pg_config" \
141 + ${myargs}
142 +}
143 +
144 +src_compile() {
145 + emake
146 + emake -C topology
147 +
148 + if use doc ; then
149 + emake comments
150 + emake cheatsheets
151 + emake -C doc html
152 + fi
153 +}
154 +
155 +src_install() {
156 + emake DESTDIR="${D}" install
157 + use doc && emake DESTDIR="${D}" comments-install
158 + emake -C topology DESTDIR="${D}" install
159 + dobin ./utils/postgis_restore.pl
160 +
161 + dodoc CREDITS TODO loader/README.* doc/*txt
162 +
163 + use doc && dohtml -r doc/html/*
164 +
165 + docinto topology
166 + dodoc topology/{TODO,README}
167 +
168 + use static-libs || find "${ED}" -name '*.a' -delete
169 +}
170 +
171 +pkg_postinst() {
172 + postgresql-config update
173 +
174 + elog "To finish installing PostGIS, follow the directions detailed at:"
175 + elog "http://postgis.net/docs/manual-${MY_PV}/postgis_installation.html#create_new_db_extensions"
176 +}