You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apache/mod_spin/mod_spin-1.1.9.ebuild

39 lines
948 B

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_spin/mod_spin-1.1.9.ebuild,v 1.1 2009/09/18 15:33:57 hollow Exp $
inherit apache-module
DESCRIPTION="A simple template language, with persistent session data tracking and SQL connection pooling"
HOMEPAGE="http://rexursive.com/software/modspin"
SRC_URI="ftp://ftp.rexursive.com/pub/mod-spin/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
APACHE2_MOD_CONF="80_${PN}"
APACHE2_MOD_DEFINE="SPIN"
DOCFILES="AUTHORS ChangeLog INSTALL NEWS README"
DEPEND=">=sys-libs/db-4.2
dev-libs/libxml2
www-apache/libapreq2"
RDEPEND="${DEPEND}"
need_apache2
src_compile() {
econf --with-apxs=${APXS} || die "econf failed"
emake || die "emake failed"
}
src_install() {
dolib src/.libs/librxv_spin.so*
apache-module_src_install
doman docs/man/man3/*.3
dohtml docs/html/*
}