Gentoo Archives: gentoo-commits

From: "Gunnar Wrobel (wrobel)" <wrobel@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/tikiwiki: ChangeLog tikiwiki-1.9.8.3.ebuild
Date: Sun, 28 Oct 2007 15:46:23
Message-Id: E1ImALC-0006i7-91@stork.gentoo.org
1 wrobel 07/10/28 15:46:18
2
3 Modified: ChangeLog
4 Added: tikiwiki-1.9.8.3.ebuild
5 Log:
6 Update to 1.9.8.3 (#195503).
7 (Portage version: 2.1.3.14)
8
9 Revision Changes Path
10 1.49 www-apps/tikiwiki/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -u -r1.48 -r1.49
22 --- ChangeLog 27 Oct 2007 11:21:46 -0000 1.48
23 +++ ChangeLog 28 Oct 2007 15:46:17 -0000 1.49
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-apps/tikiwiki
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v 1.48 2007/10/27 11:21:46 dertobi123 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v 1.49 2007/10/28 15:46:17 wrobel Exp $
29 +
30 +*tikiwiki-1.9.8.3 (28 Oct 2007)
31 +
32 + 28 Oct 2007; wrobel@g.o +tikiwiki-1.9.8.3.ebuild:
33 + Update to 1.9.8.3 (#195503).
34
35 27 Oct 2007; Tobias Scherbaum <dertobi123@g.o>
36 tikiwiki-1.9.8.2.ebuild:
37
38
39
40 1.1 www-apps/tikiwiki/tikiwiki-1.9.8.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/tikiwiki-1.9.8.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/tikiwiki/tikiwiki-1.9.8.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tikiwiki-1.9.8.3.ebuild
46 ===================================================================
47 # Copyright 1999-2007 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.8.3.ebuild,v 1.1 2007/10/28 15:46:17 wrobel 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="virtual/httpd-cgi
62 graphviz? ( media-gfx/graphviz )
63 "
64
65 need_php_httpd
66
67 pkg_setup () {
68 webapp_pkg_setup
69 use mysql && require_php_with_use mysql
70 use postgres && require_php_with_use postgres
71 }
72
73 src_install() {
74 webapp_src_preinst
75
76 local DIR
77 local DIRENTRY
78 local DIRS="backups db dump files img/trackers img/wiki
79 img/wiki_up modules/cache temp
80 templates_c templates styles maps whelp mods
81 lib/Galaxia/processes"
82
83 # Ensure that directories exist, some don't.
84 # (part of setup.sh)
85 for DIR in ${DIRS}; do
86 mkdir -p ${DIR}
87 done
88
89 # Remove the execute permission from the setup.sh script
90 # and rename it. Its actions have been incorporated here.
91 chmod a-x setup.sh
92 mv setup.sh setup.sh.done
93
94 # Install the minimal doc (points to web page)
95 #
96 dodoc doc/readme.txt doc/htaccess doc/htaccess.readme INSTALL README
97
98 # The bulk goes into htdocs
99 # but don't copy INSTALL and README
100 cp -pPR [[:lower:]]* "${D}"/"${MY_HTDOCSDIR}"
101
102 # Recursively set server ownership to allow server to write
103 # This is the rough equivalent of the setup.sh script
104 # provided in the distribution.
105 # Note: Cannot use xargs or find -exec here because
106 # these don't work with shell functions.
107 #
108 webapp_serverowned "${MY_HTDOCSDIR}"
109 for DIR in ${DIRS}; do
110 find ${DIR} | while read DIRENTRY; do
111 webapp_serverowned "${MY_HTDOCSDIR}"/${DIRENTRY}
112 done
113 done
114 webapp_serverowned "${MY_HTDOCSDIR}"/tiki-install.php
115
116 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
117 webapp_src_install
118 }
119
120
121
122 --
123 gentoo-commits@g.o mailing list