diff options
author | Renat Lumpau <rl03@gentoo.org> | 2004-08-27 21:15:14 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2004-08-27 21:15:14 +0000 |
commit | 236fb2e5aee8e1d0859ca5f3a4851035a458148a (patch) | |
tree | 6bf55dc0feac102943e485a587dabcd4fdaf65bb /www-apps | |
parent | tag newer libxml2s as -hppa (diff) | |
download | historical-236fb2e5aee8e1d0859ca5f3a4851035a458148a.tar.gz historical-236fb2e5aee8e1d0859ca5f3a4851035a458148a.tar.bz2 historical-236fb2e5aee8e1d0859ca5f3a4851035a458148a.zip |
remove apache2 USE-flag. See bug 61893
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/rt/ChangeLog | 6 | ||||
-rw-r--r-- | www-apps/rt/Manifest | 4 | ||||
-rw-r--r-- | www-apps/rt/rt-3.2.1.ebuild | 24 |
3 files changed, 20 insertions, 14 deletions
diff --git a/www-apps/rt/ChangeLog b/www-apps/rt/ChangeLog index 5e4cfd0531af..9b7db7cdf5e7 100644 --- a/www-apps/rt/ChangeLog +++ b/www-apps/rt/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-apps/rt # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/ChangeLog,v 1.2 2004/08/26 10:35:22 rl03 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/ChangeLog,v 1.3 2004/08/27 21:15:14 rl03 Exp $ + + 27 Aug 2004; Renat Lumpau <rl03@gentoo.org> rt-3.2.1.ebuild: + HTML-Mason always pulls in libapreq, so IUSE="apache2" doesn't work. See bug + 61893. Until libapreq2 is in portage, always use Apache1. 26 Aug 2004; Renat Lumpau <rl03@gentoo.org> files/reconfig: Fixed db upgrade instructions. diff --git a/www-apps/rt/Manifest b/www-apps/rt/Manifest index 24cab6128b7e..e556a8864ea2 100644 --- a/www-apps/rt/Manifest +++ b/www-apps/rt/Manifest @@ -1,5 +1,5 @@ -MD5 a8c39b53ea4cd6a47f1d707cb1ebf983 rt-3.2.1.ebuild 4187 -MD5 d93533b516f2c69b6de13845850a422b ChangeLog 607 +MD5 5c8c749dba329d8d635da7d7ffec2626 rt-3.2.1.ebuild 4152 +MD5 3d3707b276cc6b8262d3491c1dd1ce2b ChangeLog 810 MD5 224c312cc23d02aa06c26a4da3cc1f90 metadata.xml 221 MD5 6737ba4198d78323c15c8b23da1dd323 files/postinstall-en.txt 1559 MD5 5f5c3f76ea4676e743612e38341780fe files/digest-rt-3.2.1 61 diff --git a/www-apps/rt/rt-3.2.1.ebuild b/www-apps/rt/rt-3.2.1.ebuild index 004db1201351..54c8d81c44bb 100644 --- a/www-apps/rt/rt-3.2.1.ebuild +++ b/www-apps/rt/rt-3.2.1.ebuild @@ -1,10 +1,11 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/rt-3.2.1.ebuild,v 1.1 2004/08/25 13:01:01 rl03 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/rt-3.2.1.ebuild,v 1.2 2004/08/27 21:15:14 rl03 Exp $ inherit webapp eutils -IUSE="mysql postgres fastcgi apache2" +IUSE="mysql postgres fastcgi" +#IUSE="mysql postgres fastcgi apache2" DESCRIPTION="RT is an industrial-grade ticketing system" HOMEPAGE="http://www.bestpractical.com/rt/" @@ -61,22 +62,23 @@ RDEPEND=" mysql? ( >=dev-db/mysql-4.0.13 >=dev-perl/DBD-mysql-2.0416 ) postgres? ( >=dev-db/postgresql-7.4.2-r1 dev-perl/DBD-Pg ) fastcgi? ( dev-perl/FCGI net-www/mod_fastcgi ) - apache2? ( >=net-www/apache-2 dev-perl/FCGI net-www/mod_fastcgi ) - !apache2? ( =net-www/apache-1* =dev-perl/libapreq-1* ) + !fastcgi? ( =dev-perl/libapreq-1* ) + =net-www/apache-1* " -# apache2? ( >=net-www/apache-2 >=dev-perl/mod_perl-1.99.11 >=dev-perl/libapreq-2 ) : ( =net-www/apache-1* dev-perl/libapreq-1* ) +# apache2? ( >=net-www/apache-2 dev-perl/FCGI net-www/mod_fastcgi ) +# !apache2? ( =net-www/apache-1* =dev-perl/libapreq-1* ) LICENSE="GPL-2" pkg_setup() { webapp_pkg_setup - if use apache2; then - ewarn "mod_perl2 isn't ready for prime time, fastcgi will be used instead" - ewarn "If you really want mod_perl2, you can edit the ebuild and uncomment a few lines" - ewarn "but if your RT breaks, you get to keep the pieces." - ewarn - fi +# if use apache2; then +# ewarn "mod_perl2 isn't ready for prime time, fastcgi will be used instead" +# ewarn "If you really want mod_perl2, you can edit the ebuild and uncomment a few lines" +# ewarn "but if your RT breaks, you get to keep the pieces." +# ewarn +# fi ewarn ewarn "If you are upgrading from an existing _RT2_ installation," ewarn "stop this ebuild (Ctrl-C now), download the upgrade tool," |