diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2015-03-25 15:03:42 +0000 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2015-03-25 15:03:42 +0000 |
commit | 1d2168f1db205551df9096f39c93e2a4372fbfcf (patch) | |
tree | 6607c300c045a7856ef3145c59b5a088e58e577a /app-misc/zygrib | |
parent | bump; correction to deps, add optional rdep media-gfx/cairosvg hard set in RD... (diff) | |
download | gentoo-2-1d2168f1db205551df9096f39c93e2a4372fbfcf.tar.gz gentoo-2-1d2168f1db205551df9096f39c93e2a4372fbfcf.tar.bz2 gentoo-2-1d2168f1db205551df9096f39c93e2a4372fbfcf.zip |
Version bump
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
Diffstat (limited to 'app-misc/zygrib')
-rw-r--r-- | app-misc/zygrib/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/zygrib/zygrib-7.0.0.ebuild | 56 |
2 files changed, 63 insertions, 2 deletions
diff --git a/app-misc/zygrib/ChangeLog b/app-misc/zygrib/ChangeLog index 7b0d1210ed7e..9f3d5f4a7ede 100644 --- a/app-misc/zygrib/ChangeLog +++ b/app-misc/zygrib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/zygrib -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/zygrib/ChangeLog,v 1.6 2014/09/11 11:21:28 kensington Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/zygrib/ChangeLog,v 1.7 2015/03/25 15:03:42 mschiff Exp $ + +*zygrib-7.0.0 (25 Mar 2015) + + 25 Mar 2015; Marc Schiffbauer <mschiff@gentoo.org> +zygrib-7.0.0.ebuild: + Version bump 11 Sep 2014; Michael Palimaka <kensington@gentoo.org> zygrib-6.2.3.ebuild: Pin dev-qt/qtsvg to SLOT 4. diff --git a/app-misc/zygrib/zygrib-7.0.0.ebuild b/app-misc/zygrib/zygrib-7.0.0.ebuild new file mode 100644 index 000000000000..67eccc672ee5 --- /dev/null +++ b/app-misc/zygrib/zygrib-7.0.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/zygrib/zygrib-7.0.0.ebuild,v 1.1 2015/03/25 15:03:42 mschiff Exp $ + +EAPI=5 + +inherit eutils qt4-r2 + +MY_PN="zyGrib" + +DESCRIPTION="GRIB File Viewer - Weather data visualization" +HOMEPAGE="http://www.zygrib.org/" +SRC_URI="http://www.zygrib.org/getfile.php?file=${MY_PN}-${PV}.tgz -> ${P}.tgz + http://dev.gentoo.org/~mschiff/distfiles/${PN}-icon.png + maps? ( + http://zygrib.org/getfile.php?file=zyGrib_maps2.4.tgz -> zygrib-maps2.4.tgz + http://www.zygrib.org/getfile.php?file=cities_1k-3k.txt.gz -> zygrib-cities_1k-3k.txt.gz + http://www.zygrib.org/getfile.php?file=cities_300-1k.txt.gz -> zygrib-cities_300-1k.txt.gz + http://www.zygrib.org/getfile.php?file=cities_0-300.txt.gz -> zygrib-cities_0-300.txt.gz + )" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+maps" + +DEPEND="app-arch/bzip2 +dev-qt/qtsvg:4 +sci-libs/libnova +sci-libs/proj +sys-libs/zlib +x11-libs/qwt:6" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_PN}-${PV}" + +src_prepare() { + sed -i 's,INSTALLDIR=$(HOME)/zyGrib,INSTALLDIR=$(DESTDIR)/opt/zyGrib,' Makefile +} + +src_install() { + default + rm zyGrib + doicon -s 32 "${DISTDIR}/zygrib-icon.png" + make_wrapper "${PN}" "./bin/${MY_PN}" "/opt/${MY_PN}" + domenu "${FILESDIR}/zygrib.desktop" + + if use maps; then + insinto "/opt/${MY_PN}" + doins -r "${WORKDIR}/data" + insinto "/opt/${MY_PN}/data/gis" + gzip "${WORKDIR}"/*.txt + doins "${WORKDIR}"/*.txt.gz + fi +} |