summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenat Lumpau <rl03@gentoo.org>2005-08-28 23:38:26 +0000
committerRenat Lumpau <rl03@gentoo.org>2005-08-28 23:38:26 +0000
commitf70274fc680da18261ec4c65b5024a192813921e (patch)
tree0755fb01ff0103b3ef6c40313d4e75ae4f26981c /www-apps/moinmoin/files
parentnew version (diff)
downloadgentoo-2-f70274fc680da18261ec4c65b5024a192813921e.tar.gz
gentoo-2-f70274fc680da18261ec4c65b5024a192813921e.tar.bz2
gentoo-2-f70274fc680da18261ec4c65b5024a192813921e.zip
Version bump, close bugs #74939, #68848
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'www-apps/moinmoin/files')
-rw-r--r--www-apps/moinmoin/files/digest-moinmoin-1.3.51
-rw-r--r--www-apps/moinmoin/files/postinstall-en.txt11
-rw-r--r--www-apps/moinmoin/files/reconfig14
3 files changed, 21 insertions, 5 deletions
diff --git a/www-apps/moinmoin/files/digest-moinmoin-1.3.5 b/www-apps/moinmoin/files/digest-moinmoin-1.3.5
new file mode 100644
index 000000000000..bc593c1b1767
--- /dev/null
+++ b/www-apps/moinmoin/files/digest-moinmoin-1.3.5
@@ -0,0 +1 @@
+MD5 7194abf16cd6fe24c046013ce3a7c13d moin-1.3.5.tar.gz 3456657
diff --git a/www-apps/moinmoin/files/postinstall-en.txt b/www-apps/moinmoin/files/postinstall-en.txt
index 4fa7ca85bd2f..568aaf0f5373 100644
--- a/www-apps/moinmoin/files/postinstall-en.txt
+++ b/www-apps/moinmoin/files/postinstall-en.txt
@@ -1,7 +1,10 @@
+Now please read the installation manual at
+http://moinmoin.wikiwikiweb.de/HelpOnInstalling
-You are almost done!
+MoinMoin can work with a variety of webservers. Simple Apache instructions
+are given below:
-1. ExecCGI needs to be enabled in your Moinmoin directory. You con do this by
+1. ExecCGI needs to be enabled in your Moinmoin directory. You can do this by
simply
# echo "Options ExecCGI" > ${MY_INSTALLDIR}/.htaccess
# echo "AddHandler cgi-script .cgi" >> ${MY_INSTALLDIR}/.htaccess
@@ -16,6 +19,4 @@ in httpd.conf, and change "AllowOverride None" to "AllowOverride All".
4. Restart Apache
-5. Go to http://YOURHOST/mymoin
-
-Enjoy!
+5. Go to http://${VHOST_HOSTNAME}/mymoin
diff --git a/www-apps/moinmoin/files/reconfig b/www-apps/moinmoin/files/reconfig
new file mode 100644
index 000000000000..810a9ef6d43e
--- /dev/null
+++ b/www-apps/moinmoin/files/reconfig
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+die() {
+ echo "#####"
+ echo $1
+ echo "#####"
+ exit 1
+}
+
+if [ $1 = "install" ]; then
+ sed -e "s|/path/to/wikiconfig|${MY_INSTALLDIR}/wikiconfig.py|g" -i ${MY_INSTALLDIR}/moin.cgi || die "sed failed"
+elif [ $1 = "clean" ]; then
+ echo $1
+fi