blob: 5cd0725059d279015b3068747c82974326d70399 (
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
|
# Copyright 1999-2012 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.10 2012/04/25 16:37:49 jlec Exp $
EAPI=4
inherit autotools eutils toolchain-funcs
DESCRIPTION="An advanced TCP connection forwarder"
HOMEPAGE="http://jumpgate.sourceforge.net/"
SRC_URI="http://jumpgate.sourceforge.net/${P}.tar.gz"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 amd64"
IUSE=""
src_prepare() {
if [ "$(gcc-major-version)" == "4" ] ; then
sed -i -e '/^AC_CHECK_TYPE/d' configure.in || die
eautoreconf
fi
}
src_install() {
emake install install_prefix="${D}"
dodoc README ChangeLog
}
|