Makefile 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.8
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 5107bbf54042400b6200e8367cc7feef
  8. PKG_DESCR:= pluggable authentication modules
  9. PKG_BUILDDEP:= autotool flex
  10. PKG_SECTION:= misc
  11. PKG_URL:= http://www.linux-pam.org/
  12. PKG_SITES:= http://www.linux-pam.org/library/
  13. PKG_OPTS:= dev
  14. PKG_BB:= 1
  15. DISTFILES:= Linux-PAM-$(PKG_VERSION).tar.gz
  16. WRKDIST= ${WRKDIR}/Linux-PAM-${PKG_VERSION}
  17. include $(TOPDIR)/mk/package.mk
  18. $(eval $(call PKG_template,PAM,pam,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  19. AUTOTOOL_STYLE:= autoreconf
  20. ifeq ($(ADK_TARGET_USE_SSP),y)
  21. TARGET_LDFLAGS+= -lssp
  22. endif
  23. CONFIGURE_ARGS+= --disable-nis \
  24. --disable-regenerate-docu \
  25. --enable-db=no
  26. post-install:
  27. # /lib is not automatically installed to staging area
  28. $(CP) $(WRKINST)/lib/libpam*.so* $(STAGING_TARGET_DIR)/usr/lib
  29. pam-install:
  30. $(INSTALL_DIR) $(IDIR_PAM)/etc/security
  31. $(CP) $(WRKINST)/etc/security/* $(IDIR_PAM)/etc/security
  32. $(INSTALL_DIR) $(IDIR_PAM)/lib/security
  33. $(CP) $(WRKINST)/lib/libpam*.so* $(IDIR_PAM)/lib
  34. $(CP) $(WRKINST)/lib/security/*.so* $(IDIR_PAM)/lib/security
  35. $(CP) ./files/pam.conf $(IDIR_PAM)/etc
  36. include ${TOPDIR}/mk/pkg-bottom.mk