mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
68 lines
2.4 KiB
Makefile
68 lines
2.4 KiB
Makefile
# New ports collection makefile for: diablo
|
|
# Version required: 1.10
|
|
# Date created: June 2nd 1997
|
|
# Whom: jfitz
|
|
#
|
|
# $Id: Makefile,v 1.2 1997/06/08 01:41:05 jfitz Exp $
|
|
#
|
|
|
|
DISTNAME= diablo-1.10
|
|
CATEGORIES= news
|
|
MASTER_SITES= http://www.backplane.com/diablo/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jfitz@FreeBSD.ORG
|
|
|
|
BUILD_DEPENDS= xmake:${PORTSDIR}/devel/xmake
|
|
|
|
WRKSRC= ${WRKDIR}/diablo
|
|
|
|
NO_PACKAGE= "has to create/verify news user"
|
|
|
|
MAN5= diablo-files.5
|
|
MAN8= diablo.8 dclean.8 dicmd.8 dexpire.8 didump.8 \
|
|
dilookup.8 doutq.8 dspoolout.8
|
|
|
|
do-configure:
|
|
${CP} ${FILESDIR}/post-install-notes ${WRKSRC}
|
|
${SETENV} ${MAKE_ENV} /usr/bin/perl -pi -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/post-install-notes
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${PREFIX}/bin/xmake clean all
|
|
|
|
pre-install:
|
|
@ ${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/createuser
|
|
${MKDIR} ${PREFIX}/news ${PREFIX}/news/dbin ${PREFIX}/news/spool ${PREFIX}/news/spool/news ${PREFIX}/share/doc/diablo
|
|
${RM} -f /news
|
|
/bin/ln -sf ${PREFIX}/news /news
|
|
/usr/sbin/chown -R news.news ${PREFIX}/news
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${PREFIX}/bin/xmake install
|
|
.for file in COPYRIGHT INSTALL README RELEASE_NOTES TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/diablo
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/post-install-notes ${PREFIX}/share/doc/diablo
|
|
|
|
post-install:
|
|
${INSTALL} -c -o news -g news ${WRKSRC}/samples/* ${PREFIX}/news
|
|
@ echo "Installing ${PREFIX}/etc/rc.d/diablo.sh startup script"
|
|
@ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "#" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "# The line to run diablo is specifically commented out" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "# so that you don't start up diablo with a generic config" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "# Once you've configured diablo, uncomment the line below" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "if [ -x ${PREFIX}/news/rc.news ]" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "then" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "# ${PREFIX}/news/rc.news && echo -n ' diablo'" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo " echo -n ' diablo(disabled)'" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
@ echo "fi" >> ${PREFIX}/etc/rc.d/diablo.sh
|
|
/bin/chmod 0750 ${PREFIX}/etc/rc.d/diablo.sh
|
|
.if !defined(BATCH)
|
|
@ /usr/bin/more -e ${PREFIX}/share/doc/diablo/post-install-notes
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|