summaryrefslogtreecommitdiff
blob: 9fa20caebbe59ac0b1a7884d1fb583cffddb1d9b (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
35
36
37
# 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_kerb/mod_auth_kerb-4.11.ebuild,v 1.3 2003/06/06 23:58:22 rphillips Exp $

inherit eutils

DESCRIPTION="An Apache2 authentication DSO using Kerberos"
HOMEPAGE="http://modauthkerb.sourceforge.net/"

S=${WORKDIR}/src
SRC_URI="mirror://sourceforge/modauthkerb/${P}.tar.gz"
DEPEND="app-crypt/mit-krb5 =net-www/apache-2*"
LICENSE="Apache-1.1"
KEYWORDS="~x86"
IUSE=""
SLOT="0"

src_unpack() {
	unpack ${A} || die; cd ${S} || die;
	epatch ${FILESDIR}/mod_auth_kerb_register.patch
}

src_compile() {
	cd modules/kerberos
	apxs2 -DAPXS2 -DKRB5 -DKRB5_SAVE_CREDENTIALS \
		-DKRB_DEF_REALM=\\\"EOS.NCSU.EDU\\\" \
		-ldl -lkrb5 -lcom_err -lk5crypto -c ${PN}.c || die
}

src_install() {
	exeinto /usr/lib/apache2-extramodules
	doexe modules/kerberos/.libs/${PN}.so
	insinto /etc/apache2/conf/modules.d
	doins ${FILESDIR}/11_mod_auth_kerb.conf
	dodoc ${FILESDIR}/11_mod_auth_kerb.conf
	#thats all the docs there is right now!
}