blob: f792add5f8501cb3de1c023114c7ac1e8fb7a781 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-radio/xastir/xastir-1.9.8.ebuild,v 1.2 2010/05/19 14:52:16 mr_bones_ Exp $
EAPI=2
inherit autotools eutils multilib
DESCRIPTION="X Amateur Station Tracking and Information Reporting"
HOMEPAGE="http://xastir.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="festival gdal geotiff imagemagick"
DEPEND="x11-libs/openmotif
x11-libs/libXpm
x11-apps/xfontsel
dev-libs/libpcre
net-misc/curl
sys-libs/db
sci-libs/shapelib
geotiff? ( sci-libs/proj
sci-libs/libgeotiff
media-libs/tiff )
gdal? ( sci-libs/gdal )
imagemagick? ( media-gfx/imagemagick )
festival? ( app-accessibility/festival )"
RDEPEND="${DEPEND}"
src_prepare() {
# fix hardcoded /usr/local paths in scripts
epatch "${FILESDIR}"/${P}-scripts.diff
# and patch libdir
for f in scripts/permutations.pl scripts/test_coord.pl \
scripts/toporama250k.pl scripts/toporama50k.pl; do
sed -i -e "s:/usr/lib:/usr/$(get_libdir):g" "${f}" \
|| die "sed failed on ${f}"
done
# fix for DESTDIR
epatch "${FILESDIR}"/${P}-Destdir.diff
eautoreconf
}
src_configure() {
econf --without-graphicsmagick \
--with-pcre \
--with-shapelib \
--with-dbfawk \
--without-ax25 \
--without-gpsman \
$(use_with geotiff libproj) \
$(use_with geotiff) \
$(use_with gdal) \
$(use_with imagemagick) \
$(use_with festival)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -rf "${D}"/usr/share/doc/${P}
dodoc AUTHORS ChangeLog FAQ README README.Contributing \
README.Getting-Started README.MAPS || die "dodoc failed"
}
pkg_postinst() {
elog "Kernel mode AX.25 and GPSman library not supported."
elog
elog "Remember you have to be root to add addditional scripts,"
elog "maps and other configuration data under /usr/share/xastir"
elog "and /usr/$(get_libdir)/xastir."
}
|