blob: ae8c6e8df55d7f4276df999f1e8d3dd37611311b (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/ogdi/ogdi-3.1.6.ebuild,v 1.6 2013/02/27 07:31:51 jer Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="Open Geographical Datastore Interface, a GIS support library"
HOMEPAGE="http://ogdi.sourceforge.net/"
SRC_URI="mirror://sourceforge/ogdi/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="static-libs"
DEPEND="
<sci-libs/proj-4.8.0
sys-libs/zlib
dev-libs/expat"
RDEPEND="${DEPEND}"
src_prepare() {
rm -rf external
epatch \
"${FILESDIR}"/${P}-unbundle-libs.patch \
"${FILESDIR}"/${P}-fpic.patch
sed 's:O2:O9:g' -i configure || die
}
src_configure() {
export TOPDIR="${S}"
export TARGET=`uname`
export CFG="release"
export LD_LIBRARY_PATH=$TOPDIR/bin/${TARGET}
econf \
--with-projlib="-L${EPREFIX}/usr/$(get_libdir) -lproj" \
--with-zlib --with-expat
}
src_compile() {
# bug #299239
emake -j1 \
CC="$(tc-getCC)" \
LD="$(tc-getCC)" \
SHLIB_LD="$(tc-getCC)"
}
src_install() {
mv "${S}"/bin/${TARGET}/*.so* "${S}"/lib/Linux/. || die "lib move failed"
dobin "${S}"/bin/${TARGET}/*
insinto /usr/include
doins ogdi/include/ecs.h ogdi/include/ecs_util.h
dolib.so lib/${TARGET}/lib*
use static-libs && dolib.a lib/${TARGET}/static/*.a
# dosym libogdi31.so /usr/$(get_libdir)/libogdi.so || die "symlink failed"
dodoc ChangeLog NEWS README
}
|