blob: b47b8115c1f43d9759446b05af12c3243fd45776 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsbabel/gpsbabel-1.3.3.ebuild,v 1.1 2007/03/01 14:34:51 djay Exp $
inherit eutils
DESCRIPTION="GPSBabel is a waypoints, tracks and routes converter in variety of form"
HOMEPAGE="http://www.gpsbabel.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc usb debug"
RDEPEND="dev-libs/expat
usb? ( dev-libs/libusb )
debug? ( dev-util/efence )"
DEPEND="doc? ( virtual/tetex dev-libs/libxslt dev-libs/libxml2 dev-lang/perl )
${RDEPEND}"
src_unpack(){
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}.patch || die "Unable to apply ${P}.patch"
}
src_compile() {
local myconf="";
if ! use usb;then
myconf="${myconf} --with-libusb=no"
fi
if use doc; then
myconf="${myconf} --with-doc=${S}/doc/manual"
fi
econf ${myconf} $(use_enable debug efence)
emake || die "emake failed"
if use doc; then
emake doc || die "Documentation generation failed"
cd "${S}/doc"
make || die "Documentation generation failed"
fi
}
src_install() {
cd "${S}"
make DESTDIR="${D}" install || die "Install failed"
dodoc README* || die "Unable to install gpsbabel doc"
if use doc; then
cd "${S}"/doc/
dohtml ./manual/htmldoc-${PV}/* || die "Unable to install htmldoc"
docinto manual
dodoc doc.dvi babelfront2.eps || \
die "Unable to install gpsbabel documentation"
fi
}
pkg_postinst(){
if use debug; then
einfo "If you need to debug gpsbabel, please use : gpsbabel-debug"
fi
}
|