From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1026845-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 52AB6138331
	for <garchives@archives.gentoo.org>; Mon, 28 May 2018 23:02:20 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id F0549E07ED;
	Mon, 28 May 2018 23:02:18 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id C7725E07ED
	for <gentoo-commits@lists.gentoo.org>; Mon, 28 May 2018 23:02:18 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 9CE06335C74
	for <gentoo-commits@lists.gentoo.org>; Mon, 28 May 2018 23:02:17 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 03B002B5
	for <gentoo-commits@lists.gentoo.org>; Mon, 28 May 2018 23:02:16 +0000 (UTC)
From: "Aaron Bauman" <bman@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, "Aaron Bauman" <bman@gentoo.org>
Message-ID: <1527548517.e9086f3acbab5f6715a46323c5c16a1d357e81c8.bman@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/taptap/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-misc/taptap/taptap-1.0.ebuild
X-VCS-Directories: net-misc/taptap/
X-VCS-Committer: bman
X-VCS-Committer-Name: Aaron Bauman
X-VCS-Revision: e9086f3acbab5f6715a46323c5c16a1d357e81c8
X-VCS-Branch: master
Date: Mon, 28 May 2018 23:02:16 +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-Archives-Salt: eb85a330-29de-49dd-af2f-b64f32575793
X-Archives-Hash: 90ce2c985d02b1dd338c0b455a77e2e9

commit:     e9086f3acbab5f6715a46323c5c16a1d357e81c8
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon May 28 16:17:25 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon May 28 23:01:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9086f3a

net-misc/taptap: bump EAPI

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/taptap/taptap-1.0.ebuild | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/net-misc/taptap/taptap-1.0.ebuild b/net-misc/taptap/taptap-1.0.ebuild
index 414b9b373c9..f95f52794ab 100644
--- a/net-misc/taptap/taptap-1.0.ebuild
+++ b/net-misc/taptap/taptap-1.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=2
+EAPI=6
 inherit toolchain-funcs
 
 DESCRIPTION="A program to link two /dev/net/tun to form virtual ethernet"
@@ -16,6 +16,7 @@ IUSE=""
 S=${WORKDIR}/${PN}
 
 src_prepare() {
+	default
 	sed -i \
 		-e 's:= -Wall -s:+= -Wall:' \
 		-e 's:$(CFLAGS):$(LDFLAGS) &:' \
@@ -23,9 +24,5 @@ src_prepare() {
 }
 
 src_compile() {
-	emake CC="$(tc-getCC)" || die
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die
+	emake CC="$(tc-getCC)"
 }