blob: 2a0623ef86c4d036a0e7dac771332b8098e7e369 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/ogdi/ogdi-3.1.4.ebuild,v 1.4 2005/07/11 18:02:02 corsair Exp $
DESCRIPTION="open geographical datastore interface"
HOMEPAGE="http://ogdi.sourceforge.net"
SRC_URI="mirror://sourceforge/ogdi/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ppc64 sparc ~x86"
IUSE=""
DEPEND="sci-libs/proj
sys-libs/zlib
dev-libs/expat"
src_compile() {
export TOPDIR="${S}"
export TARGET="linux"
export CFG="release"
export LD_LIBRARY_PATH="${TOPDIR}/bin/${TARGET}"
econf --with-proj --with-zlib --with-expat || die "econf failed"
make || die "make failed"
}
src_install() {
#make \
# prefix=${D}usr \
# mandir=${D}usr/share/man \
# infodir=${D}usr/share/info \
# TOPDIR="${S}" TARGET="linux" LD_LIBRARY_PATH="${TOPDIR}/bin/${TARGET}" \
# install || die "make install failed"
einstall TOPDIR="${S}" TARGET="linux" \
LD_LIBRARY_PATH="${TOPDIR}/bin/${TARGET}" || die "einstall failed"
dodoc ChangeLog LICENSE NEWS README VERSION
}
|