mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
060d89d7fb
- portlint(1). - Fix plist. PR: ports/96274 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: maintainer (timeout 15 days), mnag (mentor)
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
# Ports collection makefile for: TWiki
|
|
# Date created: Fri Mar 7 14:36:05 CST 2003
|
|
# Whom: Justin Hawkins <justin@hawkins.id.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= twiki
|
|
PORTVERSION= 4.0.2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://twiki.org/p/pub/Codev/Release/
|
|
DISTNAME= TWiki-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= justin@hawkins.id.au
|
|
COMMENT= A flexible, powerful, and easy to use Web-based collaboration platform
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
WWW_ROOT?= ${WWWOWN}
|
|
TWIKIDIR?= ${PREFIX}/${WWW_ROOT}/twiki
|
|
|
|
PLIST_SUB= WWW_ROOT=${WWW_ROOT}
|
|
SUB_LIST= WWWUSER=${WWWOWN} WWWGROUP=${WWWGRP} TWIKIDIR=${TWIKIDIR} \
|
|
REINPLACE_CMD="${REINPLACE_CMD}"
|
|
SUB_FILES= pkg-install
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
|
|
pre-everything::
|
|
@${ECHO} "****************************************************************"
|
|
@${ECHO} "* If you're upgrading, Ctrl-C now and do the upgrade by hand. *"
|
|
@${ECHO} "* This software can't be upgraded automatically without *"
|
|
@${ECHO} "* damaging data in your wiki! *"
|
|
@${ECHO} "****************************************************************"
|
|
@sleep 10
|
|
|
|
post-extract:
|
|
@# move config to sample
|
|
@${MV} ${WRKSRC}/lib/TWiki.cfg ${WRKSRC}/lib/TWiki.cfg.sample
|
|
|
|
do-install:
|
|
${INSTALL} -d -m 0755 ${TWIKIDIR}
|
|
(cd ${WRKSRC} && ${FIND} . -not -name .PLIST.mktmp -not -name '.*_done.*' -not -name pkg-install | \
|
|
${CPIO} -pdmu -R${SHAREOWN}:${SHAREGRP} ${TWIKIDIR})
|
|
|
|
post-install:
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|