blob: b320a6183ece7df42aedf5a1f1f93aad1b326096 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/6tunnel/6tunnel-0.10.ebuild,v 1.2 2004/11/22 09:18:51 dragonheart Exp $
IUSE=""
DESCRIPTION="TCP proxy for applications that don't speak IPv6"
HOMEPAGE="http://toxygen.net/6tunnel"
SRC_URI="http://toxygen.net/6tunnel/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~s390"
DEPEND="virtual/libc"
src_compile() {
econf || die
emake || die
}
src_install() {
dobin 6tunnel
doman 6tunnel.1
}
|