blob: 82ba339061e6d5f08cb0b8a82c8dce4b2adf1264 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r8.ebuild,v 1.18 2004/12/16 04:15:29 eradicator Exp $
inherit eutils toolchain-funcs
MY_P="${P//-/_}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="TCP Wrappers"
HOMEPAGE="ftp://ftp.porcupine.org/pub/security/index.html"
SRC_URI="ftp://ftp.porcupine.org/pub/security/${MY_P}.tar.gz
mirror://gentoo/${PF}-patches.tar.bz2"
LICENSE="tcp_wrappers_license"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
IUSE="ipv6"
RDEPEND="virtual/libc"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
chmod ug+w Makefile
sed -i \
-e "s:-O:${CFLAGS}:" \
-e "s:AUX_OBJ=.*:AUX_OBJ= \\\:" \
Makefile || die "makefile patch prep"
PATCHDIR=${WORKDIR}/${PV}-patches
epatch ${PATCHDIR}/${P}-makefile.patch.bz2
epatch ${PATCHDIR}/generic
epatch ${PATCHDIR}/${P}-shared.patch.bz2
use ipv6 && epatch ${PATCHDIR}/${P}-ipv6-1.14.diff.bz2
# make it parallel/cross-compile friendly.
sed -i \
-e 's:gcc:$(CC):' \
-e 's:@make :@$(MAKE) :' \
-e 's:make;:$(MAKE);:' \
Makefile || die "sed Makefile failed"
}
src_compile() {
tc-export CC
local myconf="-DHAVE_WEAKSYMS"
use ipv6 && myconf="${myconf} -DINET6=1 -Dss_family=__ss_family -Dss_len=__ss_len"
emake \
REAL_DAEMON_DIR=/usr/sbin \
GENTOO_OPT="${myconf}" \
MAJOR=0 MINOR=${PV:0:1} REL=${PV:2:3} \
config-check || die "emake config-check failed"
emake \
REAL_DAEMON_DIR=/usr/sbin \
GENTOO_OPT="${myconf}" \
MAJOR=0 MINOR=${PV:0:1} REL=${PV:2:3} \
linux || die "emake linux failed"
}
src_install() {
dosbin tcpd tcpdchk tcpdmatch safe_finger try-from || die
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
insinto /usr/include
doins tcpd.h
into /usr
dolib.a libwrap.a
into /
newlib.so libwrap.so libwrap.so.0.${PV}
dosym /$(get_libdir)/libwrap.so.0.${PV} /$(get_libdir)/libwrap.so.0
dosym /$(get_libdir)/libwrap.so.0 /$(get_libdir)/libwrap.so
# bug #4411
gen_usr_ldscript libwrap.so || die "gen_usr_ldscript failed"
dodoc BLURB CHANGES DISCLAIMER README* ${FILESDIR}/hosts.allow.example
}
|