You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
708 B
24 lines
708 B
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/datapipe/datapipe-1.0-r1.ebuild,v 1.1 2010/09/18 20:58:50 jer Exp $
|
|
|
|
inherit toolchain-funcs
|
|
|
|
IUSE=""
|
|
DESCRIPTION="bind a local port and connect it to a remote socket"
|
|
HOMEPAGE="http://http.distributed.net/pub/dcti/unsupported/"
|
|
SRC_URI="ftp://ftp.distributed.net/pub/dcti/unsupported/${P}.tar.gz http://http.distributed.net/pub/dcti/unsupported/${P}.tar.gz"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~ppc ~arm ~amd64"
|
|
|
|
src_compile() {
|
|
$(tc-getCC) ${CFLAGS} ${LDFLAGS} -o datapipe datapipe.c
|
|
}
|
|
|
|
src_install() {
|
|
dobin datapipe
|
|
dodoc datapipe.txt
|
|
}
|