diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2009-09-17 07:45:27 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2009-09-17 07:45:27 +0000 |
commit | 72ebd8d2ef9de221ed09f2c358c0eaffa0ec56d8 (patch) | |
tree | d1e3269653c6cc307dad657fda0e8d6a9fc94eb7 /www-apache/mod_auth_tkt | |
parent | remove bundled tidy library wrt #253489 (diff) | |
download | gentoo-2-72ebd8d2ef9de221ed09f2c358c0eaffa0ec56d8.tar.gz gentoo-2-72ebd8d2ef9de221ed09f2c358c0eaffa0ec56d8.tar.bz2 gentoo-2-72ebd8d2ef9de221ed09f2c358c0eaffa0ec56d8.zip |
version bump
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'www-apache/mod_auth_tkt')
-rw-r--r-- | www-apache/mod_auth_tkt/ChangeLog | 10 | ||||
-rw-r--r-- | www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild | 7 | ||||
-rw-r--r-- | www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0.ebuild | 45 |
3 files changed, 58 insertions, 4 deletions
diff --git a/www-apache/mod_auth_tkt/ChangeLog b/www-apache/mod_auth_tkt/ChangeLog index 9b6904de979d..66a0a70570f2 100644 --- a/www-apache/mod_auth_tkt/ChangeLog +++ b/www-apache/mod_auth_tkt/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apache/mod_auth_tkt -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_tkt/ChangeLog,v 1.4 2008/06/01 10:45:45 hollow Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_tkt/ChangeLog,v 1.5 2009/09/17 07:45:27 hollow Exp $ + +*mod_auth_tkt-2.1.0 (17 Sep 2009) + + 17 Sep 2009; Benedikt Böhm <hollow@gentoo.org> + mod_auth_tkt-2.0.0_rc2.ebuild, +mod_auth_tkt-2.1.0.ebuild: + version bump 01 Jun 2008; Benedikt Böhm <hollow@gentoo.org> mod_auth_tkt-2.0.0_rc2.ebuild: diff --git a/www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild b/www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild index 4d34546058c9..ed798e905f8d 100644 --- a/www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild +++ b/www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild @@ -1,6 +1,9 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 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.3 2008/06/01 10:45:45 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_tkt/mod_auth_tkt-2.0.0_rc2.ebuild,v 1.4 2009/09/17 07:45:27 hollow Exp $ + +# test suite is completely broken +RESTRICT="test" inherit apache-module versionator diff --git a/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0.ebuild b/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0.ebuild new file mode 100644 index 000000000000..477c6dada1c9 --- /dev/null +++ b/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 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.1.0.ebuild,v 1.1 2009/09/17 07:45:27 hollow Exp $ + +# test suite is completely broken +RESTRICT="test" + +inherit apache-module + +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}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="" + +APACHE2_MOD_CONF="10_${PN}" +APACHE2_MOD_DEFINE="AUTH_TKT" + +DOCFILES="README" + +need_apache2_2 + +src_compile() { + ./configure --apachever=2.2 --apxs=${APXS} || die "econf failed" + emake || die "emake failed" +} + +src_install() { + apache-module_src_install + pod2man --section=5 --release=${PV} doc/${PN}.{pod,5} + doman doc/${PN}.5 +} + +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 +} |