diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2009-09-17 10:24:22 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2009-09-17 10:24:22 +0000 |
commit | 330f94bcbcd354102efe4090ad5ea7aaea53d880 (patch) | |
tree | ce61bdcf31725216290e66b68370496f2e483cd7 /www-apache | |
parent | version bump wrt #253537 (diff) | |
download | gentoo-2-330f94bcbcd354102efe4090ad5ea7aaea53d880.tar.gz gentoo-2-330f94bcbcd354102efe4090ad5ea7aaea53d880.tar.bz2 gentoo-2-330f94bcbcd354102efe4090ad5ea7aaea53d880.zip |
version bump wrt #278018
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'www-apache')
-rw-r--r-- | www-apache/mod_auth_cookie_mysql2/ChangeLog | 10 | ||||
-rw-r--r-- | www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-1.0.ebuild | 29 |
2 files changed, 37 insertions, 2 deletions
diff --git a/www-apache/mod_auth_cookie_mysql2/ChangeLog b/www-apache/mod_auth_cookie_mysql2/ChangeLog index 61bd98235eca..8102b646af1f 100644 --- a/www-apache/mod_auth_cookie_mysql2/ChangeLog +++ b/www-apache/mod_auth_cookie_mysql2/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apache/mod_auth_cookie_mysql2 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_cookie_mysql2/ChangeLog,v 1.7 2008/08/29 13:05:30 hollow Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_cookie_mysql2/ChangeLog,v 1.8 2009/09/17 10:24:22 hollow Exp $ + +*mod_auth_cookie_mysql2-1.0 (17 Sep 2009) + + 17 Sep 2009; Benedikt Böhm <hollow@gentoo.org> + +mod_auth_cookie_mysql2-1.0.ebuild: + version bump wrt #278018 29 Aug 2008; Benedikt Böhm <hollow@gentoo.org> files/55_mod_auth_cookie_mysql2.conf, mod_auth_cookie_mysql2-0.9a.ebuild: diff --git a/www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-1.0.ebuild b/www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-1.0.ebuild new file mode 100644 index 000000000000..030e6419339f --- /dev/null +++ b/www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-1.0.ebuild @@ -0,0 +1,29 @@ +# 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_cookie_mysql2/mod_auth_cookie_mysql2-1.0.ebuild,v 1.1 2009/09/17 10:24:22 hollow Exp $ + +inherit apache-module + +DESCRIPTION="An Apache2 backend authentication module that uses cookies and MySQL." +HOMEPAGE="http://home.digithi.de/digithi/dev/mod_auth_cookie_mysql/" +SRC_URI="http://home.digithi.de/digithi/dev/mod_auth_cookie_mysql/${P/-/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="virtual/mysql" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P/-/_}" + +APXS2_ARGS="-DMODULE_NAME=mod_auth_cookie_mysql2 -DMODULE_NAME_module=auth_cookie_mysql2_module + -I/usr/include/mysql -lmysqlclient -lz -c mod_auth_cookie_sql2.c mod_auth_cookie_sql2_mysql.c" +APACHE2_MOD_FILE="${S}/.libs/mod_auth_cookie_sql2.so" +APACHE2_MOD_CONF="55_${PN}" +APACHE2_MOD_DEFINE="AUTH_COOKIE_MYSQL2" + +DOCFILES="README" + +need_apache2 |