1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/ftp/tftp-hpa/Makefile
Baptiste Daroussin e444939b51 Add a DOCS options
Convert USE_GMAKE to USES=gmake
2014-01-25 21:10:40 +00:00

46 lines
976 B
Makefile

# $FreeBSD$
PORTNAME= tftp-hpa
PORTVERSION= 5.2
CATEGORIES= ftp
MASTER_SITES= ${MASTER_SITE_KERNEL_ORG}
MASTER_SITE_SUBDIR= software/network/tftp/tftp-hpa
MAINTAINER= brooks@FreeBSD.org
COMMENT= Advanced tftp server
OPTIONS_DEFINE= DOCS
USE_XZ= yes
GNU_CONFIGURE= yes
USES= gmake
USE_RC_SUBR= tftpd
DESTDIRNAME= INSTALLROOT
PLIST_FILES= bin/tftp \
libexec/in.tftpd \
man/man1/tftp.1.gz \
man/man8/in.tftpd.8.gz \
man/man8/tftpd.8.gz
PORTDOCS= CHANGES \
README \
README.security
post-patch:
@${REINPLACE_CMD} -e 's,SBINDIR,LIBEXECDIR,; s,sbindir,libexecdir,' \
${WRKSRC}/MCONFIG.in
@${REINPLACE_CMD} -e 's,SBINDIR,LIBEXECDIR,g' \
${WRKSRC}/tftpd/Makefile
@${REINPLACE_CMD} -e 's,LOG_DAEMON,LOG_FTP,g' \
-e 's,openlog(,tzset();openlog(,g' \
${WRKSRC}/tftpd/tftpd.c
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docfile in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>