mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
1b98492dc3
PR: ports/78399 Submitted by: Gerrit Beine <tux@pinguru.net> (maintainer) Approved by: pav (mentor)
36 lines
960 B
Makefile
36 lines
960 B
Makefile
# New ports collection makefile for: www/mediawiki
|
|
# Date created: February 1st 2005
|
|
# Whom: Gerrit Beine <tux@pinguru.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mediawiki
|
|
PORTVERSION= 1.3.11
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= wikipedia
|
|
|
|
MAINTAINER= tux@pinguru.net
|
|
COMMENT= The wiki enginge used by Wikipedia
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= mysql session zlib
|
|
WANT_PHP_WEB= yes
|
|
MEDIAWIKIDIR?= www/data-dist/mediawiki
|
|
|
|
do-install:
|
|
-${MKDIR} ${PREFIX}/${MEDIAWIKIDIR}
|
|
@${CP} -r ${WRKSRC}/ ${PREFIX}/${MEDIAWIKIDIR}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${MEDIAWIKIDIR}
|
|
|
|
post-install:
|
|
@${FIND} ${WRKSRC}/${file} -not -type d \
|
|
| ${SED} -ne 's,^${WRKSRC},${MEDIAWIKIDIR},p' >> ${TMPPLIST}
|
|
@${FIND} -d ${WRKSRC}/${file} -type d \
|
|
| ${SED} -ne 's,^${WRKSRC},@dirrm ${MEDIAWIKIDIR},p' >> ${TMPPLIST}
|
|
@${SED} -e 's|%%MEDIAWIKIDIR%%|${PREFIX}/${MEDIAWIKIDIR}|' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|