From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1414015-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 33AF0158093
	for <garchives@archives.gentoo.org>; Sat,  2 Jul 2022 09:38:54 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 607FCE0866;
	Sat,  2 Jul 2022 09:38:53 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 440E8E0866
	for <gentoo-commits@lists.gentoo.org>; Sat,  2 Jul 2022 09:38:53 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 44B83341A47
	for <gentoo-commits@lists.gentoo.org>; Sat,  2 Jul 2022 09:38:52 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C166526
	for <gentoo-commits@lists.gentoo.org>; Sat,  2 Jul 2022 09:38:49 +0000 (UTC)
From: "Matthew Smith" <matthew@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" <matthew@gentoo.org>
Message-ID: <1656754694.1864d638d59f644e83dcc7c830ac690107b7edf2.matthew@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/tmake/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-util/tmake/tmake-2.12-r2.ebuild
X-VCS-Directories: dev-util/tmake/
X-VCS-Committer: matthew
X-VCS-Committer-Name: Matthew Smith
X-VCS-Revision: 1864d638d59f644e83dcc7c830ac690107b7edf2
X-VCS-Branch: master
Date: Sat,  2 Jul 2022 09:38:49 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 52270e4c-0d49-4988-abe4-d758788574fa
X-Archives-Hash: d96d0f653a019e3ff391b2a62fc295a5

commit:     1864d638d59f644e83dcc7c830ac690107b7edf2
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  2 09:34:32 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sat Jul  2 09:38:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1864d638

dev-util/tmake: update EAPI 6 -> 8

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-util/tmake/tmake-2.12-r2.ebuild | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/dev-util/tmake/tmake-2.12-r2.ebuild b/dev-util/tmake/tmake-2.12-r2.ebuild
new file mode 100644
index 000000000000..aacc2e3d7f7a
--- /dev/null
+++ b/dev-util/tmake/tmake-2.12-r2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A Cross platform Makefile tool"
+SRC_URI="mirror://sourceforge/tmake/${P}.tar.bz2"
+HOMEPAGE="http://tmake.sourceforge.net"
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos"
+IUSE=""
+
+RDEPEND=">=dev-lang/perl-5"
+
+src_install() {
+	dobin bin/tmake bin/progen
+	dodir /usr/lib/tmake
+	cp -pPRf "${S}"/lib/* "${ED}"/usr/lib/tmake
+	dodoc -r README doc/*
+	echo "TMAKEPATH=\"${EPREFIX}/usr/lib/tmake/linux-g++\"" > "${T}"/51tmake
+	doenvd "${T}"/51tmake
+}