Gentoo Archives: gentoo-commits

From: Matthew Smith <matthew@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/tmake/
Date: Sat, 02 Jul 2022 09:38:54
Message-Id: 1656754694.1864d638d59f644e83dcc7c830ac690107b7edf2.matthew@gentoo
1 commit: 1864d638d59f644e83dcc7c830ac690107b7edf2
2 Author: Matthew Smith <matthew <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 09:34:32 2022 +0000
4 Commit: Matthew Smith <matthew <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 09:38:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1864d638
7
8 dev-util/tmake: update EAPI 6 -> 8
9
10 Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>
11
12 dev-util/tmake/tmake-2.12-r2.ebuild | 24 ++++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/dev-util/tmake/tmake-2.12-r2.ebuild b/dev-util/tmake/tmake-2.12-r2.ebuild
16 new file mode 100644
17 index 000000000000..aacc2e3d7f7a
18 --- /dev/null
19 +++ b/dev-util/tmake/tmake-2.12-r2.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DESCRIPTION="A Cross platform Makefile tool"
27 +SRC_URI="mirror://sourceforge/tmake/${P}.tar.bz2"
28 +HOMEPAGE="http://tmake.sourceforge.net"
29 +
30 +LICENSE="HPND"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos"
33 +IUSE=""
34 +
35 +RDEPEND=">=dev-lang/perl-5"
36 +
37 +src_install() {
38 + dobin bin/tmake bin/progen
39 + dodir /usr/lib/tmake
40 + cp -pPRf "${S}"/lib/* "${ED}"/usr/lib/tmake
41 + dodoc -r README doc/*
42 + echo "TMAKEPATH=\"${EPREFIX}/usr/lib/tmake/linux-g++\"" > "${T}"/51tmake
43 + doenvd "${T}"/51tmake
44 +}