c55dec9048
if the module is installed but not activated. From Mikolaj Kucharski with help from halex@, looks good to halex.
40 lines
880 B
Makefile
40 lines
880 B
Makefile
# $OpenBSD: Makefile,v 1.17 2011/09/17 10:29:43 sthen Exp $
|
|
|
|
COMMENT= Apache Kerberos authentication module
|
|
|
|
REVISION= 8
|
|
DISTNAME= mod_auth_kerb-5.3
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://modauthkerb.sourceforge.net/
|
|
|
|
MODULES+= apache-module
|
|
MAINTAINER= Jason Meltzer <jmeltzer@openbsd.org>
|
|
|
|
# combination of 2- and 3-clause BSD, MIT, and export crypto warnings
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= ssl gssapi krb5 crypto
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=modauthkerb/}
|
|
|
|
NO_REGRESS= Yes
|
|
USE_GMAKE= Yes
|
|
|
|
MODAPACHE_NAME= auth_kerb
|
|
MODAPACHE_LOCATION= ${WRKBUILD}/src
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= KRB5_CPPFLAGS="-I/usr/include/kerberosV" \
|
|
KRB5_LDFLAGS="-lkrb5 -lgssapi -lssl -lcrypto"
|
|
|
|
post-build:
|
|
@${MODAPACHE_CREATE_ENABLE_SCRIPT}
|
|
|
|
do-install:
|
|
${MODAPACHE_INSTALL}
|
|
|
|
.include <bsd.port.mk>
|