diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-02-24 00:00:38 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-02-24 00:00:38 +0000 |
commit | 5d6ee48dbcad6d05958db315707f44b33c73b79f (patch) | |
tree | 8e832dc7d5305eee5343121e7a159303db0a55b3 /www-apps/twiki/twiki-4.2.0.ebuild | |
parent | make IUSE=vhosts optional (diff) | |
download | historical-5d6ee48dbcad6d05958db315707f44b33c73b79f.tar.gz historical-5d6ee48dbcad6d05958db315707f44b33c73b79f.tar.bz2 historical-5d6ee48dbcad6d05958db315707f44b33c73b79f.zip |
version bump, #209663; ebuild cleanup wrt #208584
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'www-apps/twiki/twiki-4.2.0.ebuild')
-rw-r--r-- | www-apps/twiki/twiki-4.2.0.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/www-apps/twiki/twiki-4.2.0.ebuild b/www-apps/twiki/twiki-4.2.0.ebuild new file mode 100644 index 000000000000..c675c0037f45 --- /dev/null +++ b/www-apps/twiki/twiki-4.2.0.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/twiki/twiki-4.2.0.ebuild,v 1.1 2008/02/24 00:00:38 hollow Exp $ + +WEBAPP_NO_AUTO_INSTALL="yes" + +inherit webapp + +MY_PN="TWiki" + +DESCRIPTION="A Web Based Collaboration Platform" +HOMEPAGE="http://twiki.org/" +SRC_URI="http://twiki.org/p/pub/Codev/Release/${MY_PN}-${PV}.tgz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +S="${WORKDIR}" + +RDEPEND=">=app-text/rcs-5.7 + sys-apps/diffutils + >=dev-lang/perl-5.8 + dev-perl/Algorithm-Diff + dev-perl/CGI-Session + dev-perl/Digest-SHA1 + dev-perl/HTML-Parser + dev-perl/locale-maketext-lexicon + dev-perl/Text-Diff + dev-perl/URI + virtual/cron + >=virtual/perl-CGI-3.20 + virtual/perl-digest-base + virtual/perl-File-Spec + virtual/perl-libnet + virtual/perl-Time-Local" + +need_httpd_cgi + +src_install() { + webapp_src_preinst + + dodoc AUTHORS COPYRIGHT readme.txt + dohtml T*.html INSTALL.html + rm -f readme.txt T*.html INSTALL.html + + mv bin/LocalLib.cfg{.txt,} + + insinto "${MY_HTDOCSDIR}" + doins -r . + + for f in $(find data pub); do + webapp_serverowned "${MY_HTDOCSDIR}"/${f} + done + + for f in bin/setlib.cfg bin/LocalLib.cfg; do + webapp_configfile "${MY_HTDOCSDIR}"/${f} + done + + webapp_hook_script "${FILESDIR}"/reconfig + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt + + webapp_src_install +} + +pkg_postinst() { + ewarn + ewarn "If you are upgrading from an older version of TWiki, back up your" + ewarn "data/ and pub/ directories and any local changes before upgrading!" + ewarn + ewarn "You are _strongly_ encouraged to to read the upgrade guide:" + ewarn "http://twiki.org/cgi-bin/view/TWiki/TWikiDocumentation" + ewarn + webapp_pkg_postinst +} |