diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-01-14 18:35:56 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 11:12:35 +0100 |
commit | 842cc149de091217a117a2fc4d3aa58d6a1c0575 (patch) | |
tree | a126480ac4d690ff8c0282a74fe06cd531fe66fb /sci-visualization/xgraph | |
parent | sci-visualization/circos: Removing EAPI 4 ebuild (diff) | |
download | gentoo-842cc149de091217a117a2fc4d3aa58d6a1c0575.tar.gz gentoo-842cc149de091217a117a2fc4d3aa58d6a1c0575.tar.bz2 gentoo-842cc149de091217a117a2fc4d3aa58d6a1c0575.zip |
sci-visualization/xgraph: EAPI bump 4 -> 6
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3475
Diffstat (limited to 'sci-visualization/xgraph')
-rw-r--r-- | sci-visualization/xgraph/xgraph-12.1-r4.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sci-visualization/xgraph/xgraph-12.1-r4.ebuild b/sci-visualization/xgraph/xgraph-12.1-r4.ebuild new file mode 100644 index 000000000000..a115d1f8fe81 --- /dev/null +++ b/sci-visualization/xgraph/xgraph-12.1-r4.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DEB_PR=16 + +DESCRIPTION="X11 Plotting Utility" +HOMEPAGE="http://www.isi.edu/nsnam/xgraph/" +SRC_URI="http://www.isi.edu/nsnam/dist/${P}.tar.gz + mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-${DEB_PR}.debian.tar.gz" + +LICENSE="xgraph" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="examples" +RDEPEND="x11-libs/libSM + x11-libs/libX11" +DEPEND="$RDEPEND" + +PATCHES=( "${WORKDIR}"/debian/patches/debian-changes ) + +src_prepare() { + default + rm -f configure.in Makefile.in || die + eautoreconf +} + +src_install() { + default + dodoc "${WORKDIR}"/debian/changelog + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + dodir /usr/share/man/man1 + mv "${ED%/}"/usr/share/man/manm/xgraph.man \ + "${ED%/}"/usr/share/man/man1/xgraph.1 || die + rm -r "${ED%/}"/usr/share/man/manm || die +} |