diff options
author | Marek Szuba <marecki@gentoo.org> | 2016-08-11 00:25:44 +0200 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2016-08-12 12:09:19 +0200 |
commit | f84d5f38689d291273eab2a3d735f07711eecde9 (patch) | |
tree | f2946ba1970429343de49176dd8c9e2ba624185d /sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild | |
parent | sci-geosciences/osm-gps-map: move version 0.7.3 to slot 2 (diff) | |
download | gentoo-f84d5f38689d291273eab2a3d735f07711eecde9.tar.gz gentoo-f84d5f38689d291273eab2a3d735f07711eecde9.tar.bz2 gentoo-f84d5f38689d291273eab2a3d735f07711eecde9.zip |
sci-geosciences/osm-gps-map: add ebuild for version 1.1.0
Among other changes the new version uses a different library name, links
against gtk3 instead of gtk2, and provides Python bindings via PyGObject rather
than directly.
Package-Manager: portage-2.3.0
Diffstat (limited to 'sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild')
-rw-r--r-- | sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild b/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild new file mode 100644 index 000000000000..bf30899bd182 --- /dev/null +++ b/sci-geosciences/osm-gps-map/osm-gps-map-1.1.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="A GTK+ viewer for OpenStreetMap files" +HOMEPAGE="http://nzjrs.github.com/osm-gps-map/" +SRC_URI="https://github.com/nzjrs/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="static-libs" + +RDEPEND=" + >=dev-libs/glib-2.16.0:2 + >=net-libs/libsoup-2.4.0:2.4 + >=x11-libs/cairo-1.8.0 + >=x11-libs/gtk+-3.0:3[introspection] + dev-libs/gobject-introspection" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/${P}-no-maintainer-mode.patch" +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} |