summaryrefslogtreecommitdiff
path: root/www/ikiwiki/options.mk
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2009-08-12 21:14:34 +0000
committerschmonz <schmonz@pkgsrc.org>2009-08-12 21:14:34 +0000
commit65e3d8fc2db1009c5ca31dc3505d400668d587eb (patch)
treeab3590cbc5cfbd06a4eb009342ed655b50b09b20 /www/ikiwiki/options.mk
parent2df46bde89a83b3f143ebf5a1ca241c84f78c901 (diff)
downloadpkgsrc-65e3d8fc2db1009c5ca31dc3505d400668d587eb.tar.gz
Update to 3.141592. From the changelog:
* Add new hooks: canremove, canrename, rename. (intrigeri) * rename: Refactor subpage rename handling code into rename hook. (intrigeri) * po: New plugin, suporting translation of wiki pages using po files. (intrigeri) * Add build machinery to build po files to translate the underlay wikis, * Add further build machinery to generate translated underlays from the po file, for use by wikis whose primary language is not English. * Add Danish basewiki translation by Jonas Smedegaard. * img: Fix adding of dependency from page to the image. * pagestats: add among parameter, which only counts links from specified pages (smcv) * pagestats: when making a tag cloud, don't emit links where the tag is unused (smcv) * map: Avoid emitting an unclosed ul element if the map is empty. (harishcm) * inline: Add pagenames parameter that can be used to list a set of pages to inline, in a specific order, without using a PageSpec. (smcv) * Add getsource plugin (Will, smcv) Note that the new po plugin won't work until textproc/po4a is updated to at least 0.34. Any takers?
Diffstat (limited to 'www/ikiwiki/options.mk')
-rw-r--r--www/ikiwiki/options.mk10
1 files changed, 7 insertions, 3 deletions
diff --git a/www/ikiwiki/options.mk b/www/ikiwiki/options.mk
index 864b301c9a0..ab15ecd076a 100644
--- a/www/ikiwiki/options.mk
+++ b/www/ikiwiki/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2009/07/24 14:35:14 schmonz Exp $
+# $NetBSD: options.mk,v 1.5 2009/08/12 21:14:35 schmonz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ikiwiki
PKG_SUPPORTED_OPTIONS= ikiwiki-amazon-s3 ikiwiki-search
@@ -22,11 +22,15 @@ DEPENDS+= p5-PerlMagick-[0-9]*:../../graphics/p5-PerlMagick
.endif
.if !empty(PKG_OPTIONS:Mpython)
-REPLACE_PYTHON+=plugins/proxy.py plugins/rst
DEPENDS+= ${PYPKGPREFIX}-docutils-[0-9]*:../../textproc/py-docutils
.include "../../lang/python/application.mk"
.else
-CHECK_INTERPRETER_SKIP+= lib/ikiwiki/plugins/*
+CHECK_INTERPRETER_SKIP+=lib/ikiwiki/plugins/*
+# and no python dependency, so let's not use a system python by mistake
+REPLACE_INTERPRETER+= python
+REPLACE.python.old= .*python[^[:space:]]*
+REPLACE.python.new= ${LOCALBASE}/bin/python
+REPLACE_FILES.python= ${REPLACE_PYTHON}
.endif
.if !empty(PKG_OPTIONS:Msvn)