1. Summary
  2. Files
  3. Support
  4. Report Spam
  5. Create account
  6. Log in

root/csw/mgar/pkg/mod_auth_kerb/trunk/Makefile

Revision 16916, 1.9 KB (checked in by dmichelsen, 4 months ago)

WHOLE TREE: Explicitly set GARTYPE to current default 'v2'

  • Property svn:keywords set to Id
Line 
1NAME = mod_auth_kerb
2VERSION = 5.4
3CATEGORIES = server
4GARTYPE = v2
5
6DESCRIPTION = Apache Kerberos authentication module
7define BLURB
8  This is the Apache RADIUS authentication module. It allows any Apache web-server
9  to become a RADIUS client for authentication and accounting requests. You will,
10  however, need to supply your own RADIUS server to perform the actual authentication.
11endef
12
13SF_PROJ = modauthkerb
14MASTER_SITES = $(SF_MIRROR)
15DISTFILES  = $(NAME)-$(VERSION).tar.gz
16
17# Apply patch until this is fixed:
18#   https://sourceforge.net/tracker/?func=detail&atid=464524&aid=3172644&group_id=51775
19PATCHFILES += 0001-Fix-install-destination.patch
20
21VENDOR_URL = http://modauthkerb.sourceforge.net/
22LICENSE = LICENSE
23
24PACKAGES = CSWap2modauthkerb
25CATALOGNAME = ap2_mod_auth_kerb
26CHECKPKG_OVERRIDES_CSWap2modauthkerb += catalogname-does-not-match-pkgname|pkgname=CSWap2modauthkerb|catalogname=ap2_mod_auth_kerb|expected-catalogname=ap2modauthkerb
27RUNTIME_DEP_PKGS_CSWap2modauthkerb += CSWlibcom-err3
28RUNTIME_DEP_PKGS_CSWap2modauthkerb += CSWlibkrb5-3
29RUNTIME_DEP_PKGS_CSWap2modauthkerb += CSWlibk5crypto3
30RUNTIME_DEP_PKGS_CSWap2modauthkerb += CSWlibgssapi-krb5-2
31RUNTIME_DEP_PKGS_CSWap2modauthkerb += CSWapache2
32CHECKPKG_OVERRIDES_CSWap2modauthkerb += surplus-dependency|CSWapache2
33
34# Apache paths
35AP2_ROOT      = $(prefix)/apache2
36AP2_LIBEXEC   = $(DESTDIR)$(AP2_ROOT)/libexec
37
38CONFIGURE_ARGS += $(DIRPATHS)
39CONFIGURE_ARGS += --without-krb4
40CONFIGURE_ARGS += --with-krb5=$(prefix)
41CONFIGURE_ARGS += --with-apache=$(prefix)/apache2
42
43# The package does not provide a check
44TEST_SCRIPTS =
45
46INSTALL_OVERRIDE_VARS = AP2_LIBEXEC
47INSTALL_OVERRIDE_VAR_AP2_LIBEXEC = $(AP2_LIBEXEC)
48
49AP2_MODS = 1
50AP2_MODFILES += \*auth_kerb\*so
51
52include gar/category.mk
53
54pre-install-modulated:
55        ginstall -d $(AP2_LIBEXEC)
56        ginstall -d $(DESTDIR)$(docdir)/$(CATALOGNAME)
57        ginstall $(WORKSRC)/README $(WORKSRC)/INSTALL $(DESTDIR)$(docdir)/$(CATALOGNAME)
58        @$(MAKECOOKIE)
Note: See TracBrowser for help on using the browser.