blob: ba10137eb50977d8eac7f36c7839e7959371af79 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gmt/gmt-4.5.0-r1.ebuild,v 1.1 2009/07/26 18:29:55 cryos Exp $
inherit multilib autotools eutils
GSHHS="GSHHS2.0"
DESCRIPTION="Powerful map generator"
HOMEPAGE="http://gmt.soest.hawaii.edu/"
SRC_URI="ftp://falcon.grdl.noaa.gov/pub/gmt/GMT${PV}_src.tar.bz2
ftp://falcon.grdl.noaa.gov/pub/gmt/GMT${PV}_share.tar.bz2
ftp://falcon.grdl.noaa.gov/pub/gmt/${GSHHS}_coast.tar.bz2
doc? ( ftp://falcon.grdl.noaa.gov/pub/gmt/GMT${PV}_doc.tar.bz2 )
gmtsuppl? ( ftp://falcon.grdl.noaa.gov/pub/gmt/GMT${PV}_suppl.tar.bz2 )
gmtfull? ( ftp://falcon.grdl.noaa.gov/pub/gmt/${GSHHS}_full.tar.bz2 )
gmthigh? ( ftp://falcon.grdl.noaa.gov/pub/gmt/${GSHHS}_high.tar.bz2 )
gmttria? ( ftp://falcon.grdl.noaa.gov/pub/gmt/GMT${PV}_triangle.tar.bz2 )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gmtsuppl gmtfull gmthigh gmttria doc"
RDEPEND=">=sci-libs/netcdf-3.5.0"
DEPEND="${RDEPEND}
gmtsuppl? ( >=sys-devel/autoconf-2.58 )"
S="${WORKDIR}/GMT${PV}"
src_unpack() {
unpack ${A} || die "Unpacking failed."
epatch "${FILESDIR}/${P}-no-strip.patch"
mv -f "${WORKDIR}/share/"* "${S}/share/" || die "Moving sources failed."
cd "${S}"
if use gmtsuppl; then
WANT_AUTOCONF=2.5 eautoreconf || die "autoconf failed."
fi
}
src_compile() {
# In make process will include /lib and /include to NETCDFHOME
export NETCDFHOME="/usr"
local myconf=""
if use gmttria; then
myconf="${myconf} --enable-triangle"
fi
econf \
--libdir=/usr/$(get_libdir)/${P} \
--includedir=/usr/include/${P} \
--datadir=/usr/share/${P} \
${myconf} \
|| die "Configure failed."
local mymake=
if use gmtsuppl; then
mymake="${mymake} suppl"
fi
emake gmt ${mymake} || die "Make ${mymake} failed."
}
src_install() {
local mymake=
if use gmtsuppl; then
mymake="${mymake} install-suppl"
fi
if use doc; then
mymake="${mymake} install-doc"
mkdir -p www/gmt/doc/html
fi
einstall \
includedir=${D}/usr/include/${P} \
libdir=${D}/usr/$(get_libdir)/${P} \
datadir=${D}/usr/share/${P} \
install \
install-data \
install-man \
${mymake} \
|| die "Make install failed."
#now some docs
dodoc README
cp -r "${S}/{examples,tutorial}" "${D}/usr/share/doc/${PF}/"
# Move the HTML and PDF docs to the docs directory. Old location breaks FHS
# compliance, and is not used by web servers generally.
if use doc; then
mv "${D}/usr/www/gmt/doc/pdf/*.pdf" "${D}/usr/share/doc/${PF}/"
mv "${D}/usr/www/gmt/doc/html" "${D}/usr/share/doc/${PF}/"
rm -rf "${D}/usr/www"
fi
# dodir /etc/env.d
# echo "GMTHOME=/usr/share/${P}" > ${D}/etc/env.d/99gmt
cd "${D}/usr/share/${P}"
ln -s . share
}
pkg_postinst() {
einfo "The default installation is the cleanest one"
einfo "To include more resources use the syntax:"
einfo "USE=\"gmt_flags\" emerge gmt"
einfo "Possible GMT flags are:"
einfo "gmthigh -> High resolution bathimetry database;"
einfo "gmtfull -> Full resolution bathimetry database;"
einfo "gmttria -> Non GNU triangulate method, but more efficient;"
einfo "gmtsuppl -> Supplementary functions for GMT;"
}
|