blob: f86fe5f095ddb1303184a9fd3557cb6a97d731f7 (
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
40
41
42
43
44
45
46
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r2.ebuild,v 1.1 2001/02/07 15:51:28 achim Exp $
A=tcp_wrappers_${PV}.tar.gz
A0="tcp_wrappers_${PV}.dif"
A1="tcp_wrappers_${PV}-ipv6-1.6.diff.gz"
S=${WORKDIR}/tcp_wrappers_${PV}
DESCRIPTION="tcp wrappers"
SRC_URI="ftp://ftp.porcupine.org/pub/security/${A}"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}/
patch -p0 < ${FILESDIR}/${A0}
gzip -dc ${FILESDIR}/${A1} | patch -p2
cp Makefile Makefile.orig
sed -e "s/-O2/${CFLAGS}/" \
-e "s:AUX_OBJ=.*:AUX_OBJ= \\\:" Makefile.orig > Makefile
}
src_compile() {
try make ${MAKEOPTS} REAL_DAEMON_DIR=/usr/sbin linux
}
src_install() {
dosbin tcpd tcpdchk tcpdmatch safe_finger try-from
doman *.[358]
dolib.a libwrap.a
insinto /usr/include
doins tcpd.h
dodoc BLURB CHANGES DISCLAIMER README*
}
|