[arch-commits] Commit in dokuwiki/repos (3 files)

Sébastien Luttringer seblu at nymeria.archlinux.org
Wed Dec 11 22:24:57 UTC 2013


    Date: Wednesday, December 11, 2013 @ 23:24:57
  Author: seblu
Revision: 102475

archrelease: copy trunk to community-testing-any

Added:
  dokuwiki/repos/community-testing-any/
  dokuwiki/repos/community-testing-any/PKGBUILD
    (from rev 102474, dokuwiki/trunk/PKGBUILD)
  dokuwiki/repos/community-testing-any/apache.example.conf
    (from rev 102474, dokuwiki/trunk/apache.example.conf)

---------------------+
 PKGBUILD            |   61 ++++++++++++++++++++++++++++++++++++++++++++++++++
 apache.example.conf |    8 ++++++
 2 files changed, 69 insertions(+)

Copied: dokuwiki/repos/community-testing-any/PKGBUILD (from rev 102474, dokuwiki/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2013-12-11 22:24:57 UTC (rev 102475)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Sébastien Luttringer
+
+pkgname=dokuwiki
+pkgver=20131208
+_pkgver=${pkgver:0:4}-${pkgver:4:2}-${pkgver:6:2}
+pkgrel=1
+pkgdesc='Simple to use and highly versatile Open Source wiki software'
+arch=('any')
+url='https://www.dokuwiki.org/'
+license=('GPL')
+depends=('php')
+backup=('etc/webapps/dokuwiki/.htaccess'
+        'etc/httpd/conf/extra/dokuwiki.conf')
+options=('!strip')
+source=("http://download.dokuwiki.org/src/dokuwiki/dokuwiki-$_pkgver.tgz"
+        'apache.example.conf')
+md5sums=('620b7fed511e643ad05ad13207baa502'
+         'c5bed40abf5bb737bad8df29bb7020dc')
+
+package() {
+  cd "$pkgdir"
+  install -dm0755 usr/share/webapps var/lib/dokuwiki etc/webapps
+  cp -a "$srcdir"/$pkgname-${_pkgver} usr/share/webapps/dokuwiki
+
+  # move data in var
+  mv usr/share/webapps/dokuwiki/data var/lib/dokuwiki
+  ln -s {../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki}/data
+
+  # move plugins in var
+  mv usr/share/webapps/dokuwiki/lib/plugins var/lib/dokuwiki
+  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/plugins
+
+  # move templates in var
+  mv usr/share/webapps/dokuwiki/lib/tpl var/lib/dokuwiki
+  ln -s {../../../../../../var/lib/dokuwiki,usr/share/webapps/dokuwiki/lib}/tpl
+
+  # move config in /etc
+  mv usr/share/webapps/dokuwiki/conf etc/webapps/dokuwiki
+  chmod g=rwx etc/webapps/dokuwiki
+  ln -s ../../../../../etc/webapps/dokuwiki usr/share/webapps/dokuwiki/conf
+
+  # inform update on changes.log
+  touch var/lib/dokuwiki/data/changes.log
+  chmod 0644 var/lib/dokuwiki/data/changes.log
+
+  # use default htaccess
+  cp usr/share/webapps/dokuwiki/.htaccess.dist etc/webapps/dokuwiki/.htaccess
+  ln -s /etc/webapps/dokuwiki/.htaccess usr/share/webapps/dokuwiki/.htaccess
+
+  # fix rights and ownership
+  chown http:http var/lib/dokuwiki/plugins
+  chown -R http:http var/lib/dokuwiki/data
+  chown -R http:http etc/webapps/dokuwiki
+
+  # apache config
+  install -Dm0644 "$srcdir"/apache.example.conf etc/httpd/conf/extra/dokuwiki.conf
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dokuwiki/repos/community-testing-any/apache.example.conf (from rev 102474, dokuwiki/trunk/apache.example.conf)
===================================================================
--- community-testing-any/apache.example.conf	                        (rev 0)
+++ community-testing-any/apache.example.conf	2013-12-11 22:24:57 UTC (rev 102475)
@@ -0,0 +1,8 @@
+Alias /dokuwiki /usr/share/webapps/dokuwiki
+<Directory /usr/share/webapps/dokuwiki/>
+    Options +FollowSymLinks
+    AllowOverride All
+    order allow,deny
+    allow from all
+    php_admin_value open_basedir "/tmp/:/usr/share/webapps/dokuwiki/:/etc/webapps/dokuwiki/:/var/lib/dokuwiki/"
+</Directory>




More information about the arch-commits mailing list