Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/makepp/
Date: Tue, 30 Jul 2019 23:02:57
Message-Id: 1564527764.ea0be994cbef99a3a442c987a0a00d84e5063c67.whissi@gentoo
1 commit: ea0be994cbef99a3a442c987a0a00d84e5063c67
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 30 22:40:19 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 30 23:02:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea0be994
7
8 dev-util/makepp: bump to v2.0.99.2
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-util/makepp/Manifest | 1 +
14 dev-util/makepp/makepp-2.0.99.2.ebuild | 43 ++++++++++++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/dev-util/makepp/Manifest b/dev-util/makepp/Manifest
18 index 3ddd5d4dff3..2c8e625c9eb 100644
19 --- a/dev-util/makepp/Manifest
20 +++ b/dev-util/makepp/Manifest
21 @@ -1,2 +1,3 @@
22 DIST makepp-1.18.tar.gz 236990 BLAKE2B 4f2c894a706fd188eeeae4422ac828cd99cccb2e8f6b7280a2be55363b99f4fff011932f3dfd550062e932f5c90ddc7f41fd56cb5e765c694b7296ac7f7beb1c SHA512 e6d4fe2d8136bbbbec00401761bf5a4bf5ff15357e75080b942188a613b8156c67eac63f46ce89f1e521997ca620f22924dd0b9055dcb66e30801142dab4e0a9
23 DIST makepp-2.0.99.1.txz 532784 BLAKE2B e69495f0ffece81e7b15b668eea8bf4f9a26a36332bd1644594d697dd2301bea4bb2340fcd2805a33c44824113149fc617db610e6624900ec9d0d77054658d8c SHA512 457d64a2e9d2860dc2f7ad1bd4ef7df9fcd1563878dcd7b63e6f1d3fd6c03cdb89aab68faa018b3ef6b3009733a365fadbb49ad6c8a03ffe6eafcf867b765213
24 +DIST makepp-2.0.99.2.txz 528968 BLAKE2B e39c5fa515a1579ef5a568385550e8baf9176eac4a1871cdb7971ca8d3f92bfda73e5f27f4cf00c148a2c5c9622dd8253ebba0f555c6d46ce8c3581678bf8e68 SHA512 5aa8d255e545705802fec6ca304b2c672dfb9c59f7a064a5e9c4ef98f52d7dd5628023fe2a2449126ac1f9cc6ba7bac98233e3e4f07dd8a0559fd8aea7fd24a4
25
26 diff --git a/dev-util/makepp/makepp-2.0.99.2.ebuild b/dev-util/makepp/makepp-2.0.99.2.ebuild
27 new file mode 100644
28 index 00000000000..38db184f93f
29 --- /dev/null
30 +++ b/dev-util/makepp/makepp-2.0.99.2.ebuild
31 @@ -0,0 +1,43 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +MY_PV=${PV/_}
38 +MY_P="${PN}-${MY_PV}"
39 +DESCRIPTION="GNU make replacement"
40 +HOMEPAGE="http://makepp.sourceforge.net/"
41 +SRC_URI="mirror://sourceforge/${PN}/2.1/${MY_P}.txz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-linux ~ppc-macos"
46 +IUSE=""
47 +
48 +DEPEND="dev-lang/perl:="
49 +
50 +S=${WORKDIR}/${MY_P}
51 +
52 +src_prepare() {
53 + # default "all" rule is to run tests :x
54 + sed -i '/^all:/s:test::' config.pl || die
55 + sed -i 's/^ my $gzip =.*/ my $gzip = "";/' install.pl || die
56 + default
57 +}
58 +
59 +src_configure() {
60 + # not an autoconf configure script
61 + ./configure \
62 + --prefix="${EPREFIX}"/usr \
63 + --bindir="${EPREFIX}"/usr/bin \
64 + --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
65 + --mandir="${EPREFIX}"/usr/share/man \
66 + --datadir="${EPREFIX}"/usr/share/makepp \
67 + || die "configure failed"
68 +}
69 +
70 +src_test() {
71 + # work around https://bugzilla.samba.org/show_bug.cgi?id=8728
72 + export CCACHE_UNIFY=1
73 + ROOT= default
74 +}