Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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 ${TOPDIR}/rules.mk
  4. PKG_NAME:= libtirpc
  5. PKG_VERSION:= 0.2.3
  6. PKG_RELEASE:= 3
  7. PKG_MD5SUM:= b70e6c12a369a91e69fcc3b9feb23d61
  8. PKG_DESCR:= a transport independent RPC library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libgssglue
  11. PKG_BUILDDEP:= libgssglue
  12. PKG_URL:= http://sourceforge.net/projects/libtirpc/
  13. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=libtirpc/}
  14. PKG_OPTS:= dev
  15. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,LIBTIRPC,libtirpc,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. ifneq (${ADK_PACKAGE_NFS_UTILS_WITH_KERBEROS},y)
  19. CONFIGURE_ARGS+= --disable-gss
  20. else
  21. CONFIGURE_ARGS+= --enable-gss
  22. endif
  23. libtirpc-install:
  24. ${INSTALL_DIR} ${IDIR_LIBTIRPC}/usr/lib ${IDIR_LIBTIRPC}/etc
  25. ${CP} ${WRKINST}/usr/lib/libtirpc*.so* ${IDIR_LIBTIRPC}/usr/lib/
  26. ${CP} ./files/netconfig ${IDIR_LIBTIRPC}/etc
  27. include ${TOPDIR}/mk/pkg-bottom.mk