diff options
-rw-r--r-- | sci-visualization/quickplot/ChangeLog | 6 | ||||
-rw-r--r-- | sci-visualization/quickplot/quickplot-0.8.13.ebuild | 50 |
2 files changed, 5 insertions, 51 deletions
diff --git a/sci-visualization/quickplot/ChangeLog b/sci-visualization/quickplot/ChangeLog index eb32b22ae0a4..22d43526e58d 100644 --- a/sci-visualization/quickplot/ChangeLog +++ b/sci-visualization/quickplot/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-visualization/quickplot # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.9 2008/08/30 14:21:02 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.10 2008/08/30 15:43:20 bicatali Exp $ + + 30 Aug 2008; Sébastien Fabbro <bicatali@gentoo.org> + -quickplot-0.8.13.ebuild: + Removed older revision. 30 Aug 2008; Brent Baude <ranger@gentoo.org> quickplot-0.8.13-r1.ebuild: stable ppc, bug 236098 diff --git a/sci-visualization/quickplot/quickplot-0.8.13.ebuild b/sci-visualization/quickplot/quickplot-0.8.13.ebuild deleted file mode 100644 index f048852258ad..000000000000 --- a/sci-visualization/quickplot/quickplot-0.8.13.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2008 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.ebuild,v 1.4 2008/05/06 14:17:17 markusle Exp $ - -inherit eutils - -DESCRIPTION="A fast interactive 2D plotter." -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -HOMEPAGE="http://quickplot.sourceforge.net/" - -IUSE="sndfile" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc ~x86" - -RDEPEND=">=dev-cpp/gtkmm-2.4.5 - sndfile? ( >=media-libs/libsndfile-1.0.5 )" - -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.15" - -src_unpack() { - unpack ${A} - cd "${S}" - # Some files have been moved around to more appropriate locations - sed -i -e 's|quickplot_icon.png|/usr/share/pixmaps/quickplot.png|' \ - index.html.in - sed -i -e 's|href="ChangeLog"|href="../ChangeLog.gz"|' index.html.in - sed -i -e 's|href="COPYING"|href="/usr/portage/licenses/GPL-2"|' \ - about.html.in -} - -src_compile() { - econf `use_with sndfile libsndfile` || die "econf step failed." - emake htmldir=/usr/share/doc/${PF}/html || die "emake step failed." -} - -src_install () { - make install DESTDIR="${D}" htmldir=/usr/share/doc/${PF}/html \ - || 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 -} |