fac967286c
Patch provided by Aleksey Cheusov in PR pkg/39905.
76 lines
2.4 KiB
Makefile
76 lines
2.4 KiB
Makefile
# $NetBSD: Makefile,v 1.33 2008/11/16 13:57:02 tron Exp $
|
|
|
|
DISTNAME= tcp_wrappers_7.6-ipv6.1
|
|
PKGNAME= tcp_wrappers-7.6.1
|
|
PKGREVISION= 4
|
|
CATEGORIES= security net
|
|
MASTER_SITES= ftp://ftp.porcupine.org/pub/security/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= ftp://ftp.porcupine.org/pub/security/index.html
|
|
COMMENT= Monitor and filter incoming requests for network services
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.tcp_wrappers
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
BUILD_TARGET.${OPSYS}?= generic # good luck!
|
|
BUILD_TARGET.Darwin= netbsd
|
|
BUILD_TARGET.Interix= netbsd
|
|
BUILD_TARGET.Linux= ${LOWER_OPSYS}
|
|
.if !empty(OPSYS:M*BSD)
|
|
BUILD_TARGET.${OPSYS}= netbsd
|
|
.endif
|
|
BUILD_TARGET.SunOS= sunos5
|
|
BUILD_TARGET.IRIX= irix5
|
|
BUILD_TARGET= ${BUILD_TARGET.${OPSYS}}
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
. if !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly"
|
|
MAKE_ENV+= IPV6="-DHAVE_IPV6 -DUSE_GETHOSTBYNAME2"
|
|
. elif ${OPSYS} != "Linux"
|
|
MAKE_ENV+= IPV6=-DHAVE_IPV6
|
|
. endif
|
|
.endif
|
|
|
|
# Default to /etc/hosts.{allow,deny} for the configuration files to match
|
|
# the historic location of these files. This may be changed by setting
|
|
# PKG_SYSCONFDIR.tcp_wrappers to a different value in /etc/mk.conf.
|
|
#
|
|
PKG_SYSCONFDIR.tcp_wrappers?= /etc
|
|
MAKE_ENV+= PKGSYSCONFDIR=${PKG_SYSCONFDIR:Q}
|
|
|
|
INSTALLATION_DIRS= bin include lib libexec ${PKGMANDIR}/man3 ${PKGMANDIR}/man5 ${PKGMANDIR}/man8
|
|
|
|
post-build:
|
|
cd ${WRKSRC}; for file in *.[0-9]; do \
|
|
${MV} -f $$file $$file.BAK; \
|
|
${SED} -e "s|/etc/hosts\.|${PKG_SYSCONFDIR}/hosts.|g" \
|
|
$$file.BAK > $$file; \
|
|
done
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/tcp_wrappers
|
|
INSTALLATION_DIRS+= ${DOCDIR}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; ${LIBTOOL} --mode=install \
|
|
${INSTALL_LIB} libwrap.la ${DESTDIR}${PREFIX}/lib
|
|
cd ${WRKSRC}; ${LIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} \
|
|
tcpdmatch try-from safe_finger tcpdchk ${DESTDIR}${PREFIX}/bin
|
|
cd ${WRKSRC}; ${INSTALL_DATA} tcpd.h ${DESTDIR}${PREFIX}/include
|
|
cd ${WRKSRC}; ${LIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} tcpd ${DESTDIR}${PREFIX}/libexec
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.3 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8
|
|
cd ${WRKSRC}; ${INSTALL_DATA} README README.NIS README.ipv6 \
|
|
${DESTDIR}${DOCDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|