# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild,v 1.1 2007/12/30 17:28:16 hollow Exp $ inherit apache-module versionator MY_PV=$(delete_version_separator '_') DESCRIPTION="Apache module for cookie based authentication" HOMEPAGE="http://www.openfusion.com.au/labs/mod_auth_tkt/" SRC_URI="http://www.openfusion.com.au/labs/dist/${PN}-${MY_PV}.tar.gz" KEYWORDS="~amd64 ~x86" LICENSE="as-is" SLOT="0" IUSE="" DEPEND="" RDEPEND="" APACHE2_MOD_CONF="10_${PN}" APACHE2_MOD_DEFINE="AUTH_TKT" DOCFILES="README" S="${WORKDIR}"/${PN}-${MY_PV} need_apache2_2 src_compile() { ./configure --apachever=2.2 --apxs=${APXS2} || die "econf failed" emake || die "emake failed" } pkg_postinst() { apache-module_pkg_postinst einfo "See 'man mod_auth_tkt' for details on the individual directives." einfo "Remember to change shared secret 'TKTAuthSecret' before using!" einfo }