diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2007-09-29 12:56:05 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2007-09-29 12:56:05 +0000 |
commit | 8be69c0c19c1c44df132c7f6c2bf462128f5053f (patch) | |
tree | 3350cf79ddf4dc84ee86798a09e9f61664c00498 /net-misc/netpipe/netpipe-1.0.0_beta2.ebuild | |
parent | Marked stable on amd64 as per bug 193311. (diff) | |
download | gentoo-2-8be69c0c19c1c44df132c7f6c2bf462128f5053f.tar.gz gentoo-2-8be69c0c19c1c44df132c7f6c2bf462128f5053f.tar.bz2 gentoo-2-8be69c0c19c1c44df132c7f6c2bf462128f5053f.zip |
HOMEPAGE changed (bug 193956), inherit toolchain-funcs, honour CC, remove redundant src_compile and general clean up.
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-misc/netpipe/netpipe-1.0.0_beta2.ebuild')
-rw-r--r-- | net-misc/netpipe/netpipe-1.0.0_beta2.ebuild | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild index 918f287991dc..62729a0c17f4 100644 --- a/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild +++ b/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild @@ -1,34 +1,33 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild,v 1.8 2005/04/24 03:04:30 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild,v 1.9 2007/09/29 12:56:05 coldwind Exp $ + +inherit toolchain-funcs DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques" -HOMEPAGE="http://home.t-online.de/home/gerd.o/netpipe.html" -SRC_URI="http://home.t-online.de/home/gerd.o/netpipe.tar.gz" +HOMEPAGE="http://www.wudika.de/~jan/netpipe/" +SRC_URI="http://www.wudika.de/~jan/netpipe/${PN}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc x86" IUSE="" -DEPEND="virtual/libc" +DEPEND="" +RDEPEND="" -S="${WORKDIR}/netpipe" +S="${WORKDIR}/${PN}" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -i \ -e "s:^OPT=.*:OPT = ${CFLAGS}:" \ - -e "s:^#CC.*:CC = $(tc-getCC):" \ + -e "s:^CC=.*:CC = $(tc-getCC):" \ Makefile } -src_compile() { - make || die -} - src_install() { - dobin netpipe || die + dobin netpipe || die "dobin failed" dodoc DOCUMENTATION INSTALL TECH-NOTES } |