blob: 04a6de022b589d83706936405ef1ffa5bd0caf6d (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libgeotiff/libgeotiff-1.2.1-r1.ebuild,v 1.9 2009/09/23 20:08:23 patrick Exp $
inherit eutils flag-o-matic
DESCRIPTION="Library for reading TIFF files with embedded tags for geographic (cartographic) information"
HOMEPAGE="http://remotesensing.org/geotiff/geotiff.html"
SRC_URI="ftp://ftp.remotesensing.org/pub/geotiff/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ~mips ppc ppc64 sparc x86"
IUSE=""
DEPEND=">=media-libs/tiff-3.7.0
sci-libs/proj"
src_compile() {
append-flags -fPIC
econf || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
dobin bin/{listgeo,geotifcp,makegeo} || die "dobin failed"
dolib.a libgeotiff.a
dolib.so libgeotiff.so.${PV}
dosym libgeotiff.so.${PV} usr/$(get_libdir)/libgeotiff.so || die "dosym failed"
insinto usr/include
doins libxtiff/*.h
doins *.h
doins *.inc
insinto usr/share/epsg_csv
doins csv/*.csv
}
|