diff options
author | Chuck Short <zul@gentoo.org> | 2004-04-22 18:08:40 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2004-04-22 18:08:40 +0000 |
commit | 0bda0a6dfd2eb68049bb135330ed1e349bf079f7 (patch) | |
tree | fc12ae267f5843725d7cded1a42e38bea0be55b9 /net-www | |
parent | Correcting loudmouth dependency. Thanks to Lukasz Strzygowski. Fixes Bug #4... (diff) | |
download | historical-0bda0a6dfd2eb68049bb135330ed1e349bf079f7.tar.gz historical-0bda0a6dfd2eb68049bb135330ed1e349bf079f7.tar.bz2 historical-0bda0a6dfd2eb68049bb135330ed1e349bf079f7.zip |
Installation of apache1 and apache2 modules. Closes #40265.
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/mod_auth_mysql/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/mod_auth_mysql/Manifest | 10 | ||||
-rw-r--r-- | net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild | 8 |
3 files changed, 16 insertions, 9 deletions
diff --git a/net-www/mod_auth_mysql/ChangeLog b/net-www/mod_auth_mysql/ChangeLog index 57a5cd75ce60..8b5f42e19279 100644 --- a/net-www/mod_auth_mysql/ChangeLog +++ b/net-www/mod_auth_mysql/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-www/mod_auth_mysql -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_mysql/ChangeLog,v 1.6 2004/01/05 23:28:33 robbat2 Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_mysql/ChangeLog,v 1.7 2004/04/22 18:08:40 zul Exp $ + + 22 Apr 2004; Chuck Short <zul@gentoo.org> mod_auth_mysql-20030510-r2.ebuild: + Installation of apache1 and apache2 modules. Closes #40265. 05 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> mod_auth_mysql-1.11.ebuild, mod_auth_mysql-20030510-r1.ebuild, diff --git a/net-www/mod_auth_mysql/Manifest b/net-www/mod_auth_mysql/Manifest index e162c8f49d35..9d1ec52ef26d 100644 --- a/net-www/mod_auth_mysql/Manifest +++ b/net-www/mod_auth_mysql/Manifest @@ -1,10 +1,10 @@ +MD5 6b16831cd3a891cc131fd391cb59a50d mod_auth_mysql-20030510.ebuild 1096 +MD5 6d8c13e5510e36b7d49ee29bfed219a2 mod_auth_mysql-20030510-r1.ebuild 1351 +MD5 27adb4bac37d81f3a2802cde37997307 mod_auth_mysql-1.11.ebuild 943 +MD5 266ff18394e9f9a54bf41be9c4bab99d mod_auth_mysql-20030510-r2.ebuild 1432 +MD5 00209ca00e76b1bb1d8704fd18ef02e4 ChangeLog 1233 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 MD5 a9f56734948e06d5ed5f4b7eea9f6cd5 files/digest-mod_auth_mysql-20030510-r2 61 MD5 a9f56734948e06d5ed5f4b7eea9f6cd5 files/digest-mod_auth_mysql-20030510 61 -MD5 6b16831cd3a891cc131fd391cb59a50d mod_auth_mysql-20030510.ebuild 1096 -MD5 6d8c13e5510e36b7d49ee29bfed219a2 mod_auth_mysql-20030510-r1.ebuild 1351 -MD5 27adb4bac37d81f3a2802cde37997307 mod_auth_mysql-1.11.ebuild 943 -MD5 08338444837fdee45ae0db8edfa1bee2 mod_auth_mysql-20030510-r2.ebuild 1385 -MD5 27a71d98ac9bb4c90d3c871af53fe54b ChangeLog 1095 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 index a7cd135b11bb..f5884ad85443 100644 --- a/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild +++ b/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 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.2 2004/01/05 23:28:33 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_mysql/mod_auth_mysql-20030510-r2.ebuild,v 1.3 2004/04/22 18:08:40 zul Exp $ DESCRIPTION="Basic authentication for Apache using a MySQL database" HOMEPAGE="http://modauthmysql.sourceforge.net/" @@ -31,7 +31,11 @@ src_compile() { src_install() { exeinto ${DESTDIR} - doexe .libs/${PN}.so + if use apache2 ; then + doexe .libs/${PN}.so + else + doexe ${PN}.so + fi insinto ${CONFDIR} doins ${FILESDIR}/12_mod_auth_mysql.conf cat mod_auth_mysql.c | head -n 81 \ |