freebsd-ports/www/mediawiki118/Makefile
Edwin Groothuis b1c8f1006c www/mediawiki update to 1.5.3 (security update)
Fixes a security issue: Validation of the user language
	option was broken by a code change in May 2005, opening the
	possibility of remote code execution as this parameter is
	used in forming a class name dynamically created with eval().
	The validation has been corrected in this version.  All
	prior 1.5 release and prelease versions are affected; 1.4
	and earlier and not affected.

PR:		ports/90335
Submitted by:	Thomas Vogt <thomas@bsdunix.ch>
Approved by:	maintainer timeout
2005-12-20 20:52:18 +00:00

51 lines
1.2 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.5.3
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= wikipedia
MAINTAINER= tux@pinguru.net
COMMENT= The wiki engine used by Wikipedia
CONFLICTS= mediawiki-1.[0-46-9].*
NO_BUILD= yes
USE_PHP= iconv mbstring pcre session xml zlib imagick 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
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>