diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2008-09-21 13:09:50 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2008-09-21 13:09:50 +0000 |
commit | 6b0c87897f943b6abf072d2a9f9040d295bd5ea8 (patch) | |
tree | d95ed88f8bd38481ee52089a5c1e7cc72845e3b8 /www-apps/tikiwiki | |
parent | Marking mh-20080903 ~ppc64 for bug 237202 (diff) | |
download | gentoo-2-6b0c87897f943b6abf072d2a9f9040d295bd5ea8.tar.gz gentoo-2-6b0c87897f943b6abf072d2a9f9040d295bd5ea8.tar.bz2 gentoo-2-6b0c87897f943b6abf072d2a9f9040d295bd5ea8.zip |
Removed vulnerable tikiwiki-1.9.10.1 (#213320).
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-apps/tikiwiki')
-rw-r--r-- | www-apps/tikiwiki/ChangeLog | 5 | ||||
-rw-r--r-- | www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild | 68 |
2 files changed, 4 insertions, 69 deletions
diff --git a/www-apps/tikiwiki/ChangeLog b/www-apps/tikiwiki/ChangeLog index 490cbce8708f..b9c2b9af671e 100644 --- a/www-apps/tikiwiki/ChangeLog +++ b/www-apps/tikiwiki/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-apps/tikiwiki # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v 1.60 2008/09/19 18:46:02 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/ChangeLog,v 1.61 2008/09/21 13:09:50 wrobel Exp $ + + 21 Sep 2008; wrobel@gentoo.org -tikiwiki-1.9.10.1.ebuild: + Removed vulnerable tikiwiki-1.9.10.1 (#213320). 19 Sep 2008; Tobias Scherbaum <dertobi123@gentoo.org> tikiwiki-2.0.ebuild: ppc stable, bug #213320 diff --git a/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild b/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild deleted file mode 100644 index 88157dec459e..000000000000 --- a/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/tikiwiki/tikiwiki-1.9.10.1.ebuild,v 1.2 2008/03/04 20:57:45 dertobi123 Exp $ - -inherit webapp depend.php - -DESCRIPTION="Full-featured Web Content Management System using PHP and Smarty Templates" -HOMEPAGE="http://tikiwiki.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -IUSE="mysql postgres graphviz" -KEYWORDS="~amd64 ppc ~sparc ~x86" - -RDEPEND="graphviz? ( media-gfx/graphviz )" - -need_httpd_cgi -need_php_httpd - -pkg_setup () { - webapp_pkg_setup - - local my_flags= - use mysql && my_flags="${my_flags} mysql" - use postgres && my_flags="${my_flags} postgres" - - require_php_with_use ${my_flags} -} - -src_install() { - webapp_src_preinst - - # Remove the execute permission from the setup.sh script - # and rename it. Its actions have been incorporated here. - chmod a-x setup.sh - mv setup.sh setup.sh.done - - dodoc changelog.txt copyright.txt doc/readme.txt doc/htaccess doc/htaccess.readme INSTALL README - rm -rf changelog.txt copyright.txt doc/ INSTALL license.txt README - - insinto "${MY_HTDOCSDIR}" - doins -r . - - local DIR DIRENTRY - local DIRS="backups db dump files img/trackers img/wiki - img/wiki_up modules/cache temp - templates_c templates styles maps whelp mods - lib/Galaxia/processes" - - # Recursively set server ownership to allow server to write - # This is the rough equivalent of the setup.sh script - # provided in the distribution. - # Note: Cannot use xargs or find -exec here because - # these don't work with shell functions. - - webapp_serverowned "${MY_HTDOCSDIR}" - webapp_serverowned "${MY_HTDOCSDIR}"/tiki-install.php - - # ensure that directories exist, some don't. - # (part of original setup.sh) - for DIR in ${DIRS}; do - dodir "${MY_HTDOCSDIR}/${DIR}" - webapp_serverowned -R "${MY_HTDOCSDIR}/${DIR}" - done - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_src_install -} |