fd82c2dbfb
git-svn-id: svn://svn.openwrt.org/openwrt/packages@28316 3c298f89-4303-0410-b956-a3cf2f4a3e73
72 lines
1.7 KiB
Makefile
72 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libpam
|
|
PKG_VERSION:=1.1.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=Linux-PAM-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://pkgs.fedoraproject.org/repo/pkgs/pam/Linux-PAM-1.1.4.tar.bz2/e9af5fb27bb22edb55d077e2888b3ebc/
|
|
PKG_MD5SUM:=e9af5fb27bb22edb55d077e2888b3ebc
|
|
PKG_INSTALL:=1
|
|
PKG_FIXUP:=libtool
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/Linux-PAM-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libpam
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=@BROKEN
|
|
TITLE:=free implementation of the following DCE-RFC from Sunsoft.
|
|
URL:=http://www.kernel.org/pub/linux/libs/pam
|
|
endef
|
|
|
|
define Package/libpam/description
|
|
Linux-PAM is a free implementation of the following DCE-RFC from Sunsoft.
|
|
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
define Build/Configure
|
|
(cd $(PKG_BUILD_DIR); autoreconf -v -f --install || exit 1)
|
|
$(call Build/Configure/Default, \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--enable-pamlocking \
|
|
--disable-prelude \
|
|
--disable-lckpwdf \
|
|
--disable-selinux \
|
|
--disable-nls \
|
|
--disable-rpath \
|
|
)
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/lib
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/lib/* $(1)/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include
|
|
endef
|
|
|
|
define Package/libpam/install
|
|
$(INSTALL_DIR) $(1)/lib
|
|
$(INSTALL_DIR) $(1)/etc
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) $(PKG_INSTALL_DIR)/lib/* $(1)/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/* $(1)/etc/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libpam))
|