# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header: $ 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" KEYWORDS="x86" DEPEND="" src_unpack(){ unpack ${P}.tar.gz cd ${S} sed "s/^\(CC = gcc \).*/\1$CFLAGS/" < Makefile > Makefile.new mv --force Makefile.new Makefile } src_compile() { make || die "Failed to compile." } src_install() { dobin 6tunnel doman 6tunnel.1 dodoc README CHANGELOG }