Files
ports/security/oidentd/Makefile
Daniel Engberg 8e1bb18dac security/oidentd: Update to 2.5.1
* FreeBSD 13+ fix
  (cd763e5aeb)
* Modify Makefile to follow Porter's Handbook more closely
* Define LICENSE_FILE
* Switch to tar.xz release archive
* Remove IPV6 option (it's 2021 not 1999)

Changes https://github.com/janikrabe/oidentd/blob/v2.5.1/NEWS

PR:		256230
Approved by:	maintainer timeout
2021-06-23 14:53:39 -07:00

37 lines
1.0 KiB
Makefile

# Created by: trevor
PORTNAME= oidentd
DISTVERSION= 2.5.1
CATEGORIES= security
MASTER_SITES= https://files.janikrabe.com/pub/oidentd/releases/${DISTVERSION}/
MAINTAINER= oliver@FreeBSD.org
COMMENT= Ident server that supports user-defined ident strings
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= bison tar:xz
USE_RC_SUBR= oidentd
GNU_CONFIGURE= yes
PLIST_FILES= sbin/oidentd etc/oidentd.conf.sample \
etc/oidentd_masq.conf.sample
MANPAGES= oidentd.conf.5 oidentd_masq.conf.5 oidentd.8
.for man in ${MANPAGES}
PLIST_FILES+= man/man${man:E}/${man}.gz
.endfor
CONFIGURE_ARGS= --disable-masq
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/oidentd ${STAGEDIR}${PREFIX}/sbin
${INSTALL_DATA} ${FILESDIR}/oidentd.conf.sample ${STAGEDIR}${PREFIX}/etc
${INSTALL_DATA} ${FILESDIR}/oidentd_masq.conf.sample ${STAGEDIR}${PREFIX}/etc
.for MANFILE in ${MANPAGES}
@${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/doc/${MANFILE}
${INSTALL_MAN} ${WRKSRC}/doc/${MANFILE} ${STAGEDIR}${PREFIX}/man/man${MANFILE:E}
.endfor
.include <bsd.port.mk>