diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2007-06-16 00:57:46 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2007-06-16 00:57:46 +0000 |
commit | ef999df90078b67600c253a7fc81d58c5e21b607 (patch) | |
tree | 4e121fd0541ebc14180360acf77eb2abb1bde378 /app-misc/roadnav | |
parent | Use wxwidgets.eclass, bug #175632. (diff) | |
download | gentoo-2-ef999df90078b67600c253a7fc81d58c5e21b607.tar.gz gentoo-2-ef999df90078b67600c253a7fc81d58c5e21b607.tar.bz2 gentoo-2-ef999df90078b67600c253a7fc81d58c5e21b607.zip |
Use wxwidgets.eclass, bug #175632.
(Portage version: 2.1.3_rc3)
Diffstat (limited to 'app-misc/roadnav')
-rw-r--r-- | app-misc/roadnav/ChangeLog | 5 | ||||
-rw-r--r-- | app-misc/roadnav/roadnav-0.16.ebuild | 16 |
2 files changed, 14 insertions, 7 deletions
diff --git a/app-misc/roadnav/ChangeLog b/app-misc/roadnav/ChangeLog index fe464f7bd448..4402e1d3a462 100644 --- a/app-misc/roadnav/ChangeLog +++ b/app-misc/roadnav/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-misc/roadnav # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/roadnav/ChangeLog,v 1.4 2007/05/31 02:06:58 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/roadnav/ChangeLog,v 1.5 2007/06/16 00:57:46 dirtyepic Exp $ + + 16 Jun 2007; Ryan Hill <dirtyepic@gentoo.org> roadnav-0.16.ebuild: + Use wxwidgets.eclass, bug #175632. 31 May 2007; Bryan Østergaard <kloeri@gentoo.org> metadata.xml: Remove myself as I'm retiring. diff --git a/app-misc/roadnav/roadnav-0.16.ebuild b/app-misc/roadnav/roadnav-0.16.ebuild index 6ea4c0477223..2d2c999070f3 100644 --- a/app-misc/roadnav/roadnav-0.16.ebuild +++ b/app-misc/roadnav/roadnav-0.16.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/roadnav/roadnav-0.16.ebuild,v 1.1 2006/11/27 22:48:33 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/roadnav/roadnav-0.16.ebuild,v 1.2 2007/06/16 00:57:46 dirtyepic Exp $ + +inherit wxwidgets DESCRIPTION="Roadnav is a street map application with routing and GPS support" HOMEPAGE="http://roadnav.sourceforge.net" @@ -11,18 +13,20 @@ SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="gps festival openstreetmap scripting" -DEPEND=">=x11-libs/wxGTK-2.6.2-r1 +DEPEND="=x11-libs/wxGTK-2.6* =dev-libs/libroadnav-${PV} gps? ( sci-geosciences/gpsd ) festival? ( app-accessibility/festival )" -RDEPEND=">=x11-libs/wxGTK-2.6.2-r1 +RDEPEND="=x11-libs/wxGTK-2.6* gps? ( sci-geosciences/gpsd ) festival? ( app-accessibility/festival )" src_compile() { + WX_GTK_VER=2.6 + need-wxwidgets gtk2 + econf \ - --with-wx-config=wx-config-2.6 \ - --with-wx-config-path=/usr/bin \ + --with-wx-config=${WX_CONFIG} \ $(use_enable gps gpsd) \ $(use_enable openstreetmap) \ $(use_enable scripting) \ |