blob: 62da92023dd924d45d5c6946dcdd124e00516a7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/jumpgate/jumpgate-0.7.ebuild,v 1.9 2008/06/18 01:57:46 darkside Exp $
inherit eutils toolchain-funcs autotools
DESCRIPTION="An advanced TCP connection forwarder."
HOMEPAGE="http://jumpgate.sourceforge.net"
SRC_URI="http://jumpgate.sourceforge.net/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
if [ "$(gcc-major-version)" == "4" ] ; then
sed -i -e '/^AC_CHECK_TYPE/d' configure.in
eautoreconf || die "eautoreconf failed"
fi
}
src_install() {
emake install install_prefix="${D}" || die
dodoc README ChangeLog
}
|