Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/taptap/
Date: Mon, 28 May 2018 23:02:20
Message-Id: 1527548517.e9086f3acbab5f6715a46323c5c16a1d357e81c8.bman@gentoo
1 commit: e9086f3acbab5f6715a46323c5c16a1d357e81c8
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 28 16:17:25 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon May 28 23:01:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9086f3a
7
8 net-misc/taptap: bump EAPI
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 net-misc/taptap/taptap-1.0.ebuild | 11 ++++-------
13 1 file changed, 4 insertions(+), 7 deletions(-)
14
15 diff --git a/net-misc/taptap/taptap-1.0.ebuild b/net-misc/taptap/taptap-1.0.ebuild
16 index 414b9b373c9..f95f52794ab 100644
17 --- a/net-misc/taptap/taptap-1.0.ebuild
18 +++ b/net-misc/taptap/taptap-1.0.ebuild
19 @@ -1,7 +1,7 @@
20 -# Copyright 1999-2010 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=2
25 +EAPI=6
26 inherit toolchain-funcs
27
28 DESCRIPTION="A program to link two /dev/net/tun to form virtual ethernet"
29 @@ -16,6 +16,7 @@ IUSE=""
30 S=${WORKDIR}/${PN}
31
32 src_prepare() {
33 + default
34 sed -i \
35 -e 's:= -Wall -s:+= -Wall:' \
36 -e 's:$(CFLAGS):$(LDFLAGS) &:' \
37 @@ -23,9 +24,5 @@ src_prepare() {
38 }
39
40 src_compile() {
41 - emake CC="$(tc-getCC)" || die
42 -}
43 -
44 -src_install() {
45 - emake DESTDIR="${D}" install || die
46 + emake CC="$(tc-getCC)"
47 }