blob: 6787b35f80174fc0481a69a52d8ff716c33c07e3 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/geos/geos-2.2.1.ebuild,v 1.8 2007/07/13 06:57:51 mr_bones_ Exp $
WANT_AUTOMAKE="latest"
WANT_AUTOCONF="latest"
inherit eutils autotools
DESCRIPTION="Geometry Engine - Open Source"
HOMEPAGE="http://geos.refractions.net"
SRC_URI="http://geos.refractions.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE="doc python"
RDEPEND="virtual/libc"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )\
python? ( dev-lang/python dev-lang/swig )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gcc-41.patch
cd "${S}"
eautoreconf
}
src_compile() {
econf --enable-static || die "Error: econf failed"
emake || die "Error: emake failed"
if use python; then
einfo "Compilling PyGEOS"
cd ${S}/swig/python
swig -c++ -python -modern -o geos_wrap.cxx ../geos.i
python setup.py build
fi
}
src_install(){
into /usr
make DESTDIR="${D}" install
dodoc AUTHORS COPYING INSTALL NEWS README TODO
if use doc; then
cd ${S}/doc
make doxygen-html
dohtml -r doxygen_docs/html/*
fi
if use python; then
einfo "Intalling PyGEOS"
cd ${S}/swig/python
python setup.py install --prefix="${D}/usr/"
insinto /usr/share/doc/${PF}/python
doins README.txt tests/*.py
insinto /usr/share/doc/${PF}/python/cases
doins tests/cases/*
fi
}
|