1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/news/diablo/Makefile
Jimmy Olgeni 7dc406a7a1 Remove indefinite articles and trailing periods from COMMENT, plus minor
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not
included as they contain Latin-1 characters that break the Phabricator
workflow. Category N.

CR:		D307
Approved by:	portmgr (bapt)
2014-07-10 12:13:11 +00:00

64 lines
1.7 KiB
Makefile

# Created by: James FitzGibbon <jfitz@FreeBSD.org>
# $FreeBSD$
PORTNAME= diablo
PORTVERSION= 5.1
CATEGORIES= news
MASTER_SITES= http://www.openusenet.org/diablo/download/
DISTNAME= ${PKGNAME}-REL
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Comprehensive newsfeeding and newsreading software package
BUILD_DEPENDS= xmake:${PORTSDIR}/devel/xmake
MAN5= diablo-kp.5 diablo-files.5
MAN8= dicmd.8 didump.8 dexpireover.8 dfeedinfo.8 dgrpctl.8 \
dilookup.8 diloadfromspool.8 doutq.8 dreadart.8 \
dreaderd.8 dpath.8 drcmd.8 dsyncgroups.8 dreadover.8 \
dkp.8 diablo.8 dexpire.8 dspoolout.8 dnewslink.8 \
doverctl.8 drequeue.8 dhisexpire.8
PORTDOCS= COPYRIGHT INSTALL README.READER README.SERVER RELEASE_NOTES
NO_STAGE= yes
OPTIONS_DEFINE= DES DOCS
DES_DESC= DES encryption support
.include <bsd.port.options.mk>
post-patch:
${CP} ${SCRIPTDIR}/diablo.sh-sample ${WRKDIR}
${REINPLACE_CMD} -E 's|%%PREFIX%%|${PREFIX}|g ;\
s|-g -O.?|${CFLAGS}| ; s|g?cc|${CC}|' \
${WRKDIR}/diablo.sh-sample ${WRKSRC}/XMakefile.inc
# Fix for GCC 4.2
${REINPLACE_CMD} -e 's|VServerConfig\[\]|*VServerConfig|' \
${WRKSRC}/dreaderd/main.c
.if empty(PORT_OPTIONS:MDES)
${REINPLACE_CMD} -e 's| -ldes||g' ${WRKSRC}/XMakefile.inc
.endif
do-build:
(cd ${WRKSRC} && xmake all)
do-install:
${MKDIR} ${PREFIX}/news/dbin
(cd ${WRKSRC} && xmake install)
${INSTALL_SCRIPT} ${WRKDIR}/diablo.sh-sample ${PREFIX}/etc/rc.d
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
post-install:
@${CAT} ${PKGMESSAGE}
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${RM} -rf ${PREFIX}/news/man
.include <bsd.port.mk>