diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-10-02 02:14:59 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-10-02 02:14:59 +0000 |
commit | 281d488f449469a92a8c31ef9efb26359fa803bc (patch) | |
tree | 565ea44ea80f214f07c739e6bd7413e6028d7019 | |
parent | fix bug #11254 (diff) | |
download | historical-281d488f449469a92a8c31ef9efb26359fa803bc.tar.gz historical-281d488f449469a92a8c31ef9efb26359fa803bc.tar.bz2 historical-281d488f449469a92a8c31ef9efb26359fa803bc.zip |
fix bug #11254
-rw-r--r-- | net-www/mod_auth_mysql/Manifest | 4 | ||||
-rw-r--r-- | net-www/mod_auth_mysql/files/digest-mod_auth_mysql-20030510-r2 | 1 | ||||
-rw-r--r-- | net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild | 49 |
3 files changed, 52 insertions, 2 deletions
diff --git a/net-www/mod_auth_mysql/Manifest b/net-www/mod_auth_mysql/Manifest index 09f560836971..27c85c640b09 100644 --- a/net-www/mod_auth_mysql/Manifest +++ b/net-www/mod_auth_mysql/Manifest @@ -1,8 +1,8 @@ MD5 7558bd0cff76d9d99775340cfe8166ae mod_auth_mysql-20030510.ebuild 1091 MD5 f3f510bb20c8bbb803ae214e448f0c22 mod_auth_mysql-20030510-r1.ebuild 1349 MD5 09fb204c261078f0b369ae499b255582 mod_auth_mysql-1.11.ebuild 934 -MD5 757dfdacc7dd46d36df1a6e26dd7da1f mod_auth_mysql-20030510-r2.ebuild 1382 -MD5 118bbb8a87e0f2bbb7020be2b56ee245 ChangeLog 864 +MD5 6a5c868230d7142af31bbbbcc42f8987 mod_auth_mysql-20030510-r2.ebuild 1382 +MD5 12c445a8a1a12421367b7e42c4ddf7c6 ChangeLog 864 MD5 01cc878ba30a6e2ad327de787e21a999 files/12_mod_auth_mysql.conf 3571 MD5 3513e598048c0060eb3758c19c4e4c60 files/digest-mod_auth_mysql-1.11 77 MD5 a9f56734948e06d5ed5f4b7eea9f6cd5 files/digest-mod_auth_mysql-20030510-r1 61 diff --git a/net-www/mod_auth_mysql/files/digest-mod_auth_mysql-20030510-r2 b/net-www/mod_auth_mysql/files/digest-mod_auth_mysql-20030510-r2 new file mode 100644 index 000000000000..7acd1a88ef08 --- /dev/null +++ b/net-www/mod_auth_mysql/files/digest-mod_auth_mysql-20030510-r2 @@ -0,0 +1 @@ +MD5 b6646a117703b3704091e8f19f02e43e mod_auth_mysql.tgz 9953 diff --git a/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild b/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild new file mode 100644 index 000000000000..6b955a41d756 --- /dev/null +++ b/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild,v 1.1 2003/10/02 02:14:57 robbat2 Exp $ + +DESCRIPTION="Basic authentication for Apache using a MySQL database" +HOMEPAGE="http://modauthmysql.sourceforge.net/" + +S=${WORKDIR}/${PN} +SRC_URI="mirror://sourceforge/modauthmysql/${PN}.tgz" +DEPEND="dev-db/mysql + net-www/apache + apache2? ( >=net-www/apache-2* )" +LICENSE="Apache-1.1" +KEYWORDS="~x86" +IUSE="apache2" +SLOT="0" + +if use apache2 ; then + APXS="apxs2 -D APACHE2" + DESTDIR=/usr/lib/apache2-extramodules + CONFDIR=/etc/apache2/conf/modules.d +else + APXS="apxs -D APACHE1" + DESTDIR=/usr/lib/apache-extramodules + CONFDIR=/etc/apache/conf/addon-modules +fi + +src_compile() { + $APXS -c ${PN}.c -I/usr/include/mysql -lmysqlclient -lm -lz || die +} + +src_install() { + exeinto ${DESTDIR} + doexe .libs/${PN}.so + insinto ${CONFDIR} + doins ${FILESDIR}/12_mod_auth_mysql.conf + cat mod_auth_mysql.c | head -81 \ + | cut -c 4- > mod_auth_mysql.txt + dodoc ${FILESDIR}/12_mod_auth_mysql.conf \ + README mod_auth_mysql.txt +} + +pkg_postinst() { + if use apache2; then + einfo "Please add '-D AUTH_MYSQL' to your /etc/conf.d/apache2 APACHE2_OPTS setting" + else + einfo "Please add '-D AUTH_MYSQL' to your /etc/conf.d/apache APACHE_OPTS setting" + fi +} |