1e8e215cea08b499d1e3762ac6e86ba973a75347
[openwrt/svn-archive/archive.git] / libs / openldap / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=openldap
12 PKG_VERSION:=2.2.29
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/ \
17 ftp://sunsite.cnlab-switch.ch/mirror/OpenLDAP/openldap-release/ \
18 ftp://ftp.nl.uu.net/pub/unix/db/openldap/openldap-release/ \
19 ftp://ftp.plig.org/pub/OpenLDAP/openldap-release/
20 PKG_MD5SUM:=6c4c72a1336aa45b463e738034c078d6
21 PKG_CAT:=zcat
22
23 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
24 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/openldap/Default
29 TITLE:=LDAP implementation
30 DESCRIPTION:=\
31 OpenLDAP Software is an open source implementation of the \\\
32 Lightweight Directory Access Protocol (LDAP).
33 URL:=http://www.openldap.org/
34 endef
35
36 define Package/libopenldap
37 $(call Package/openldap/Default)
38 SECTION:=libs
39 CATEGORY:=Libraries
40 DEPENDS:=+libopenssl +libsasl2
41 TITLE+= (libraries)
42 DESCRIPTION+=\\\
43 \\\
44 This package contains the shared LDAP client libraries, needed by other programs.
45 endef
46
47 define Package/libopenldap/conffiles
48 /etc/openldap/ldap.conf
49 endef
50
51 define Package/openldap-utils
52 $(call Package/openldap/Default)
53 SECTION:=utils
54 CATEGORY:=Utilities
55 DEPENDS:=+libopenldap
56 TITLE+= (utilities)
57 DESCRIPTION+=\\\
58 \\\
59 This package contains client programs required to access LDAP servers.
60 endef
61
62 CONFIGURE_ARGS += \
63 --enable-shared \
64 --enable-static \
65 --disable-debug \
66 --enable-dynamic \
67 --enable-syslog \
68 --disable-local \
69 --disable-slapd \
70 --disable-slurpd \
71 --with-cyrus-sasl \
72 --without-fetch \
73 --with-threads \
74 --with-tls \
75 --with-yielding_select="yes" \
76 --without-cyrus-sasl \
77 --without-threads \
78 --without-tls
79
80
81 define Build/Compile
82 $(MAKE) -C $(PKG_BUILD_DIR) \
83 DESTDIR="$(PKG_INSTALL_DIR)" \
84 HOSTCC="$(HOSTCC)" \
85 depend all install
86 endef
87
88 define Build/InstallDev
89 mkdir -p $(STAGING_DIR)/usr/include
90 $(CP) $(PKG_INSTALL_DIR)/usr/include/{lber,ldap}*.h $(STAGING_DIR)/usr/include/
91 mkdir -p $(STAGING_DIR)/usr/lib/
92 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{lber,ldap}*.{a,so*} $(STAGING_DIR)/usr/lib/
93 endef
94
95 define Build/UninstallDev
96 rm -rf $(STAGING_DIR)/usr/include/{lber,ldap}*.h \
97 $(STAGING_DIR)/usr/lib/lib{lber,ldap}*.{a,so*}
98 endef
99
100 define Package/libopenldap/install
101 $(INSTALL_DIR) $(1)/etc/openldap
102 $(CP) $(PKG_INSTALL_DIR)/etc/openldap/ldap.conf $(1)/etc/openldap/
103 $(INSTALL_DIR) $(1)/usr/lib
104 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{lber,ldap}*.so.* $(1)/usr/lib/
105 $(INSTALL_DIR) $(1)/usr/share/openldap
106 $(CP) $(PKG_INSTALL_DIR)/usr/share/openldap/* $(1)/usr/share/openldap/
107 endef
108
109 define Package/openldap-utils/install
110 $(INSTALL_DIR) $(1)/usr/bin
111 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ldap* $(1)/usr/bin/
112 endef
113
114 $(eval $(call BuildPackage,libopenldap))
115 $(eval $(call BuildPackage,openldap-utils))