9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
72 lines
2.3 KiB
Makefile
72 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.29 2006/03/04 21:30:38 jlam 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
|
|
|
|
USE_LIBTOOL= yes
|
|
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
.include "../../mk/bsd.prefs.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= ${LOWER_OPSYS:C|\..*||}
|
|
BUILD_TARGET= ${BUILD_TARGET.${OPSYS}}
|
|
|
|
.if defined(USE_INET6) && !empty(USE_INET6:M[yY][eE][sS])
|
|
. 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
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; ${LIBTOOL} --mode=install \
|
|
${INSTALL_LIB} libwrap.la ${PREFIX}/lib
|
|
cd ${WRKSRC}; ${LIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} \
|
|
tcpdmatch try-from safe_finger tcpdchk ${PREFIX}/bin
|
|
cd ${WRKSRC}; ${INSTALL_DATA} tcpd.h ${PREFIX}/include
|
|
cd ${WRKSRC}; ${LIBTOOL} --mode=install \
|
|
${INSTALL_PROGRAM} tcpd ${PREFIX}/libexec
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.3 ${PREFIX}/${PKGMANDIR}/man3
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.5 ${PREFIX}/${PKGMANDIR}/man5
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.8 ${PREFIX}/${PKGMANDIR}/man8
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/tcp_wrappers
|
|
cd ${WRKSRC}; ${INSTALL_DATA} README README.NIS README.ipv6 \
|
|
${PREFIX}/share/doc/tcp_wrappers
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|