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 | |
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')
-rw-r--r-- | sci-visualization/xgraph/xgraph-12.1-r5.ebuild (renamed from sci-visualization/xgraph/xgraph-12.1-r4.ebuild) | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/sci-visualization/xgraph/xgraph-12.1-r4.ebuild b/sci-visualization/xgraph/xgraph-12.1-r5.ebuild index ecb3cd30908b..9fbcd83e6526 100644 --- a/sci-visualization/xgraph/xgraph-12.1-r4.ebuild +++ b/sci-visualization/xgraph/xgraph-12.1-r5.ebuild @@ -1,21 +1,22 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 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 +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}" @@ -36,7 +37,8 @@ src_install() { 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 + + mv "${ED}"/usr/share/man/manm/xgraph.man \ + "${ED}"/usr/share/man/man1/xgraph.1 || die + rm -r "${ED}"/usr/share/man/manm || die } |