blob: f06674c3435341f76df6b6f9da9861595e4f9b96 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit apache-module depend.apache tmpfiles
DESCRIPTION="An Apache authentication module using Kerberos"
HOMEPAGE="http://modauthkerb.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/modauthkerb/${PN}/${P}/${P}.tar.gz
https://dev.gentoo.org/~mgorny/dist/${P}-gentoo-patchset.tar.bz2"
LICENSE="BSD openafs-krb5-a HPND"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND="virtual/krb5"
RDEPEND="${DEPEND}"
APACHE2_MOD_CONF="11_${PN}"
APACHE2_MOD_DEFINE="AUTH_KERB"
DOCFILES="INSTALL README"
need_apache2
PATCHES=(
"${WORKDIR}/${P}-gentoo-patchset"/${P}-rcopshack.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-fixes.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-s4u2proxy.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-httpd24.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-delegation.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-cachedir.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-longuser.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-handle-continue.patch
"${WORKDIR}/${P}-gentoo-patchset"/${P}-heimdal.patch
# bug #830208
"${FILESDIR}"/${P}-api-change-krb5.patch
# bug #673066
"${FILESDIR}"/${P}-krb5pwd-double-free.patch
)
# Work around Bug #616612
pkg_setup() {
_init_apache2
_init_apache2_late
}
src_configure() {
CFLAGS="" APXS="${APXS}" econf --with-krb5=/usr --without-krb4
}
src_compile() {
emake
}
src_install() {
apache-module_src_install
dotmpfiles "${FILESDIR}"/${PN}.conf
}
pkg_postinst() {
tmpfiles_process ${PN}.conf
}
|