summaryrefslogtreecommitdiff
blob: 5d76ef20d36f8df1b4bd0f2aa913ec27a9c69200 (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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/6tunnel/6tunnel-0.09.ebuild,v 1.8 2004/07/01 20:39:00 squinky86 Exp $

IUSE=""
S=${WORKDIR}/${PN}
DESCRIPTION="TCP proxy for applications that don't speak IPv6"
SRC_URI="ftp://amba.bydg.pdi.net/pub/wojtekka/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 s390"
DEPEND="virtual/libc"

#HOMEPAGE="" there is no homepage available, if you find one, please report to
#bugs.gentoo.org

src_compile() {
	sed "s/^\(CC = gcc \).*/\1$CFLAGS/" < Makefile > Makefile.new
	mv Makefile.new Makefile
	emake
}

src_install() {
	dobin 6tunnel
	doman 6tunnel.1
	dodoc README CHANGELOG
}