diff options
author | Stefan Eßer <se@FreeBSD.org> | 2014-06-02 00:27:14 +0800 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2014-06-02 00:27:14 +0800 |
commit | 40f62f1b55e6ecafa5379ba034a66498215dc696 (patch) | |
tree | 54e390dc9505effc48c71a3f8124bdc318944bbd /security | |
parent | 0c7c5ef6b88764b9ab0222a904112dfd88d00f8e (diff) | |
download | freebsd-ports-gnome-40f62f1b55e6ecafa5379ba034a66498215dc696.tar.gz freebsd-ports-gnome-40f62f1b55e6ecafa5379ba034a66498215dc696.tar.zst freebsd-ports-gnome-40f62f1b55e6ecafa5379ba034a66498215dc696.zip |
Add stage support and introduce port options for IPV6 and LIBWRAP.
Reviewed by: sem (maintainer), antoine
Approved by: antoine (mentor)
Diffstat (limited to 'security')
-rw-r--r-- | security/xinetd/Makefile | 30 | ||||
-rw-r--r-- | security/xinetd/pkg-plist | 4 |
2 files changed, 22 insertions, 12 deletions
diff --git a/security/xinetd/Makefile b/security/xinetd/Makefile index e9b243c06c94..3f765833bcb7 100644 --- a/security/xinetd/Makefile +++ b/security/xinetd/Makefile @@ -5,29 +5,35 @@ PORTNAME= xinetd PORTVERSION= 2.3.15 PORTREVISION= 1 CATEGORIES= security ipv6 -MASTER_SITES= http://www.xinetd.org/ +MASTER_SITES= GENTOO/distfiles MAINTAINER= sem@FreeBSD.org COMMENT= Replacement for inetd with better control and logging -LICENSE= BSD - -USES= gmake GNU_CONFIGURE= yes USE_RC_SUBR= xinetd ALL_TARGET= build -CONFIGURE_ARGS+= --with-loadavg --with-libwrap --with-ipv6 +CONFIGURE_ARGS+= --with-loadavg + +USES= shebangfix perl5 +USE_PERL5= run +SHEBANG_FILES= ${WRKSRC}/xinetd/xconv.pl + +OPTIONS_DEFINE= IPV6 LIBWRAP +OPTIONS_DEFAULT= LIBWRAP -MAN5= xinetd.conf.5 -MAN8= xconv.8 xinetd.8 xinetd.log.8 +IPV6_CONFIGURE_WITH= ipv6 +LIBWRAP_CONFIGURE_WITH= libwrap -NO_STAGE= yes post-patch: - ${FIND} ${WRKSRC}/libs/src -name Makefile.in | ${XARGS} \ - ${REINPLACE_CMD} -e 's!\@INSTALL\@!/bin/cp!; s!-m 640!!' @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/xinetd/xconfig.h -post-install: - @${STRIP_CMD} ${PREFIX}/sbin/xinetd +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/xinetd/xinetd ${STAGEDIR}${PREFIX}/sbin/xinetd + ${INSTALL_SCRIPT} ${WRKSRC}/xinetd/xconv.pl ${STAGEDIR}${PREFIX}/bin/xconv + ${INSTALL_MAN} ${WRKSRC}/xinetd/xinetd.conf.man ${STAGEDIR}${PREFIX}/man/man5/xinetd.conf.5 + ${INSTALL_MAN} ${WRKSRC}/xinetd/xconv.pl.8 ${STAGEDIR}${PREFIX}/man/man8/xconv.8 + ${INSTALL_MAN} ${WRKSRC}/xinetd/xinetd.man ${STAGEDIR}${PREFIX}/man/man8/xinetd.8 + ${INSTALL_MAN} ${WRKSRC}/xinetd/xinetd.log.man ${STAGEDIR}${PREFIX}/man/man8/xinetd.log.8 .include <bsd.port.mk> diff --git a/security/xinetd/pkg-plist b/security/xinetd/pkg-plist index fb8e32299793..c08fd708c30f 100644 --- a/security/xinetd/pkg-plist +++ b/security/xinetd/pkg-plist @@ -1,2 +1,6 @@ bin/xconv sbin/xinetd +man/man5/xinetd.conf.5.gz +man/man8/xconv.8.gz +man/man8/xinetd.8.gz +man/man8/xinetd.log.8.gz |