Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: net-misc/tcptunnel/
Date: Sun, 02 Dec 2012 17:25:54
Message-Id: 1354469111.eb7acc03d718e72e0dccce757d88798ca9533c64.sping@gentoo
1 commit: eb7acc03d718e72e0dccce757d88798ca9533c64
2 Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
3 AuthorDate: Sun Dec 2 17:25:11 2012 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 2 17:25:11 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=eb7acc03
7
8 net-misc/tcptunnel: Fix bindir, fix 0.5
9
10 ---
11 net-misc/tcptunnel/tcptunnel-0.5.ebuild | 7 ++++++-
12 net-misc/tcptunnel/tcptunnel-0.6.ebuild | 2 +-
13 2 files changed, 7 insertions(+), 2 deletions(-)
14
15 diff --git a/net-misc/tcptunnel/tcptunnel-0.5.ebuild b/net-misc/tcptunnel/tcptunnel-0.5.ebuild
16 index edeecbe..2de552d 100644
17 --- a/net-misc/tcptunnel/tcptunnel-0.5.ebuild
18 +++ b/net-misc/tcptunnel/tcptunnel-0.5.ebuild
19 @@ -3,6 +3,7 @@
20 # $Header: $
21
22 EAPI="4"
23 +inherit eutils
24
25 DESCRIPTION="TCP port forwarder (and traffic spy)"
26 HOMEPAGE="http://www.vakuumverpackt.de/tcptunnel/"
27 @@ -16,7 +17,11 @@ IUSE=""
28 #DEPEND
29 #RDEPEND
30
31 +src_prepare() {
32 + epatch "${FILESDIR}"/${PN}-0.6-makefile.patch
33 +}
34 +
35 src_install() {
36 - emake BINDIR="${D}"/usr STRIP=/bin/true install || die
37 + emake BINDIR="${D}"/usr/bin STRIP=/bin/true install || die
38 dodoc README AUTHORS || die
39 }
40
41 diff --git a/net-misc/tcptunnel/tcptunnel-0.6.ebuild b/net-misc/tcptunnel/tcptunnel-0.6.ebuild
42 index 0dd851d..5f28afb 100644
43 --- a/net-misc/tcptunnel/tcptunnel-0.6.ebuild
44 +++ b/net-misc/tcptunnel/tcptunnel-0.6.ebuild
45 @@ -22,6 +22,6 @@ src_prepare() {
46 }
47
48 src_install() {
49 - emake BINDIR="${D}"/usr STRIP=/bin/true install || die
50 + emake BINDIR="${D}"/usr/bin STRIP=/bin/true install || die
51 dodoc README || die
52 }