Gentoo Archives: gentoo-commits

From: "Benedikt Boehm (hollow)" <hollow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/tikiwiki: ChangeLog tikiwiki-1.9.10.1.ebuild
Date: Mon, 03 Mar 2008 21:35:51
Message-Id: E1JWIK3-0000Y4-9F@stork.gentoo.org
1 hollow 08/03/03 21:35:47
2
3 Modified: ChangeLog
4 Added: tikiwiki-1.9.10.1.ebuild
5 Log:
6 version bump wrt security #212227
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.56 www-apps/tikiwiki/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 22 Feb 2008 16:34:03 -0000 1.55
23 +++ ChangeLog 3 Mar 2008 21:35:46 -0000 1.56
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-apps/tikiwiki
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v 1.55 2008/02/22 16:34:03 hollow Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v 1.56 2008/03/03 21:35:46 hollow Exp $
29 +
30 +*tikiwiki-1.9.10.1 (03 Mar 2008)
31 +
32 + 03 Mar 2008; Benedikt Böhm <hollow@g.o> +tikiwiki-1.9.10.1.ebuild:
33 + version bump wrt security #212227
34
35 22 Feb 2008; Benedikt Böhm <hollow@g.o> tikiwiki-1.9.9.ebuild:
36 ebuild cleanup wrt #208584
37
38
39
40 1.1 www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tikiwiki-1.9.10.1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild,v 1.1 2008/03/03 21:35:46 hollow Exp $
50
51 inherit webapp depend.php
52
53 DESCRIPTION="Full-featured Web Content Management System using PHP and Smarty Templates"
54 HOMEPAGE="http://tikiwiki.org/"
55 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
56
57 LICENSE="LGPL-2.1"
58 IUSE="mysql postgres graphviz"
59 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
60
61 RDEPEND="graphviz? ( media-gfx/graphviz )"
62
63 need_httpd_cgi
64 need_php_httpd
65
66 pkg_setup () {
67 webapp_pkg_setup
68
69 local my_flags=
70 use mysql && my_flags="${my_flags} mysql"
71 use postgres && my_flags="${my_flags} postgres"
72
73 require_php_with_use ${my_flags}
74 }
75
76 src_install() {
77 webapp_src_preinst
78
79 # Remove the execute permission from the setup.sh script
80 # and rename it. Its actions have been incorporated here.
81 chmod a-x setup.sh
82 mv setup.sh setup.sh.done
83
84 dodoc changelog.txt copyright.txt doc/readme.txt doc/htaccess doc/htaccess.readme INSTALL README
85 rm -rf changelog.txt copyright.txt doc/ INSTALL license.txt README
86
87 insinto "${MY_HTDOCSDIR}"
88 doins -r .
89
90 local DIR DIRENTRY
91 local DIRS="backups db dump files img/trackers img/wiki
92 img/wiki_up modules/cache temp
93 templates_c templates styles maps whelp mods
94 lib/Galaxia/processes"
95
96 # Recursively set server ownership to allow server to write
97 # This is the rough equivalent of the setup.sh script
98 # provided in the distribution.
99 # Note: Cannot use xargs or find -exec here because
100 # these don't work with shell functions.
101
102 webapp_serverowned "${MY_HTDOCSDIR}"
103 webapp_serverowned "${MY_HTDOCSDIR}"/tiki-install.php
104
105 # ensure that directories exist, some don't.
106 # (part of original setup.sh)
107 for DIR in ${DIRS}; do
108 dodir "${MY_HTDOCSDIR}/${DIR}"
109 webapp_serverowned -R "${MY_HTDOCSDIR}/${DIR}"
110 done
111
112 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
113 webapp_src_install
114 }
115
116
117
118 --
119 gentoo-commits@l.g.o mailing list