blob: 8297d292aa21a7c6a0e54be46f042de1fd80aebc (
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
47
48
49
50
51
52
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r5.ebuild,v 1.5 2003/06/21 21:19:41 drobbins Exp $
inherit eutils
MY_P=${P//-/_}
S=${WORKDIR}/${MY_P}
DESCRIPTION="tcp wrappers"
SRC_URI="ftp://ftp.porcupine.org/pub/security/${MY_P}.tar.gz
mirror://gentoo/${PF}-gentoo.tar.bz2"
HOMEPAGE="ftp://ftp.porcupine.org/pub/security/index.html"
SLOT="0"
LICENSE="freedist"
KEYWORDS="x86 amd64 ~ppc ~sparc ~alpha ~hppa"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/${PV}-patches
cp Makefile Makefile.orig
sed -e "s:-O:${CFLAGS} -fPIC:" \
-e "s:AUX_OBJ=.*:AUX_OBJ= \\\:" \
-e "s:SOMINOR = 7.6:SOMINOR = ${PV}:" Makefile.orig > Makefile
}
src_compile() {
make ${MAKEOPTS} \
REAL_DAEMON_DIR=/usr/sbin \
linux || die
}
src_install() {
dosbin tcpd tcpdchk tcpdmatch safe_finger try-from
doman *.[358]
dosym hosts_access.5.gz /usr/share/man/man5/hosts.allow.5.gz
dosym hosts_access.5.gz /usr/share/man/man5/hosts.deny.5.gz
dolib.a libwrap.a
dolib.so shared/libwrap.so.0.${PV}
dosym /usr/lib/libwrap.so.0.${PV} /usr/lib/libwrap.so.0
dosym /usr/lib/libwrap.so.0 /usr/lib/libwrap.so
insinto /usr/include
doins tcpd.h
dodoc BLURB CHANGES DISCLAIMER README*
}
|