summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago M. Mola <coldwind@gentoo.org>2007-09-29 12:56:05 +0000
committerSantiago M. Mola <coldwind@gentoo.org>2007-09-29 12:56:05 +0000
commit8be69c0c19c1c44df132c7f6c2bf462128f5053f (patch)
tree3350cf79ddf4dc84ee86798a09e9f61664c00498 /net-misc/netpipe
parentMarked stable on amd64 as per bug 193311. (diff)
downloadgentoo-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')
-rw-r--r--net-misc/netpipe/ChangeLog7
-rw-r--r--net-misc/netpipe/netpipe-1.0.0_beta2.ebuild25
2 files changed, 18 insertions, 14 deletions
diff --git a/net-misc/netpipe/ChangeLog b/net-misc/netpipe/ChangeLog
index beb5b1b551ca..b2fdaa1724f7 100644
--- a/net-misc/netpipe/ChangeLog
+++ b/net-misc/netpipe/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-misc/netpipe
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/ChangeLog,v 1.8 2007/05/14 19:45:45 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipe/ChangeLog,v 1.9 2007/09/29 12:56:05 coldwind Exp $
+
+ 29 Sep 2007; Santiago M. Mola <coldwind@gentoo.org>
+ netpipe-1.0.0_beta2.ebuild:
+ HOMEPAGE changed (bug 193956), inherit toolchain-funcs, honour CC, remove
+ redundant src_compile and general clean up.
14 May 2007; Thilo Bangert <bangert@gentoo.org> metadata.xml:
add <herd>no-herd</herd>
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
}