blob: 5ea27f3dc19289a10e0e37accfb68ed72b72faf7 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/shapelib/shapelib-1.3.0-r1.ebuild,v 1.3 2012/08/05 21:53:55 bicatali Exp $
EAPI=4
inherit eutils toolchain-funcs multilib versionator
DESCRIPTION="Library for manipulating ESRI Shapefiles"
HOMEPAGE="http://shapelib.maptools.org/"
SRC_URI="http://download.osgeo.org/${PN}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs"
DEPEND=""
RDEPEND=""
static_to_shared() {
local libstatic=${1}; shift
local libname=$(basename ${libstatic%.a})
local soname=${libname}$(get_libname $(get_version_component_range 1-2))
local libdir=$(dirname ${libstatic})
einfo "Making ${soname} from ${libstatic}"
if [[ ${CHOST} == *-darwin* ]] ; then
${LINK:-$(tc-getCC)} ${LDFLAGS} \
-dynamiclib -install_name "${EPREFIX}"/usr/lib/"${soname}" \
-Wl,-all_load -Wl,${libstatic} \
"$@" -o ${libdir}/${soname} || die "${soname} failed"
else
${LINK:-$(tc-getCC)} ${LDFLAGS} \
-shared -Wl,-soname=${soname} \
-Wl,--whole-archive ${libstatic} -Wl,--no-whole-archive \
"$@" -o ${libdir}/${soname} || die "${soname} failed"
[[ $(get_version_component_count) -gt 1 ]] && \
ln -s ${soname} ${libdir}/${libname}$(get_libname $(get_major_version))
ln -s ${soname} ${libdir}/${libname}$(get_libname)
fi
}
pkg_setup() {
tc-export CC
}
src_prepare() {
epatch "${FILESDIR}"/${P}-respect-user.patch
}
src_compile() {
emake CFLAGS="${CFLAGS} -fPIC" lib
static_to_shared lib*.a
rm *.o *.a
emake
}
src_test() {
emake test
}
src_install() {
dobin shp{create,dump,add} dbf{create,dump,add}
insinto /usr/include/libshp
doins shapefil.h
use test && dobin shptest
dolib.so lib*$(get_libname)*
dodoc ChangeLog README*
use static-libs && dolib.a lib*.a
}
|