Makefile 887 B

12345678910111213141516171819202122232425262728293031
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= libtirpc
  7. PKG_VERSION:= 0.1.11
  8. PKG_RELEASE:= 2
  9. PKG_MD5SUM:= c656b7bf47e8bddbdefcd0b6a6f77b71
  10. MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=libtirpc/}
  11. DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,LIBTIRPC,libtirpc,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
  14. CONFIGURE_STYLE:= autotool gnu
  15. ifneq (${ADK_COMPILE_NFS_UTILS_WITH_KERBEROS},y)
  16. CONFIGURE_ARGS+= --disable-gss
  17. endif
  18. BUILD_STYLE:= auto
  19. INSTALL_STYLE:= auto
  20. post-install:
  21. ${INSTALL_DIR} ${IDIR_LIBTIRPC}/usr/lib ${IDIR_LIBTIRPC}/etc
  22. ${CP} ${WRKINST}/usr/lib/libtirpc*.so* ${IDIR_LIBTIRPC}/usr/lib/
  23. ${CP} ./files/netconfig ${IDIR_LIBTIRPC}/etc
  24. include ${TOPDIR}/mk/pkg-bottom.mk