Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/dokuwiki/
Date: Wed, 25 Jul 2018 19:37:51
Message-Id: 1532547449.22b61e4421edc6df7cfd401f3f32dabe8e947b02.jmbsvicetto@gentoo
1 commit: 22b61e4421edc6df7cfd401f3f32dabe8e947b02
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 25 19:36:37 2018 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 19:37:29 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22b61e44
7
8 www-apps/dokuwiki: Version bump to release 20180422a.
9
10 Reported by: boris <funtoo <AT> alphaframe.net>
11 Closes: https://bugs.gentoo.org/657530
12 Package-Manager: Portage-2.3.42, Repoman-2.3.9
13
14 www-apps/dokuwiki/Manifest | 1 +
15 www-apps/dokuwiki/dokuwiki-20180422a.ebuild | 77 +++++++++++++++++++++++++++++
16 2 files changed, 78 insertions(+)
17
18 diff --git a/www-apps/dokuwiki/Manifest b/www-apps/dokuwiki/Manifest
19 index 6f2ff03da93..a8b08deb1d7 100644
20 --- a/www-apps/dokuwiki/Manifest
21 +++ b/www-apps/dokuwiki/Manifest
22 @@ -1,2 +1,3 @@
23 DIST dokuwiki-2016-06-26e.tgz 3464178 BLAKE2B cdeebee2f36cc899fcffe1d6df6f5beee8f7dd303db00a41fa4d187c27528971a8ea0fccffacb6331fe61f5854a9b2687ff55c2578d628164a39f817e4538a58 SHA512 b47c3a31b0bc731392703ed8d705717e7d1b75db0c44d822d8791c1e409d5285fe863a3dbd13bc60b73c01ca268f7a73a6a24c90edd211fd5c124d3a8be70039
24 DIST dokuwiki-2017-02-19e.tgz 3505643 BLAKE2B 99fedb175fa8e1330a4ad14ed8d593edfc1edb9aeb7d8b9100e940fb4c5bfac9dada2fe395e030cff18b8c809e36211fc9d0bdc22d5be3fae7f243343704218a SHA512 6fadb64f9d8394731f346708849d8828b33f4f775e23bca97896b2e06bbfc3b70a6fc17d63dcef8199fdb0aaf0b8291eb0eebcdff7b81524b2d454229eb20be4
25 +DIST dokuwiki-2018-04-22a.tgz 3749191 BLAKE2B bb03b771e857a2db16ebd44d3f888af8e3c9dcd6fb5da2a549dc7c942ad87cb1e0aee6d3ed78edaa9df864804bf51cd18a17cf8a4123d12fac39405fe661bc04 SHA512 bf1dd7411abadedb395c9e12c7a9f5586fe078e59556b1ce66a5351c06f338406eca944d7589f40d8a9eb098da6ed0edc256f83ec8b19f6335415e2fe6c31284
26
27 diff --git a/www-apps/dokuwiki/dokuwiki-20180422a.ebuild b/www-apps/dokuwiki/dokuwiki-20180422a.ebuild
28 new file mode 100644
29 index 00000000000..f0eb2c1c725
30 --- /dev/null
31 +++ b/www-apps/dokuwiki/dokuwiki-20180422a.ebuild
32 @@ -0,0 +1,77 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +inherit webapp
39 +
40 +# upstream uses dashes in the datestamp
41 +MY_BASE_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
42 +MY_PV="${MY_BASE_PV}${PV:8:1}"
43 +
44 +DESCRIPTION="DokuWiki is a simple to use Wiki aimed at a small company's documentation needs."
45 +HOMEPAGE="https://wiki.dokuwiki.org"
46 +SRC_URI="https://download.dokuwiki.org/src/${PN}/${PN}-${MY_PV}.tgz"
47 +
48 +LICENSE="GPL-2"
49 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
50 +IUSE="gd"
51 +
52 +DEPEND=""
53 +RDEPEND="
54 + >=dev-lang/php-5.3[xml]
55 + virtual/httpd-php:*
56 + gd? ( ||
57 + (
58 + dev-lang/php[gd]
59 + media-gfx/imagemagick
60 + )
61 + )
62 +"
63 +
64 +need_httpd_cgi
65 +
66 +S="${WORKDIR}/${PN}-${MY_PV}"
67 +
68 +src_prepare() {
69 + # create initial changes file
70 + touch data/changes.log
71 +}
72 +
73 +src_install() {
74 + webapp_src_preinst
75 +
76 + dodoc README
77 + rm -f README COPYING
78 +
79 + docinto scripts
80 + dodoc bin/*
81 + rm -rf bin
82 +
83 + insinto "${MY_HTDOCSDIR}"
84 + doins -r .
85 +
86 + # Copy custom .htaccess that works with both apache 2.2 and 2.4
87 + for dir in "conf" "data" "inc" "inc/lang"; do
88 + insinto "${MY_HTDOCSDIR}/${dir}"
89 + newins "${FILESDIR}/htaccess" ".htaccess"
90 + done
91 +
92 + # Use custom .htaccess.dist that works with both apache 2.2 and 2.4
93 + insinto "${MY_HTDOCSDIR}/"
94 + newins "${FILESDIR}/htaccess-dist" ".htaccess.dist"
95 +
96 + for x in $(find data/ -not -name '.htaccess'); do
97 + webapp_serverowned "${MY_HTDOCSDIR}"/${x}
98 + done
99 +
100 + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess.dist
101 + webapp_configfile "${MY_HTDOCSDIR}"/conf
102 +
103 + for x in $(find conf/ -not -name 'msg'); do
104 + webapp_configfile "${MY_HTDOCSDIR}"/${x}
105 + done
106 +
107 + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
108 + webapp_src_install
109 +}