77 lines
1.9 KiB
Bash
77 lines
1.9 KiB
Bash
# Copyright 1999-2010 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.25 2010/10/08 02:20:06 leio Exp $
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
MY_P="${P//-/_}"
|
|
PATCH_VER="1.0"
|
|
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/${P}-patches-${PATCH_VER}.tar.bz2"
|
|
|
|
LICENSE="tcp_wrappers_license"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd"
|
|
IUSE="ipv6"
|
|
|
|
DEPEND=""
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
chmod ug+w Makefile
|
|
|
|
EPATCH_SUFFIX="patch"
|
|
PATCHDIR=${WORKDIR}/${PV}
|
|
epatch ${PATCHDIR}/${P}-makefile.patch
|
|
epatch ${PATCHDIR}/generic
|
|
epatch ${PATCHDIR}/${P}-shared.patch
|
|
use ipv6 && epatch ${PATCHDIR}/${P}-ipv6-1.14.diff
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export AR CC RANLIB
|
|
|
|
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 /usr/share/man/man5/hosts.allow.5
|
|
dosym hosts_access.5 /usr/share/man/man5/hosts.deny.5
|
|
|
|
insinto /usr/include
|
|
doins tcpd.h
|
|
|
|
into /usr
|
|
dolib.a libwrap.a
|
|
|
|
into /
|
|
newlib.so libwrap.so libwrap.so.0.${PV}
|
|
dosym libwrap.so.0.${PV} /$(get_libdir)/libwrap.so.0
|
|
dosym 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
|
|
}
|