diff options
Diffstat (limited to 'net-www/mod_auth_mysql/mod_auth_mysql-20030510.ebuild')
-rw-r--r-- | net-www/mod_auth_mysql/mod_auth_mysql-20030510.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/net-www/mod_auth_mysql/mod_auth_mysql-20030510.ebuild b/net-www/mod_auth_mysql/mod_auth_mysql-20030510.ebuild deleted file mode 100644 index cd2f28ac6921..000000000000 --- a/net-www/mod_auth_mysql/mod_auth_mysql-20030510.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# 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.ebuild,v 1.10 2005/02/07 05:34:04 hollow Exp $ - -inherit eutils - -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-2*" -RDEPEND="" -LICENSE="Apache-1.1" -KEYWORDS="x86" -IUSE="apache2" -SLOT="0" - -if use apache2; then - APXS="apxs2 -D APACHE2" -else - APXS="apxs -D APACHE1" -fi - -src_compile() { - epatch ${FILESDIR}/mod_auth_mysql.patch || die - $APXS -c ${PN}.c -I/usr/include/mysql -lmysqlclient -lm -lz || die -} - -src_install() { - exeinto /usr/lib/apache2-extramodules - doexe .libs/${PN}.so - insinto /etc/apache2/conf/modules.d - doins ${FILESDIR}/12_mod_auth_mysql.conf - cat mod_auth_mysql.c | head -n81 \ - | cut -c 4- > mod_auth_mysql.txt - dodoc ${FILESDIR}/12_mod_auth_mysql.conf \ - README -} - -pkg_postinst() { - einfo "Please add '-D AUTH_MYSQL' to your /etc/conf.d/apache2 APACHE2_OPTS setting" -} |