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
commit0fd54ca54fe18da4ed2f45eb015ff2a14f90d476 (patch)
tree71d303f31e5e689b4eb0f6d1bc3ef57095e678ec /www-apache/mod_caucho/mod_caucho-3.1.3.ebuild
parentVersion bump, removed old versions. (diff)
downloadhistorical-0fd54ca54fe18da4ed2f45eb015ff2a14f90d476.tar.gz
historical-0fd54ca54fe18da4ed2f45eb015ff2a14f90d476.tar.bz2
historical-0fd54ca54fe18da4ed2f45eb015ff2a14f90d476.zip
Version bump, removed old versions.
Package-Manager: portage-2.1.5_rc10
Diffstat (limited to 'www-apache/mod_caucho/mod_caucho-3.1.3.ebuild')
-rw-r--r--www-apache/mod_caucho/mod_caucho-3.1.3.ebuild62
1 files changed, 0 insertions, 62 deletions
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."
-
-}