diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-02-13 12:31:48 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2024-02-13 14:28:39 +0100 |
commit | 4cfaa5c8c3ed8eeff5c512d967c776f2b1f266ef (patch) | |
tree | a0adc31f2d4030d61592c04e8882b76bde8937ce /sci-visualization/xgraph/xgraph-12.1-r5.ebuild | |
parent | profiles: add missing mips multilib n64 systemd profile (diff) | |
download | gentoo-4cfaa5c8c3ed8eeff5c512d967c776f2b1f266ef.tar.gz gentoo-4cfaa5c8c3ed8eeff5c512d967c776f2b1f266ef.tar.bz2 gentoo-4cfaa5c8c3ed8eeff5c512d967c776f2b1f266ef.zip |
sci-visualization/xgraph: EAPI8 bump, use https
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/35298
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sci-visualization/xgraph/xgraph-12.1-r5.ebuild')
-rw-r--r-- | sci-visualization/xgraph/xgraph-12.1-r5.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sci-visualization/xgraph/xgraph-12.1-r5.ebuild b/sci-visualization/xgraph/xgraph-12.1-r5.ebuild new file mode 100644 index 000000000000..9fbcd83e6526 --- /dev/null +++ b/sci-visualization/xgraph/xgraph-12.1-r5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DEB_PR=16 + +DESCRIPTION="X11 Plotting Utility" +HOMEPAGE="https://www.isi.edu/nsnam/xgraph/" +SRC_URI="https://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 ~arm64 ~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 +} |