blob: a79fa129c2753346904780c01c23bbb97ed756b6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/mapnik/mapnik-0.5.1.ebuild,v 1.3 2008/09/25 06:01:47 nerdboy Exp $
inherit eutils autotools
DESCRIPTION="A Free Toolkit for developing mapping applications."
HOMEPAGE="http://www.mapnik.org/"
SRC_URI="mirror://berlios/mapnik/mapnik_src-${PV}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug doc postgres python bidi"
RDEPEND=">=dev-libs/boost-1.33.0
>=media-libs/libpng-1.2.12
>=media-libs/jpeg-6b
>=media-libs/tiff-3.8.2
>=sys-libs/zlib-1.2.3
>=media-libs/freetype-2.1.10
>=sci-libs/proj-4.4.9
dev-libs/libxml2
sci-libs/gdal
postgres? ( >=dev-db/postgis-1.1.2 )
python? ( >=dev-lang/python-2.4 )
bidi? ( dev-libs/fribidi )"
DEPEND="${RDEPEND}
>=dev-lang/python-1.5.2
>=dev-util/scons-0.9.8"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-include-fix.patch
sed -i -e "s:/usr/local:/usr:g" SConstruct || die "sed failed"
eautoreconf
}
src_compile() {
MAKEOPTS="${MAKEOPTS} INPUT_PLUGINS=shape,raster,postgis"
MAKEOPTS="${MAKEOPTS} PROJ_INCLUDES=/usr/include"
MAKEOPTS="${MAKEOPTS} PROJ_LIBS=/usr/$(get_libdir)"
MAKEOPTS="${MAKEOPTS} XMLPARSER=libxml2"
if ! use python ; then
MAKEOPTS="${MAKEOPTS} BINDINGS=none"
fi
if use debug ; then
MAKEOPTS="${MAKEOPTS} DEBUG=1"
fi
if use bidi ; then
MAKEOPTS="${MAKEOPTS} BIDI=1"
fi
if use postgres ; then
MAKEOPTS="${MAKEOPTS} PGSQL_INCLUDES=/usr/include/postgresql"
fi
scons ${MAKEOPTS} || die "scons make failed"
}
src_install() {
scons ${MAKEOPTS} DESTDIR="${D}" install || die "Unable to install Mapnik"
if use doc ; then
dohtml -r docs/epydocs/*
fi
}
|