Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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:= pam
  5. PKG_VERSION:= 1.1.4
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= ff8f3c4382b78ac211e11bcd56ab17bf
  8. PKG_DESCR:= Pluggable Authentication Modules
  9. PKG_BUILDDEP:= flex
  10. PKG_SECTION:= misc
  11. PKG_SITES:= http://openadk.org/distfiles/
  12. PKG_OPTS:= dev
  13. DISTFILES:= Linux-PAM-$(PKG_VERSION).tar.gz
  14. WRKDIST= ${WRKDIR}/Linux-PAM-${PKG_VERSION}
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,PAM,pam,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  17. XAKE_FLAGS+= GCC_HONOUR_COPTS=s
  18. CONFIGURE_ARGS+= --disable-nis \
  19. --enable-db=no
  20. post-install:
  21. # /lib is not automatically installed to staging area
  22. $(CP) $(WRKINST)/lib/libpam*.so* $(STAGING_TARGET_DIR)/usr/lib
  23. pam-install:
  24. $(INSTALL_DIR) $(IDIR_PAM)/etc/security
  25. $(CP) $(WRKINST)/etc/security/* $(IDIR_PAM)/etc/security
  26. $(INSTALL_DIR) $(IDIR_PAM)/lib/security
  27. $(CP) $(WRKINST)/lib/libpam*.so* $(IDIR_PAM)/lib
  28. $(CP) $(WRKINST)/lib/security/*.so* $(IDIR_PAM)/lib/security
  29. $(CP) ./files/pam.conf $(IDIR_PAM)/etc
  30. include ${TOPDIR}/mk/pkg-bottom.mk