diff options
author | Christian Heim <phreak@gentoo.org> | 2007-08-13 12:46:27 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-08-13 12:46:27 +0000 |
commit | be678e7eb190f83e872f12dda82b412b38c8b600 (patch) | |
tree | a3953891c93b1e116645b21417207df44b817c5e /www-apache | |
parent | Added ~amd64 wrt bug #183944 (diff) | |
download | gentoo-2-be678e7eb190f83e872f12dda82b412b38c8b600.tar.gz gentoo-2-be678e7eb190f83e872f12dda82b412b38c8b600.tar.bz2 gentoo-2-be678e7eb190f83e872f12dda82b412b38c8b600.zip |
Version bump, fixing #187732.
(Portage version: 2.1.3.5)
Diffstat (limited to 'www-apache')
3 files changed, 49 insertions, 1 deletions
diff --git a/www-apache/mod_auth_cookie_mysql2/ChangeLog b/www-apache/mod_auth_cookie_mysql2/ChangeLog index 4c14de63cb7a..b642e75ca5ee 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-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_cookie_mysql2/ChangeLog,v 1.3 2007/01/15 15:23:25 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_cookie_mysql2/ChangeLog,v 1.4 2007/08/13 12:46:27 phreak Exp $ + +*mod_auth_cookie_mysql2-0.9a (13 Aug 2007) + + 13 Aug 2007; Christian Heim <phreak@gentoo.org> + +mod_auth_cookie_mysql2-0.9a.ebuild: + Version bump, fixing #187732. 15 Jan 2007; Luca Longinotti <chtekk@gentoo.org> mod_auth_cookie_mysql2-0.7.ebuild: diff --git a/www-apache/mod_auth_cookie_mysql2/files/digest-mod_auth_cookie_mysql2-0.9a b/www-apache/mod_auth_cookie_mysql2/files/digest-mod_auth_cookie_mysql2-0.9a new file mode 100644 index 000000000000..04d6a11ead03 --- /dev/null +++ b/www-apache/mod_auth_cookie_mysql2/files/digest-mod_auth_cookie_mysql2-0.9a @@ -0,0 +1,3 @@ +MD5 15c359e7157d032bbc1c1322181a59f6 mod_auth_cookie_mysql2_0.9a.tar.gz 7592 +RMD160 295708f76884be2c677be9361692a1c5a0fcbd5e mod_auth_cookie_mysql2_0.9a.tar.gz 7592 +SHA256 8a4c6f838d7e793b891096f23f9a76ffc13e3d4d2f3925676276bdc570b4840e mod_auth_cookie_mysql2_0.9a.tar.gz 7592 diff --git a/www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-0.9a.ebuild b/www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-0.9a.ebuild new file mode 100644 index 000000000000..8bc56cc704e0 --- /dev/null +++ b/www-apache/mod_auth_cookie_mysql2/mod_auth_cookie_mysql2-0.9a.ebuild @@ -0,0 +1,39 @@ +# 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_cookie_mysql2/mod_auth_cookie_mysql2-0.9a.ebuild,v 1.1 2007/08/13 12:46:27 phreak Exp $ + +inherit eutils apache-module + +KEYWORDS="~x86" + +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" +IUSE="" + +DEPEND="virtual/mysql" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P/-/_}" + +APXS2_ARGS="-I/usr/include/mysql -lmysqlclient -lz -c ${PN}.c" + +APACHE2_MOD_CONF="55_${PN}" +APACHE2_MOD_DEFINE="AUTH_COOKIE_MYSQL2" + +DOCFILES="README mod_auth_cookie_mysql.html" + +need_apache2 + +pkg_postinst() { + ewarn + ewarn "There are a number of variables that need to be configured before" + ewarn "MOD_AUTH_COOKIE_MYSQL2 can work. After this package has finished" + ewarn "building, please go and modify the configuration file located at" + ewarn "${APACHE2_MODULES_CONFDIR}/$(basename ${APACHE2_MOD_CONF}).conf" + ewarn + ebeep 5 + apache-module_pkg_postinst +} |