mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
78d57b1843
- reason MediaWiki 1.3 is no longer supported by the MediaWiki Foundation. This meens, there will be no more security fixes for this branch. All users should upgrade their MediaWiki installations to one of the newer versions (www/mediawiki14, www/mediawiki15 or www/mediawiki). - The port will expire on 1st of Septembre, 2006. PR: ports/99683 Submitted by: maintainer (Gerrit Beine)
61 lines
1.5 KiB
Makefile
61 lines
1.5 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.3.18
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= wikipedia
|
|
|
|
MAINTAINER= gerrit.beine@gmx.de
|
|
COMMENT= The wiki engine used by Wikipedia
|
|
|
|
CONFLICTS= mediawiki-1.[0-24-9].*
|
|
DEPRECATED= No longer supported, please upgrade your wiki installation
|
|
EXPIRES= 2006-09-01
|
|
|
|
NO_LATEST_LINK= yes
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= iconv mbstring pcre session xml zlib readline
|
|
WANT_PHP_WEB= yes
|
|
MEDIAWIKIDIR?= www/data-dist/mediawiki
|
|
|
|
OPTIONS= PGSQL "Use PostgreSQL instead of MySQL" off \
|
|
LDAP "Use LDAP authentication" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PGSQL)
|
|
USE_PHP+= pgsql
|
|
.else
|
|
USE_PHP+= mysql
|
|
.endif
|
|
|
|
.if defined(WITH_LDAP)
|
|
USE_PHP+= ldap
|
|
.endif
|
|
|
|
# Fix USE_PHP after bsd.port.pre.mk
|
|
.include "${PORTSDIR}/Mk/bsd.php.mk"
|
|
|
|
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}
|
|
@${ECHO_CMD} "@unexec rmdir %D/www/data-dist 2>/dev/null || true" >> ${TMPPLIST}
|
|
@${SED} -e 's|%%MEDIAWIKIDIR%%|${PREFIX}/${MEDIAWIKIDIR}|' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|