blob: b144a778ccb18ee9a2b5dafb70fb1ab4d9bead31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netcat/netcat-110.ebuild,v 1.2 2002/07/11 06:30:43 drobbins Exp $
A="nc110.tgz"
S=${WORKDIR}/nc-${PV}
DESCRIPTION="A network piping program"
SRC_URI="http://www.l0pht.com/~weld/netcat/${A}"
HOMEPAGE="http://www.l0pht.com/~weld/netcat"
SLOT="0"
DEPEND="virtual/glibc"
src_unpack() {
mkdir ${S}
cd ${S}
tar zxf ${DISTDIR}/${A}
}
src_compile() {
cp Makefile Makefile.orig
cat Makefile.orig | sed -e "s:^CFLAGS =.*$:CFLAGS = ${CFLAGS}:" \
| sed -e "s:^CC =.*$:CC = gcc \$(CFLAGS):" > Makefile
cp netcat.c netcat.orig
cat netcat.orig | sed -e "s:#define HAVE_BIND:#undef HAVE_BIND:" > netcat.c
try make linux
}
src_install () {
dobin nc
dodoc README
docinto scripts
dodoc scripts/*
}
|