60 lines
1.4 KiB
Bash
60 lines
1.4 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/roadnav/roadnav-0.19.ebuild,v 1.4 2012/09/05 07:15:31 jlec Exp $
|
|
|
|
EAPI=2
|
|
WX_GTK_VER=2.8
|
|
|
|
inherit eutils wxwidgets
|
|
|
|
DESCRIPTION="Roadnav is a street map application with routing and GPS support"
|
|
HOMEPAGE="http://roadnav.sourceforge.net"
|
|
SRC_URI="mirror://sourceforge/roadnav/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE="gps festival flite openstreetmap scripting"
|
|
|
|
DEPEND="x11-libs/wxGTK:2.8[X]
|
|
~dev-libs/libroadnav-${PV}
|
|
festival? ( app-accessibility/festival )
|
|
flite? ( app-accessibility/flite )
|
|
gps? ( sci-geosciences/gpsd )"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-gcc45.patch
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable festival) \
|
|
$(use_enable flite) \
|
|
$(use_enable gps gpsd) \
|
|
$(use_enable openstreetmap) \
|
|
$(use_enable scripting) \
|
|
--with-wx-config=${WX_CONFIG} \
|
|
|| die "econf failed"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "install failed"
|
|
|
|
# generic or empty
|
|
for f in NEWS COPYING INSTALL; do
|
|
rm -f "${D}"/usr/share/doc/${PN}/${f}
|
|
done
|
|
|
|
# --docdir is broken and hardcoded to ${PN}
|
|
mv "${D}"/usr/share/doc/${PN} "${D}"/usr/share/doc/${P}
|
|
|
|
domenu "${S}"/roadnav.desktop
|
|
}
|
|
|
|
pkg_postinst() {
|
|
echo
|
|
elog "After upgrading to ${P} you will need to recompile your maps."
|
|
echo
|
|
}
|