diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-07-31 00:40:19 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-07-31 01:02:44 +0200 |
commit | ea0be994cbef99a3a442c987a0a00d84e5063c67 (patch) | |
tree | c45a923a20deb9f9750b95ebbc87842309472b0d /dev-util/makepp/makepp-2.0.99.2.ebuild | |
parent | dev-util/checkbashisms: drop old (diff) | |
download | gentoo-ea0be994cbef99a3a442c987a0a00d84e5063c67.tar.gz gentoo-ea0be994cbef99a3a442c987a0a00d84e5063c67.tar.bz2 gentoo-ea0be994cbef99a3a442c987a0a00d84e5063c67.zip |
dev-util/makepp: bump to v2.0.99.2
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-util/makepp/makepp-2.0.99.2.ebuild')
-rw-r--r-- | dev-util/makepp/makepp-2.0.99.2.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-util/makepp/makepp-2.0.99.2.ebuild b/dev-util/makepp/makepp-2.0.99.2.ebuild new file mode 100644 index 000000000000..38db184f93fb --- /dev/null +++ b/dev-util/makepp/makepp-2.0.99.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PV=${PV/_} +MY_P="${PN}-${MY_PV}" +DESCRIPTION="GNU make replacement" +HOMEPAGE="http://makepp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/2.1/${MY_P}.txz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos" +IUSE="" + +DEPEND="dev-lang/perl:=" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + # default "all" rule is to run tests :x + sed -i '/^all:/s:test::' config.pl || die + sed -i 's/^ my $gzip =.*/ my $gzip = "";/' install.pl || die + default +} + +src_configure() { + # not an autoconf configure script + ./configure \ + --prefix="${EPREFIX}"/usr \ + --bindir="${EPREFIX}"/usr/bin \ + --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \ + --mandir="${EPREFIX}"/usr/share/man \ + --datadir="${EPREFIX}"/usr/share/makepp \ + || die "configure failed" +} + +src_test() { + # work around https://bugzilla.samba.org/show_bug.cgi?id=8728 + export CCACHE_UNIFY=1 + ROOT= default +} |