Makefile 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= heimdal
  5. PKG_VERSION:= 1.5.3
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= aac27bedb33c341b6aed202af07ccc816146a893148721f8123abbbf93bbfea5
  8. PKG_DESCR:= kerberos server
  9. PKG_SECTION:= app/crypto
  10. PKG_URL:= http://www.h5l.org/
  11. PKG_SITES:= http://www.h5l.org/dist/src/
  12. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  13. PKG_CFLINE_HEIMDAL:= depends on ADK_HOST_ONLY
  14. include $(ADK_TOPDIR)/mk/host.mk
  15. include $(ADK_TOPDIR)/mk/package.mk
  16. $(eval $(call HOST_template,HEIMDAL,heimdal,$(PKG_VERSION)-${PKG_RELEASE}))
  17. HOST_CONFIGURE_ARGS+= --disable-pk-init \
  18. --without-openldap \
  19. --disable-kcm \
  20. --disable-kx509 \
  21. --disable-ndbm-db \
  22. --without-berkeley-db \
  23. --disable-sqlite-cache \
  24. --disable-otp
  25. hostpost-install:
  26. $(CP) $(STAGING_HOST_DIR)/usr/libexec/heimdal/asn1_compile \
  27. $(STAGING_HOST_DIR)/usr/bin
  28. include ${ADK_TOPDIR}/mk/host-bottom.mk
  29. include ${ADK_TOPDIR}/mk/pkg-bottom.mk