# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-geosciences/viking/viking-0.9.8.ebuild,v 1.3 2009/09/11 22:18:54 volkmar Exp $ inherit eutils DESCRIPTION="Viking is a program to manage GPS data." HOMEPAGE="http://viking.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" IUSE="gps" KEYWORDS="~amd64 ~ppc ~x86" MAKEOPTS="${MAKEOPTS} -j1" RDEPEND=">=x11-libs/gtk+-2.2.0 gps? ( sci-geosciences/gpsd ) net-misc/curl sci-geosciences/gpsbabel" DEPEND=">=x11-libs/gtk+-2.2.0 gps? ( sci-geosciences/gpsd ) dev-util/intltool dev-util/pkgconfig" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/viking-new-gpsd.diff" } src_compile() { econf --enable-openstreetmap \ --enable-expedia \ --enable-terraserver \ --enable-google \ $(use_enable gps realtime-gps-tracking) \ || die "configure failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "Install failed" dodoc README doc/GEOCODED-PHOTOS doc/GETTING-STARTED doc/GPSMAPPER \ || die "Unable to install docs" }