blob: 2db8ff3314ad5edb9710c476485b4d1ac55ee038 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gpsdrive/gpsdrive-2.09-r1.ebuild,v 1.1 2007/01/13 05:38:16 nerdboy Exp $
inherit autotools
DESCRIPTION="GPS navigation system with NMEA and Garmin support, zoomable map display, waypoints, etc."
HOMEPAGE="http://gpsdrive.kraftvoll.at/index.shtml"
SRC_URI="http://gpsdrive.kraftvoll.at/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
# submit bug for ppc64
IUSE="garmin mysql static"
DEPEND="sys-devel/gettext
dev-util/pkgconfig
>=x11-libs/gtk+-2.8.12
>=dev-libs/libpcre-4.2"
RDEPEND="${DEPEND}
mysql? ( dev-db/mysql )"
WANT_AUTOMAKE=1.7
WANT_AUTOCONF=2.5
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-configure.patch
sed -i -e "s:^EXTRA_DIST.*$::" Makefile.am \
-e "s:^pkgdata_DATA.*$::" Makefile.am
eautoreconf
}
src_compile() {
econf \
--enable-shared $(use_enable garmin) $(use_enable static) \
|| die "econf failed"
emake || die "compile failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS create.sql CREDITS Changelog FAQ* GPS-receivers NMEA.txt \
README* TODO wp2sql
}
pkg_postinst() {
if use mysql; then
echo -e "\n"
elog "Be sure to read ${ROOT}usr/share/doc/${PF}/README.SQL.gz for information"
elog "on using MySQL with gpsdrive.\n"
fi
}
|