Parent Directory
|
Revision Log
HOMEPAGE changed (bug 193956), inherit toolchain-funcs, honour CC, remove redundant src_compile and general clean up. (Portage version: 2.1.3.9)
1 | # Copyright 1999-2007 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $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 $ |
4 | |
5 | inherit toolchain-funcs |
6 | |
7 | DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques" |
8 | HOMEPAGE="http://www.wudika.de/~jan/netpipe/" |
9 | SRC_URI="http://www.wudika.de/~jan/netpipe/${PN}.tar.gz" |
10 | |
11 | LICENSE="GPL-2" |
12 | SLOT="0" |
13 | KEYWORDS="ppc x86" |
14 | IUSE="" |
15 | |
16 | DEPEND="" |
17 | RDEPEND="" |
18 | |
19 | S="${WORKDIR}/${PN}" |
20 | |
21 | src_unpack() { |
22 | unpack ${A} |
23 | cd "${S}" |
24 | sed -i \ |
25 | -e "s:^OPT=.*:OPT = ${CFLAGS}:" \ |
26 | -e "s:^CC=.*:CC = $(tc-getCC):" \ |
27 | Makefile |
28 | } |
29 | |
30 | src_install() { |
31 | dobin netpipe || die "dobin failed" |
32 | dodoc DOCUMENTATION INSTALL TECH-NOTES |
33 | } |
ViewVC Help | |
Powered by ViewVC 1.1.20 |