summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2008-05-10 20:18:05 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2008-05-10 20:18:05 +0000
commitb8ae4d7a67499336a598e20277683f235c114aa6 (patch)
tree84fee470b4f7e48f6c219097ccde62d4db886808 /www-apache/mod_caucho
parentVersion bump, removed old versions. (diff)
downloadgentoo-2-b8ae4d7a67499336a598e20277683f235c114aa6.tar.gz
gentoo-2-b8ae4d7a67499336a598e20277683f235c114aa6.tar.bz2
gentoo-2-b8ae4d7a67499336a598e20277683f235c114aa6.zip
Version bump, removed old versions.
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'www-apache/mod_caucho')
-rw-r--r--www-apache/mod_caucho/ChangeLog9
-rw-r--r--www-apache/mod_caucho/mod_caucho-3.1.3.ebuild62
-rw-r--r--www-apache/mod_caucho/mod_caucho-3.1.4.ebuild62
-rw-r--r--www-apache/mod_caucho/mod_caucho-3.1.6.ebuild (renamed from www-apache/mod_caucho/mod_caucho-3.1.5.ebuild)2
4 files changed, 9 insertions, 126 deletions
diff --git a/www-apache/mod_caucho/ChangeLog b/www-apache/mod_caucho/ChangeLog
index 7063170a31ff..ff344bd7e286 100644
--- a/www-apache/mod_caucho/ChangeLog
+++ b/www-apache/mod_caucho/ChangeLog
@@ -1,6 +1,13 @@
# 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.35 2008/05/10 19:49:09 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/ChangeLog,v 1.36 2008/05/10 20:18:05 nelchael Exp $
+
+*mod_caucho-3.1.6 (10 May 2008)
+
+ 10 May 2008; Krzysiek Pawlik <nelchael@gentoo.org>
+ -mod_caucho-3.1.3.ebuild, -mod_caucho-3.1.4.ebuild,
+ -mod_caucho-3.1.5.ebuild, +mod_caucho-3.1.6.ebuild:
+ Version bump, removed old versions.
10 May 2008; Krzysiek Pawlik <nelchael@gentoo.org>
mod_caucho-3.0.25.ebuild:
diff --git a/www-apache/mod_caucho/mod_caucho-3.1.3.ebuild b/www-apache/mod_caucho/mod_caucho-3.1.3.ebuild
deleted file mode 100644
index 4602a5183bef..000000000000
--- a/www-apache/mod_caucho/mod_caucho-3.1.3.ebuild
+++ /dev/null
@@ -1,62 +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.1.3.ebuild,v 1.3 2008/01/29 16:25:35 hollow Exp $
-
-inherit eutils apache-module autotools
-
-KEYWORDS="~amd64 ~ppc ~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=""
-
-DEPEND=""
-RDEPEND=""
-
-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}.conf not found."
-
-}
diff --git a/www-apache/mod_caucho/mod_caucho-3.1.4.ebuild b/www-apache/mod_caucho/mod_caucho-3.1.4.ebuild
deleted file mode 100644
index 470a544d725a..000000000000
--- a/www-apache/mod_caucho/mod_caucho-3.1.4.ebuild
+++ /dev/null
@@ -1,62 +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.1.4.ebuild,v 1.4 2008/01/29 16:25:35 hollow Exp $
-
-inherit eutils apache-module autotools
-
-KEYWORDS="~amd64 ~ppc ~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}-r2.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-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}.conf not found."
-
-}
diff --git a/www-apache/mod_caucho/mod_caucho-3.1.5.ebuild b/www-apache/mod_caucho/mod_caucho-3.1.6.ebuild
index 94e514842858..3c6e0d577a1a 100644
--- a/www-apache/mod_caucho/mod_caucho-3.1.5.ebuild
+++ b/www-apache/mod_caucho/mod_caucho-3.1.6.ebuild
@@ -1,6 +1,6 @@
# 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.1.5.ebuild,v 1.2 2008/02/29 03:38:55 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_caucho/mod_caucho-3.1.6.ebuild,v 1.1 2008/05/10 20:18:05 nelchael Exp $
inherit eutils apache-module autotools