mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
faa6c11e19
PR: 15527 Submitted by: maintainer
46 lines
1.7 KiB
Makefile
46 lines
1.7 KiB
Makefile
# New ports collection makefile for: mathopd HTTPD
|
|
# Version required: 1.3
|
|
# Date created: Sun Oct 31 1999
|
|
# Whom: tobez@plab.ku.dk
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= mathopd-1.3pl2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://mathop.diva.nl/dist/ \
|
|
ftp://ftp.prima.eu.org/pub/mirrored_files/mathop.diva.nl/
|
|
|
|
MAINTAINER= tobez@plab.ku.dk
|
|
|
|
WRKSRC= ${WRKDIR}/mathopd
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${FILESDIR}/mathopd.conf.sample ${PREFIX}/etc
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/mathopd
|
|
@${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/mathopd
|
|
@${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/mathopd
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/mathopd
|
|
.endif
|
|
@if [ ! -f ${PREFIX}/etc/rc.d/mathopd.sh ]; then \
|
|
${ECHO} "#! ${SH}" > ${PREFIX}/etc/rc.d/mathopd.sh; \
|
|
${ECHO} "[ -x ${PREFIX}/sbin/mathopd ] && ${PREFIX}/sbin/mathopd < ${PREFIX}/etc/mathopd.conf && ${ECHO} -n ' mathopd'" >> ${PREFIX}/etc/rc.d/mathopd.sh; \
|
|
${CHMOD} 440 ${PREFIX}/etc/rc.d/mathopd.sh; \
|
|
fi
|
|
@${ECHO} "====================================================================="
|
|
@${ECHO} ""
|
|
@${ECHO} "Before you start the server you must create a config file."
|
|
@${ECHO} "The easiest way to do it is to copy ${PREFIX}/etc/mathopd.conf.sample"
|
|
@${ECHO} "to ${PREFIX}/etc/mathopd.conf and edit this file to your taste."
|
|
@${ECHO} ""
|
|
@${ECHO} "After you've done with that, chmod 540 ${PREFIX}/etc/rc.d/mathopd.sh"
|
|
@${ECHO} "and run it."
|
|
@${ECHO} ""
|
|
@${ECHO} "Also do not forget to create your web hierarchy and to set its"
|
|
@${ECHO} "permissions to something secure."
|
|
@${ECHO} ""
|
|
@${ECHO} "====================================================================="
|
|
|
|
.include <bsd.port.mk>
|