blob: 55562a08e9e8db8140e6711b20cc2c9f3c3c404a (
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
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= heimdal
PKG_VERSION:= 1.5.3
PKG_RELEASE:= 3
PKG_HASH:= aac27bedb33c341b6aed202af07ccc816146a893148721f8123abbbf93bbfea5
PKG_DESCR:= kerberos server
PKG_SECTION:= app/crypto
PKG_URL:= http://www.h5l.org/
PKG_SITES:= http://www.h5l.org/dist/src/
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
PKG_CFLINE_HEIMDAL:= depends on ADK_HOST_ONLY
include $(ADK_TOPDIR)/mk/host.mk
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call HOST_template,HEIMDAL,heimdal,$(PKG_VERSION)-${PKG_RELEASE}))
HOST_CONFIGURE_ARGS+= --disable-pk-init \
--without-openldap \
--without-x \
--disable-kcm \
--disable-kx509 \
--disable-ndbm-db \
--without-berkeley-db \
--disable-sqlite-cache \
--disable-heimdal-documentation \
--disable-otp
hostpost-install:
$(CP) $(STAGING_HOST_DIR)/usr/libexec/heimdal/asn1_compile \
$(STAGING_HOST_DIR)/usr/bin
include ${ADK_TOPDIR}/mk/host-bottom.mk
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|