diff options
Diffstat (limited to 'sci-geosciences/gmapcatcher')
4 files changed, 63 insertions, 0 deletions
diff --git a/sci-geosciences/gmapcatcher/Manifest b/sci-geosciences/gmapcatcher/Manifest new file mode 100644 index 000000000000..d55466b775ac --- /dev/null +++ b/sci-geosciences/gmapcatcher/Manifest @@ -0,0 +1 @@ +DIST mapcatcher_0.8.0.4.tar.gz 441925 SHA256 9cc969e9c4fb7fe42e7afb33b5bf60a868c626e2ec957d3003daeecdaa1dae76 SHA512 9612df238fe2c723d4668a4587fbc2028b4c83e2d6372de4f03bf696a3900114a1b08352910c3ab2dc304eb694d2a5469441fbb35d9325750298c0cb02e40734 WHIRLPOOL 9bf330218c136a6d196ff7620e5983640114ecbbf98a611a1c19abe7faf93b1ee13fea0f09e7298f41c65ed08d79acab6e5aa95d11419a9c46e0524296a34839 diff --git a/sci-geosciences/gmapcatcher/files/gmapcatcher-0.8.0.4-setuppy-docs.patch b/sci-geosciences/gmapcatcher/files/gmapcatcher-0.8.0.4-setuppy-docs.patch new file mode 100644 index 000000000000..35efed02a322 --- /dev/null +++ b/sci-geosciences/gmapcatcher/files/gmapcatcher-0.8.0.4-setuppy-docs.patch @@ -0,0 +1,14 @@ +Drop docs from setup.py, distutils-r1 takes care of it. + +--- setup.py.orig 2013-07-25 03:24:35.987668173 +0200 ++++ setup.py 2013-07-25 03:24:51.770668448 +0200 +@@ -13,8 +13,7 @@ + description = 'Offline Map Viewer', + version = VERSION, + url = WEB_ADDRESS, +- data_files = [('share/doc/mapcatcher', ['README', 'changelog']), +- ('share/applications', ['gmapcatcher.desktop']), ++ data_files = [('share/applications', ['gmapcatcher.desktop']), + ('share/man/man1', + ['man/mapcatcher.1.gz', 'man/mapdownloader.1.gz']), + ('share/pixmaps', ['images/mapcatcher.png']), diff --git a/sci-geosciences/gmapcatcher/gmapcatcher-0.8.0.4.ebuild b/sci-geosciences/gmapcatcher/gmapcatcher-0.8.0.4.ebuild new file mode 100644 index 000000000000..a5bb7e97c83c --- /dev/null +++ b/sci-geosciences/gmapcatcher/gmapcatcher-0.8.0.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +inherit distutils-r1 + +DESCRIPTION="An offline viewer for different map providers" +HOMEPAGE="http://code.google.com/p/gmapcatcher/" +SRC_URI="http://gmapcatcher.googlecode.com/files/mapcatcher_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + dev-python/pygtk[${PYTHON_USEDEP}] + dev-python/pygobject[${PYTHON_USEDEP}] + dev-python/pycairo[${PYTHON_USEDEP}] + virtual/python-imaging[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/mapcatcher-${PV} +PATCHES=("${FILESDIR}"/${P}-setuppy-docs.patch) + +src_prepare() { + sed -i -e "/Version=/d" -e "s/Application;//" gmapcatcher.desktop || die + distutils-r1_src_prepare +} diff --git a/sci-geosciences/gmapcatcher/metadata.xml b/sci-geosciences/gmapcatcher/metadata.xml new file mode 100644 index 000000000000..1168f85ccde5 --- /dev/null +++ b/sci-geosciences/gmapcatcher/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>god@politeia.in</email> + <name>Denis M.</name> + <description>Maintainer, assign bugs to him</description> + </maintainer> + <maintainer> + <email>mrueg@gentoo.org</email> + <name>Manuel Rüger</name> + <description>Proxy-Maintainer, CC him on bugs</description> + </maintainer> +</pkgmetadata> + |