Index: head/www/mediawiki/Makefile =================================================================== --- head/www/mediawiki/Makefile (revision 297313) +++ head/www/mediawiki/Makefile (revision 297314) @@ -1,82 +1,95 @@ # New ports collection makefile for: www/mediawiki # Date created: February 1st 2005 # Whom: Gerrit Beine # # $FreeBSD$ # PORTNAME= mediawiki PORTVERSION= 1.19.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://dumps.wikimedia.org/mediawiki/${PORTVERSION:R}/ MAINTAINER= wen@FreeBSD.org COMMENT= The wiki engine used by Wikipedia +LICENSE= GPLv2 + CONFLICTS= mediawiki-1.1[0-8].* FETCH_ARGS= -pr USE_PHP= ctype iconv mbstring pcre session xml zlib readline dom IGNORE_WITH_PHP= 4 WANT_PHP_WEB= yes MEDIAWIKIDIR?= www/mediawiki OPTIONS= PGSQL "Use PostgreSQL (instead of MySQL)" off \ + SQLITE "Use SQLite (instead of MySQL)" off \ LDAP "Use LDAP authentication" off \ TEXVC "Use built-in TeX rendering" off \ - APC "Use pecl-APC" on \ + MEMCACHED "Use memcached" off \ + APC "Use pecl-APC(Mediawiki recommended)" on \ EACCEL "Use eAccelerator (instead of pecl-APC)" off \ IMAGICK "Use ImageMagick" off .include .if defined(WITH_PGSQL) USE_PHP+= pgsql +.elif defined(WITH_SQLITE) +USE_PHP+= sqlite .else USE_MYSQL= server USE_PHP+= mysql .endif .if defined(WITH_LDAP) USE_PHP+= ldap .endif .if defined(WITH_TEXVC) IGNORE= not build currently RUN_DEPENDS+= latex:${PORTSDIR}/print/latex BUILD_DEPENDS+= ocaml:${PORTSDIR}/lang/ocaml USE_GMAKE=yes WITH_IMAGICK=yes .endif +.if defined(WITH_MEMCACHED) +RUN_DEPENDS= memcached:${PORTSDIR}/databases/memcached +.endif + .if defined(WITH_IMAGICK) RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick .endif -.if defined(WITH_APC) || defined(WITH_EACCEL) +.if defined(WITH_APC) || defined(WITH_EACCEL)||defined(WITH_XCACHE) .if defined(WITH_EACCEL) RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator +.elif defined(WITH_XCACHE) +RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache .else RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC .endif .endif do-build: .if defined(WITH_TEXVC) @(cd ${WRKSRC}/math && ${GMAKE}) .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 Property changes on: head/www/mediawiki/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.77 \ No newline at end of property +1.78 \ No newline at end of property