diff options
| author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-01-29 01:28:18 +0100 |
|---|---|---|
| committer | David Seifert <soap@gentoo.org> | 2017-01-29 23:51:23 +0100 |
| commit | 3c11d6809dd44eb3625677a37cb088e82b329844 (patch) | |
| tree | b23d80a9bac62fa897fd009d71f14190eb39ed57 /sci-visualization/quickplot/quickplot-1.0.1_rc.ebuild | |
| parent | fa53848f991344713f38317aa6cf0cd0aa3efe58 (diff) | |
| download | gentoo-3c11d6809dd44eb3625677a37cb088e82b329844.tar.gz gentoo-3c11d6809dd44eb3625677a37cb088e82b329844.tar.bz2 gentoo-3c11d6809dd44eb3625677a37cb088e82b329844.zip | |
sci-visualization/quickplot: Version bump to 1.0.1_rc, EAPI bump 5 -> 6
Package-Manager: portage-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/3700
Diffstat (limited to 'sci-visualization/quickplot/quickplot-1.0.1_rc.ebuild')
| -rw-r--r-- | sci-visualization/quickplot/quickplot-1.0.1_rc.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sci-visualization/quickplot/quickplot-1.0.1_rc.ebuild b/sci-visualization/quickplot/quickplot-1.0.1_rc.ebuild new file mode 100644 index 000000000000..15fd960c46c1 --- /dev/null +++ b/sci-visualization/quickplot/quickplot-1.0.1_rc.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools eutils + +MY_P=${P/_rc/rc} + +DESCRIPTION="A fast interactive 2D plotter" +HOMEPAGE="http://quickplot.sourceforge.net/ https://github.com/lanceman2/quickplot" +SRC_URI="https://github.com/lanceman2/${PN}/archive/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-3" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +RDEPEND=" + media-libs/libsndfile + >=sys-libs/readline-0.6.2:0= + x11-libs/gtk+:3" +DEPEND="${RDEPEND} + media-gfx/imagemagick + virtual/pkgconfig + www-client/lynx" + +S="${WORKDIR}/${PN}-${MY_P}" + +src_prepare() { + sed -i \ + -e '/libquickplot_la_LIBADD/s:$: -lm:g' \ + -e 's/ $(htmldir)/ $(DESTDIR)$(htmldir)/g' \ + Makefile.am || die + default + eautoreconf +} + +src_configure() { + econf \ + --enable-developer \ + $(use_enable static-libs static) +} + +src_install () { + default + make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics + mv "${ED%/}"/usr/share/applications/quickplot{*,}.desktop || die +} |
