diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-12 18:48:17 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-04-12 18:48:40 +0200 |
commit | 59fa2dcdee8e277429bca809e7334c7ac53fc1a3 (patch) | |
tree | 8fed9a4a262298baf4b5044a8d36abc9f49e6436 /package/heimdal/Makefile | |
parent | cb6b9d5287c70d0d4e3142a427f9d80896537825 (diff) |
update to samba4, simplify package, support subpackages later
Diffstat (limited to 'package/heimdal/Makefile')
-rw-r--r-- | package/heimdal/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/package/heimdal/Makefile b/package/heimdal/Makefile new file mode 100644 index 000000000..dcf648db2 --- /dev/null +++ b/package/heimdal/Makefile @@ -0,0 +1,38 @@ +# 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 |