summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2008-05-12 07:20:52 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2008-05-12 07:20:52 +0000
commit440caade4fddb2dbbe28fa4352580745c30ff7e5 (patch)
tree238a6e2854e6a278d66ab898274ec5d9da5727a5 /www-apache
parentremove old (diff)
downloadgentoo-2-440caade4fddb2dbbe28fa4352580745c30ff7e5.tar.gz
gentoo-2-440caade4fddb2dbbe28fa4352580745c30ff7e5.tar.bz2
gentoo-2-440caade4fddb2dbbe28fa4352580745c30ff7e5.zip
Remove old version.
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'www-apache')
-rw-r--r--www-apache/mod_caucho/ChangeLog6
-rw-r--r--www-apache/mod_caucho/mod_caucho-3.0.24.ebuild52
2 files changed, 5 insertions, 53 deletions
diff --git a/www-apache/mod_caucho/ChangeLog b/www-apache/mod_caucho/ChangeLog
index 01e8eac4a262..ed350c83d3fb 100644
--- a/www-apache/mod_caucho/ChangeLog
+++ b/www-apache/mod_caucho/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-apache/mod_caucho
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.39 2008/05/11 16:54:04 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.40 2008/05/12 07:20:52 nelchael Exp $
+
+ 12 May 2008; Krzysiek Pawlik <nelchael@gentoo.org>
+ -mod_caucho-3.0.24.ebuild:
+ Remove old version.
11 May 2008; Markus Rothe <corsair@gentoo.org> mod_caucho-3.0.25.ebuild:
Stable on ppc64; bug #221263
diff --git a/www-apache/mod_caucho/mod_caucho-3.0.24.ebuild b/www-apache/mod_caucho/mod_caucho-3.0.24.ebuild
deleted file mode 100644
index a56cdeac219c..000000000000
--- a/www-apache/mod_caucho/mod_caucho-3.0.24.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/mod_caucho-3.0.24.ebuild,v 1.10 2008/01/29 16:25:35 hollow Exp $
-
-inherit eutils apache-module autotools
-
-KEYWORDS="amd64 ppc ~ppc64 x86"
-
-DESCRIPTION="mod_caucho connects Resin and Apache2."
-HOMEPAGE="http://www.caucho.com/"
-SRC_URI="http://www.caucho.com/download/resin-${PV}-src.zip
- mirror://gentoo/resin-gentoo-patches-${PV}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-S="${WORKDIR}/resin-${PV}"
-
-# See apache-module.eclass for more information.
-APACHE2_MOD_CONF="88_${PN}"
-APACHE2_MOD_DEFINE="CAUCHO"
-
-need_apache2
-
-DEPEND="${DEPEND}
- app-arch/unzip"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- for i in "${WORKDIR}"/${PV}/mod_caucho-*; do
- epatch "${i}"
- done
- eautoreconf
- chmod 755 ./configure
-}
-
-src_compile() {
- econf --with-apxs=${APXS} || die "econf failed"
-
- emake -j1 -C "${S}/modules/c/src/apache2/" || die "emake failed"
-}
-
-src_install() {
- cd "${S}/modules/c/src/apache2"
- emake -j1 DESTDIR="${D}" install || die "emake install failed"
-
- insinto "${APACHE_MODULES_CONFDIR}"
- doins "${FILESDIR}/${APACHE2_MOD_CONF}.conf" \
- || die "internal ebuild error: ${APACHE2_MOD_CONF} not found."
-}