blob: 680aa92dca171eb2347e9ffe124949480021f806 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mapserver/mapserver-6.0.1.ebuild,v 1.2 2011/11/17 11:33:21 jlec Exp $
EAPI=3
MY_P="${PN}-${PV/_/-}"
PHP_EXT_OPTIONAL_USE="php"
PHP_EXT_NAME="php_mapscript"
PHP_EXT_S="${WORKDIR}/${MY_P}/mapscript/php/"
PHP_EXT_SKIP_PHPIZE="no"
USE_PHP="php5-3"
PYTHON_DEPEND="python? 2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
PYTHON_MODNAME="mapscript.py"
#USE_RUBY="ruby18 ruby19"
#RUBY_OPTIONAL="yes"
WEBAPP_MANUAL_SLOT=yes
inherit eutils autotools depend.apache webapp distutils perl-module php-ext-source-r2 multilib # ruby-ng
DESCRIPTION="OpenSource development environment for constructing spatially enabled Internet-web applications"
HOMEPAGE="http://mapserver.org/"
SRC_URI="http://download.osgeo.org/mapserver/${MY_P}.tar.gz"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="bidi cairo gdal geos mysql opengl perl php postgis proj python threads tiff xml xslt" # ruby php tcl
RDEPEND="
!${CATEGORY}/${PN}:${PV}
dev-libs/expat
dev-libs/fcgi
>=media-libs/gd-2.0.12[truetype,jpeg,png,zlib]
media-libs/giflib
net-misc/curl
virtual/jpeg
virtual/libiconv
x11-libs/agg
bidi? ( dev-libs/fribidi )
cairo? ( x11-libs/cairo )
gdal? ( >=sci-libs/gdal-1.8.0 )
geos? ( sci-libs/geos )
mysql? ( virtual/mysql )
opengl? (
media-libs/ftgl
media-libs/mesa
)
perl? ( dev-lang/perl )
postgis? ( dev-db/postgis )
proj? ( sci-libs/proj net-misc/curl )
tiff? (
media-libs/tiff
sci-libs/libgeotiff
)
xml? ( dev-libs/libxml2:2 )
xslt? ( dev-libs/libxslt[crypt] )
"
for i in perl python; do
SWIG_DEPEND+=" ${i}? ( >=dev-lang/swig-2.0 )"
done
DEPEND="${RDEPEND} ${SWIG_DEPEND}"
unset SWIG_DEPEND
unset i
need_apache2
S=${WORKDIR}/${MY_P}
_enter_build_dir() {
[[ -z ${1} ]] && die "Missing path argument"
local workdir=${1}
shift
[[ -z ${1} ]] && die "missing command argument"
echo ">>> Running \"${@}\" in work directory \"${workdir}\""
pushd "${workdir}" > /dev/null || die "Failed to enter directory"
${@} || die
popd > /dev/null
}
each_ruby_configure() { ${RUBY} extconf.rb || die ; }
ext-source-r2_src_install() {
local slot
for slot in $(php_get_slots); do
php_init_slot_env ${slot}
insinto "${EXT_DIR}"
newins "${PHP_EXT_NAME}.so" "${PHP_EXT_NAME}.so" || die "Unable to install extension"
done
php-ext-source-r2_createinifiles
}
pkg_setup() {
webapp_pkg_setup
use perl && perl-module_pkg_setup
use python && python_pkg_setup
#use ruby && ruby-ng_pkg_setup
}
src_unpack() {
# unpack A and then copy the php thingies into workdir/php-slot
php-ext-source-r2_src_unpack
# HACK: and then remove it and replace by symlink
for slot in $(php_get_slots); do
rm -rf "${WORKDIR}/${slot}" || die
ln -s "${PHP_EXT_S}" "${WORKDIR}/${slot}" || die
done
}
src_prepare() {
epatch "${FILESDIR}/6.0.0_rc1-ldflags.patch" \
"${FILESDIR}/6.0.0_rc1-bool.patch" \
"${FILESDIR}/6.0.0_rc1-php_ldflags.patch"
eautoreconf
}
src_configure() {
local myopts
if use gdal && use proj ; then
myopts+="
--with-wfs
--with-wcs
--with-wfsclient
--with-wmsclient
"
use xml && myopts+=" --with-sos"
fi
# some scripts require configure time options so place it here
use php && myopts+=" --with-php=${EPREFIX}/usr/$(get_libdir)/php5.3/include/php/"
# sde is ESRI package that you have to buy first
# oraclespatial needs oracle server for testing/usage
# note that some options accept just path, they are not on/off switches!
econf \
--without-oraclespatial \
--without-sde \
--with-libiconv \
--with-jpeg \
--with-gd \
--with-gif="${EPREFIX}/usr/" \
--with-wms \
--with-kml \
--with-curl-config \
--with-agg-svg-symbols \
--with-httpd="${APACHE_BIN}" \
--with-fastcgi \
$(use_with opengl ogl) \
$(use_with opengl ftgl) \
$(use_with proj) \
$(use_with threads) \
$(use_with geos) \
$(use_with gdal) \
$(use_with gdal ogr) \
$(use_with postgis) \
$(use_with mysql) \
$(use_with xml xml2-config) \
$(use_with xslt) \
$(use_with xslt xml-mapfile) \
$(use_with bidi fribidi-config) \
$(use_with cairo) \
${myopts}
#use ruby && _enter_build_dir "${S}/mapscript/ruby" "ln -s ../mapscript.i ./"
#use ruby && _enter_build_dir "${S}/mapscript/ruby" "ruby-ng_src_configure"
}
src_compile() {
emake || die
use python && _enter_build_dir "${S}/mapscript/python" "distutils_src_compile"
use perl && _enter_build_dir "${S}/mapscript/perl" "perl-module_src_prep"
use perl && _enter_build_dir "${S}/mapscript/perl" "perl-module_src_compile"
#use php && php-ext-source-r2_src_compile # already compiled by the emake all
#use ruby && _enter_build_dir "${S}/mapscript/ruby" "ruby-ng_src_compile"
}
src_install() {
local step="Installing"
local extra_dir="fonts tests tests/vera symbols"
local i
dobin shp2img legend shptree shptreevis shp2img legend shptreetst scalebar \
sortshp tile4ms msencrypt mapserver-config
dodoc INSTALL README HISTORY.TXT
for i in ${extra_dir}; do
docinto /usr/share/doc/${PF}/${i}
dodoc ${i}/* || die
done
use python && _enter_build_dir "${S}/mapscript/python" "distutils_src_install"
use perl && _enter_build_dir "${S}/mapscript/perl" "perl-module_src_install"
use perl && _enter_build_dir "${S}/mapscript/perl" "fixlocalpod"
use php && ext-source-r2_src_install
#use ruby && _enter_build_dir "${S}/mapscript/ruby" "ruby-ng_src_install"
webapp_src_preinst
exeinto "${MY_CGIBINDIR}"
doexe "${S}/mapserv"
webapp_src_install
}
pkg_preinst() {
use perl && perl-module_pkg_preinst
}
pkg_postinst() {
webapp_pkg_postinst
use python && distutils_pkg_postinst
use perl && perl-module_pkg_postinst
}
pkg_prerm() {
webapp_pkg_prerm
use perl && perl-module_pkg_prerm
}
pkg_postrm() {
use python && distutils_pkg_postrm
use perl && perl-module_pkg_postrm
}
|