1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/www/quickie/Makefile
Shaun Amott 43819c31ae Fix dodgy patch - send correct Content-Length: header.
PR:		ports/99075
Submitted by:	Nikolai Saoukh <nms+freebsd@otdel-1.org>
Approved by:	shaun (me), ahze (mentor)
2006-06-20 12:54:52 +00:00

70 lines
1.6 KiB
Makefile

# New ports collection makefile for: quickie
# Date Created: 2006-05-16
# Whom: Shaun Amott <shaun@inerd.com>
#
# $FreeBSD$
#
PORTNAME= quickie
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://${PORTNAME}.sourceforge.net/ \
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
MAINTAINER= shaun@FreeBSD.org
COMMENT= A small footprint, fast Wiki engine written in C++
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX} \
--sysconfdir=${PREFIX}/etc \
--localstatedir=${DATADIR}
USE_GETOPT_LONG= yes
MAN1= quickie-config.1 quickie_prime.1 quickie.1 quickie_svt.1 \
quickie_license.1 quickie_post_install.1
SUB_FILES= pkg-message
WWWOWN?= www
WWWGRP?= www
WWWDIR?= ${PREFIX}/www
PORTDOCS= ${DISTNAME}.pdf
.if !defined(NOPORTDOCS)
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}.pdf
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
.endif
.include <bsd.port.pre.mk>
post-patch:
@${CP} ${FILESDIR}/freebsd.h ${WRKSRC}/lib
pre-install:
@${MKDIR} ${DATADIR}/admin
@${MKDIR} ${DATADIR}/manual
post-install:
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${DATADIR}
.if !defined(WITHOUT_CGICOPY)
@if [ -d ${WWWDIR}/cgi-bin/ ]; then \
if [ ! -f ${WWWDIR}/cgi-bin/${PORTNAME} ]; then \
${ECHO_MSG} "===> Copying CGI binary..." ; \
${CP} -p ${PREFIX}/bin/${PORTNAME} ${WWWDIR}/cgi-bin/${PORTNAME} ; \
${CHOWN} ${WWWOWN}:${WWWGRP} ${WWWDIR}/cgi-bin/${PORTNAME} ; \
fi ; \
fi
.endif
@${CAT} ${PKGMESSAGE}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${DISTDIR}/${DISTNAME}.pdf ${DOCSDIR}
.endif
.include <bsd.port.post.mk>