b3c26a68fb
PR: 131500 Submitted by: Gerrit Beine <gerrit.beine@gmx.de> (maintainer)
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# New ports collection makefile for: www/mediawiki
|
|
# Date created: February 1st 2005
|
|
# Whom: Gerrit Beine <tux@pinguru.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mediawiki
|
|
PORTVERSION= 1.6.12
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://download.wikimedia.org/mediawiki/1.6/
|
|
|
|
MAINTAINER= gerrit.beine@gmx.de
|
|
COMMENT= The wiki engine used by Wikipedia
|
|
|
|
CONFLICTS= mediawiki-1.[0-57-9].* mediawiki-1.1[0-9].*
|
|
|
|
NO_LATEST_LINK= yes
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= iconv mbstring pcre session xml zlib readline
|
|
WANT_PHP_WEB= yes
|
|
MEDIAWIKIDIR?= www/mediawiki
|
|
|
|
OPTIONS= PGSQL "Use PostgreSQL instead of MySQL (not funtional)" off \
|
|
LDAP "Use LDAP authentication" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PGSQL)
|
|
USE_PHP+= pgsql
|
|
IGNORE= the table definitions for PostgreSQL install are out of date.\
|
|
PostgreSQL support may return in later releases, pending appropriate patches.\
|
|
Use www/mediawiki17 from now on
|
|
.else
|
|
USE_PHP+= mysql
|
|
.endif
|
|
|
|
.if defined(WITH_LDAP)
|
|
USE_PHP+= ldap
|
|
.endif
|
|
|
|
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.post.mk>
|