summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2007-08-04 15:34:36 +0000
committerAndrej Kacian <ticho@gentoo.org>2007-08-04 15:34:36 +0000
commit7f782f76436ad61acc0a7c896df6def10b764460 (patch)
tree5c87238f221dcc8a31e8ba12cb7925c2fd03e3c5 /www-apps/dokuwiki
parentStable on x86. (diff)
downloadgentoo-2-7f782f76436ad61acc0a7c896df6def10b764460.tar.gz
gentoo-2-7f782f76436ad61acc0a7c896df6def10b764460.tar.bz2
gentoo-2-7f782f76436ad61acc0a7c896df6def10b764460.zip
Old version cleanup.
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'www-apps/dokuwiki')
-rw-r--r--www-apps/dokuwiki/ChangeLog6
-rw-r--r--www-apps/dokuwiki/dokuwiki-20061106.ebuild87
-rw-r--r--www-apps/dokuwiki/dokuwiki-20070524.ebuild87
-rw-r--r--www-apps/dokuwiki/dokuwiki-20070626.ebuild87
-rw-r--r--www-apps/dokuwiki/files/digest-dokuwiki-200611063
-rw-r--r--www-apps/dokuwiki/files/digest-dokuwiki-200705243
-rw-r--r--www-apps/dokuwiki/files/digest-dokuwiki-200706263
7 files changed, 5 insertions, 271 deletions
diff --git a/www-apps/dokuwiki/ChangeLog b/www-apps/dokuwiki/ChangeLog
index f6cc9c857e58..97139107fc20 100644
--- a/www-apps/dokuwiki/ChangeLog
+++ b/www-apps/dokuwiki/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-apps/dokuwiki
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/dokuwiki/ChangeLog,v 1.26 2007/07/23 09:00:41 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/dokuwiki/ChangeLog,v 1.27 2007/08/04 15:34:36 ticho Exp $
+
+ 04 Aug 2007; Andrej Kacian <ticho@gentoo.org> -dokuwiki-20061106.ebuild,
+ -dokuwiki-20070524.ebuild, -dokuwiki-20070626.ebuild:
+ Old version cleanup.
23 Jul 2007; Andrej Kacian <ticho@gentoo.org> dokuwiki-20070626b.ebuild:
Stable on x86, security bug #185886.
diff --git a/www-apps/dokuwiki/dokuwiki-20061106.ebuild b/www-apps/dokuwiki/dokuwiki-20061106.ebuild
deleted file mode 100644
index 9edda6971aca..000000000000
--- a/www-apps/dokuwiki/dokuwiki-20061106.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/dokuwiki/dokuwiki-20061106.ebuild,v 1.4 2007/03/23 22:21:51 ticho Exp $
-
-inherit webapp depend.php
-
-# Upstream uses dashes in the datestamp
-MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
-
-DESCRIPTION="DokuWiki is a simple to use Wiki aimed at a small companies
-documentation needs."
-HOMEPAGE="http://wiki.splitbrain.org/wiki:dokuwiki"
-SRC_URI="http://www.splitbrain.org/_media/projects/${PN}/${PN}-${MY_PV}.tgz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
-
-DEPEND="virtual/php"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- # let the eclass pick right php version...
- require_php_cli
-
- # ...and we check if correct USE flag for XML support is enabled
- if [[ ${PHP_VERSION} == "4" ]] ; then
- require_php_with_use expat
- else
- require_php_with_use xml
- fi
-
- webapp_pkg_setup
-}
-
-src_unpack() {
- cd ${WORKDIR}
- unpack ${PN}-${MY_PV}.tgz
- mv ${PN}-${MY_PV} ${P}
-}
-
-src_compile() {
- # Default compile hangs
- echo "Nothing to compile"
-}
-
-src_install() {
- local docs="README"
- webapp_src_preinst
-
- # NOTE: doc files should go into /usr/share/doc, and NOT installed in the vhost
- einfo "Installing docs"
- dodoc ${docs}
- for doc in ${docs} COPYING; do
- rm -f ${doc}
- done
-
- # Move bin directory to safe location (outside of docroot)
- # To resolve security bug #146800
- docinto scripts
- dodoc bin/*
- rm -rf bin
-
- einfo "Copying main files"
- cp -r . ${D}/${MY_HTDOCSDIR}
-
- # Install the htaccess file for pretty urls
- cp .htaccess ${D}/${MY_HTDOCSDIR}
-
- # Create initial changes file
- touch ${D}/${MY_HTDOCSDIR}/data/changes.log data/changes.log
-
- # The data dir needs to be owned by the server
- for x in `find . -print | grep "data/*" | grep -v .htaccess` ; do
- webapp_serverowned ${MY_HTDOCSDIR}/$x
- done
-
- webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
- webapp_configfile ${MY_HTDOCSDIR}/.htaccess
-
- webapp_configfile ${MY_HTDOCSDIR}/conf
- for x in $( cd ${D}/${MY_HTDOCSDIR}/conf && echo * ) ; do
- webapp_configfile ${MY_HTDOCSDIR}/conf/$x
- done
-
- webapp_src_install
-}
diff --git a/www-apps/dokuwiki/dokuwiki-20070524.ebuild b/www-apps/dokuwiki/dokuwiki-20070524.ebuild
deleted file mode 100644
index 633781e6f163..000000000000
--- a/www-apps/dokuwiki/dokuwiki-20070524.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/dokuwiki/dokuwiki-20070524.ebuild,v 1.1 2007/05/31 19:21:32 ticho Exp $
-
-inherit webapp depend.php
-
-# Upstream uses dashes in the datestamp
-MY_PV="rc${PV:0:4}-${PV:4:2}-${PV:6:2}"
-
-DESCRIPTION="DokuWiki is a simple to use Wiki aimed at a small companies
-documentation needs."
-HOMEPAGE="http://wiki.splitbrain.org/wiki:dokuwiki"
-SRC_URI="http://www.splitbrain.org/_media/projects/${PN}/${PN}-${MY_PV}.tgz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="virtual/php"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- # let the eclass pick right php version...
- require_php_cli
-
- # ...and we check if correct USE flag for XML support is enabled
- if [[ ${PHP_VERSION} == "4" ]] ; then
- require_php_with_use expat
- else
- require_php_with_use xml
- fi
-
- webapp_pkg_setup
-}
-
-src_unpack() {
- cd ${WORKDIR}
- unpack ${PN}-${MY_PV}.tgz
- mv ${PN}-${MY_PV} ${P}
-}
-
-src_compile() {
- # Default compile hangs
- echo "Nothing to compile"
-}
-
-src_install() {
- local docs="README"
- webapp_src_preinst
-
- # NOTE: doc files should go into /usr/share/doc, and NOT installed in the vhost
- einfo "Installing docs"
- dodoc ${docs}
- for doc in ${docs} COPYING; do
- rm -f ${doc}
- done
-
- # Move bin directory to safe location (outside of docroot)
- # To resolve security bug #146800
- docinto scripts
- dodoc bin/*
- rm -rf bin
-
- einfo "Copying main files"
- cp -r . ${D}/${MY_HTDOCSDIR}
-
- # Install the htaccess file for pretty urls
- cp .htaccess ${D}/${MY_HTDOCSDIR}
-
- # Create initial changes file
- touch ${D}/${MY_HTDOCSDIR}/data/changes.log data/changes.log
-
- # The data dir needs to be owned by the server
- for x in `find . -print | grep "data/*" | grep -v .htaccess` ; do
- webapp_serverowned ${MY_HTDOCSDIR}/$x
- done
-
- webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
- webapp_configfile ${MY_HTDOCSDIR}/.htaccess
-
- webapp_configfile ${MY_HTDOCSDIR}/conf
- for x in $( cd ${D}/${MY_HTDOCSDIR}/conf && echo * ) ; do
- webapp_configfile ${MY_HTDOCSDIR}/conf/$x
- done
-
- webapp_src_install
-}
diff --git a/www-apps/dokuwiki/dokuwiki-20070626.ebuild b/www-apps/dokuwiki/dokuwiki-20070626.ebuild
deleted file mode 100644
index 720e1d312a0d..000000000000
--- a/www-apps/dokuwiki/dokuwiki-20070626.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/dokuwiki/dokuwiki-20070626.ebuild,v 1.1 2007/06/28 01:01:04 ticho Exp $
-
-inherit webapp depend.php
-
-# Upstream uses dashes in the datestamp
-MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
-
-DESCRIPTION="DokuWiki is a simple to use Wiki aimed at a small companies
-documentation needs."
-HOMEPAGE="http://wiki.splitbrain.org/wiki:dokuwiki"
-SRC_URI="http://www.splitbrain.org/_media/projects/${PN}/${PN}-${MY_PV}.tgz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-DEPEND="virtual/php"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- # let the eclass pick right php version...
- require_php_cli
-
- # ...and we check if correct USE flag for XML support is enabled
- if [[ ${PHP_VERSION} == "4" ]] ; then
- require_php_with_use expat
- else
- require_php_with_use xml
- fi
-
- webapp_pkg_setup
-}
-
-src_unpack() {
- cd ${WORKDIR}
- unpack ${PN}-${MY_PV}.tgz
- mv ${PN}-${MY_PV} ${P}
-}
-
-src_compile() {
- # Default compile hangs
- echo "Nothing to compile"
-}
-
-src_install() {
- local docs="README"
- webapp_src_preinst
-
- # NOTE: doc files should go into /usr/share/doc, and NOT installed in the vhost
- einfo "Installing docs"
- dodoc ${docs}
- for doc in ${docs} COPYING; do
- rm -f ${doc}
- done
-
- # Move bin directory to safe location (outside of docroot)
- # To resolve security bug #146800
- docinto scripts
- dodoc bin/*
- rm -rf bin
-
- einfo "Copying main files"
- cp -r . ${D}/${MY_HTDOCSDIR}
-
- # Install the htaccess file for pretty urls
- cp .htaccess ${D}/${MY_HTDOCSDIR}
-
- # Create initial changes file
- touch ${D}/${MY_HTDOCSDIR}/data/changes.log data/changes.log
-
- # The data dir needs to be owned by the server
- for x in `find . -print | grep "data/*" | grep -v .htaccess` ; do
- webapp_serverowned ${MY_HTDOCSDIR}/$x
- done
-
- webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
- webapp_configfile ${MY_HTDOCSDIR}/.htaccess
-
- webapp_configfile ${MY_HTDOCSDIR}/conf
- for x in $( cd ${D}/${MY_HTDOCSDIR}/conf && echo * ) ; do
- webapp_configfile ${MY_HTDOCSDIR}/conf/$x
- done
-
- webapp_src_install
-}
diff --git a/www-apps/dokuwiki/files/digest-dokuwiki-20061106 b/www-apps/dokuwiki/files/digest-dokuwiki-20061106
deleted file mode 100644
index ddfb1ba514e0..000000000000
--- a/www-apps/dokuwiki/files/digest-dokuwiki-20061106
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 4abab36f55f90ff1f780b5b48b4c47f1 dokuwiki-2006-11-06.tgz 1058194
-RMD160 6b1eee41b7eb464e3a7aaa314a2332256906790e dokuwiki-2006-11-06.tgz 1058194
-SHA256 97c63ef56234a5031223b9a69582910ff692a3d0929e18481ff39203b13aeb7d dokuwiki-2006-11-06.tgz 1058194
diff --git a/www-apps/dokuwiki/files/digest-dokuwiki-20070524 b/www-apps/dokuwiki/files/digest-dokuwiki-20070524
deleted file mode 100644
index 6f9d63fcb1df..000000000000
--- a/www-apps/dokuwiki/files/digest-dokuwiki-20070524
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 25658a40d4c403963d85d79623a6db05 dokuwiki-rc2007-05-24.tgz 1180038
-RMD160 ae41dac459b72e48dc038292341171acc1bcf1be dokuwiki-rc2007-05-24.tgz 1180038
-SHA256 f9d5a18dc56945d119f35093d91194c702e0fb92df0df49e92ecfa532805100d dokuwiki-rc2007-05-24.tgz 1180038
diff --git a/www-apps/dokuwiki/files/digest-dokuwiki-20070626 b/www-apps/dokuwiki/files/digest-dokuwiki-20070626
deleted file mode 100644
index 7a02261cd1be..000000000000
--- a/www-apps/dokuwiki/files/digest-dokuwiki-20070626
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 65e595dfb9a49c282d0e757b303c133d dokuwiki-2007-06-26.tgz 1214248
-RMD160 3d0b9f9badd376a8ec9d2c46625f40acb368a326 dokuwiki-2007-06-26.tgz 1214248
-SHA256 7fed6372b710d0e0a033d3a950b1833f72c871bd36dc980cd0469a6d12076e49 dokuwiki-2007-06-26.tgz 1214248