| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # 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:= 1
- 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 \
- --disable-kcm \
- --disable-kx509 \
- --disable-ndbm-db \
- --without-berkeley-db \
- --disable-sqlite-cache \
- --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
|