Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. pam-install:
  21. $(INSTALL_DIR) $(IDIR_PAM)/etc/security
  22. $(CP) $(WRKINST)/etc/security/* $(IDIR_PAM)/etc/security
  23. $(INSTALL_DIR) $(IDIR_PAM)/lib/security
  24. $(CP) $(WRKINST)/lib/libpam*.so* $(IDIR_PAM)/lib
  25. $(CP) $(WRKINST)/lib/security/*.so* $(IDIR_PAM)/lib/security
  26. $(CP) ./files/pam.conf $(IDIR_PAM)/etc
  27. # /lib is not automatically installed to staging area
  28. $(CP) $(WRKINST)/lib/libpam*.so* $(STAGING_DIR)/usr/lib
  29. include ${TOPDIR}/mk/pkg-bottom.mk