blob: 697992e58b7021a673532ee5ec5f1ddce2afe3e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_auth_mysql/mod_auth_mysql-3.0.0-r2.ebuild,v 1.7 2010/03/24 20:35:36 robbat2 Exp $
EAPI="2"
inherit apache-module eutils
DESCRIPTION="Basic authentication for Apache using a MySQL database."
HOMEPAGE="http://modauthmysql.sourceforge.net/"
SRC_URI="mirror://sourceforge/modauthmysql/${P}.tar.gz"
LICENSE="Apache-1.1"
KEYWORDS="amd64 x86"
SLOT="0"
IUSE=""
DEPEND="virtual/mysql
sys-libs/zlib"
RDEPEND="${DEPEND}
!www-apache/mod-auth-mysql"
APXS2_ARGS="-c -I/usr/include/mysql -lmysqlclient_r -lm -lz ${PN}.c"
APACHE2_MOD_CONF="12_${PN}"
APACHE2_MOD_DEFINE="AUTH_MYSQL"
DOCFILES="README CONFIGURE"
need_apache2_2
src_prepare() {
epatch "${FILESDIR}/${P}-apache-2.2.patch"
epatch "${FILESDIR}/${P}-htpasswd2-auth-style.patch"
}
|