summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-04-25 16:56:42 +0000
committerJustin Lecher <jlec@gentoo.org>2012-04-25 16:56:42 +0000
commit526fe173005416d76de890443f87076c5d723d70 (patch)
treeaf4362361f7e614c2302552cd8c2fb763b2560aa /sci-visualization
parentsci-physics/harminv: Move to EPAI=4 and autotools-utils (diff)
downloadgentoo-2-526fe173005416d76de890443f87076c5d723d70.tar.gz
gentoo-2-526fe173005416d76de890443f87076c5d723d70.tar.bz2
gentoo-2-526fe173005416d76de890443f87076c5d723d70.zip
sci-visualization/quickplot: Drop unnessecary die, cleaned old
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r--sci-visualization/quickplot/ChangeLog6
-rw-r--r--sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild6
-rw-r--r--sci-visualization/quickplot/quickplot-0.8.15.ebuild57
3 files changed, 8 insertions, 61 deletions
diff --git a/sci-visualization/quickplot/ChangeLog b/sci-visualization/quickplot/ChangeLog
index 70bd9862b2f7..840b15c3f71e 100644
--- a/sci-visualization/quickplot/ChangeLog
+++ b/sci-visualization/quickplot/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-visualization/quickplot
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.15 2012/01/31 06:46:20 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.16 2012/04/25 16:56:42 jlec Exp $
+
+ 25 Apr 2012; Justin Lecher <jlec@gentoo.org> quickplot-0.8.13-r1.ebuild,
+ -quickplot-0.8.15.ebuild:
+ Drop unnessecary die, cleaned old
*quickplot-0.10.3 (31 Jan 2012)
diff --git a/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild b/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild
index c6760faf464b..4a1bddf38b54 100644
--- a/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild
+++ b/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v 1.6 2012/01/29 13:38:31 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v 1.7 2012/04/25 16:56:42 jlec Exp $
-EAPI="1"
+EAPI=1
inherit eutils
@@ -39,7 +39,7 @@ src_unpack() {
}
src_compile() {
- econf $(use_with sndfile libsndfile) || die "econf step failed."
+ econf $(use_with sndfile libsndfile)
emake htmldir=/usr/share/doc/${PF}/html || die "emake step failed."
}
diff --git a/sci-visualization/quickplot/quickplot-0.8.15.ebuild b/sci-visualization/quickplot/quickplot-0.8.15.ebuild
deleted file mode 100644
index 1af4d18473fe..000000000000
--- a/sci-visualization/quickplot/quickplot-0.8.15.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.15.ebuild,v 1.3 2012/01/29 13:38:31 jlec Exp $
-
-EAPI=2
-inherit autotools eutils
-
-DESCRIPTION="A fast interactive 2D plotter"
-HOMEPAGE="http://quickplot.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="sndfile"
-
-RDEPEND="
- dev-cpp/gtkmm:2.4
- sndfile? ( media-libs/libsndfile )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-linking.patch
- # Some files have been moved around to more appropriate locations
- sed -i \
- -e 's|quickplot_icon.png|/usr/share/pixmaps/quickplot.png|' \
- -e 's|href="ChangeLog"|href="../ChangeLog.bz2"|' \
- index.html.in
- sed -i -e 's|href="COPYING"|href="/usr/portage/licenses/GPL-2"|' \
- about.html.in
- eautoreconf
-}
-
-src_configure() {
- econf $(use_with sndfile libsndfile)
-}
-
-src_compile() {
- emake htmldir=/usr/share/doc/${PF}/html || die "emake step failed."
-}
-
-src_install () {
- emake \
- DESTDIR="${D}" \
- htmldir=/usr/share/doc/${PF}/html \
- install || die "make install step failed."
- dodoc AUTHORS ChangeLog README README.devel TODO
- # Remove COPYING as it is specified in LICENCE. Move other stuff.
- cd "${D}"/usr/share/doc/${PF}/html
- rm COPYING quickplot_icon.png ChangeLog
- mv "${D}"/usr/share/pixmaps/quickplot_icon.png \
- "${D}"/usr/share/pixmaps/quickplot.png
- make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
- mv "${D}"/usr/share/applications/quickplot_\ --no-pipe.desktop \
- "${D}"/usr/share/applications/quickplot.desktop
-}