summaryrefslogtreecommitdiff
path: root/package/ruby-ldap/Makefile
blob: 304d1c83396eac6d09541fa783b3ebe3a84ecbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include $(TOPDIR)/rules.mk

PKG_NAME:=		ruby-ldap
PKG_VERSION:=		0.9.8
PKG_RELEASE:=		1
PKG_MD5SUM:=		83240451aa43de447d48035dc2d10dee
PKG_DESCR:=		ruby LDAP extension
PKG_SECTION:=		lang
PKG_DEPENDS:=		ruby libopenldap
PKG_BUILDDEP:=		ruby openldap
PKG_URL:=		http://ruby-ldap.sourceforge.net/
PKG_SITES:=		${MASTER_SITE_SOURCEFORGE:=ruby-ldap/0.9.8/}

PKG_CFLINE_RUBY_LDAP:=	depends on ADK_BROKEN

DISTFILES:=             ${PKG_NAME}-${PKG_VERSION}.tar.bz2

include $(TOPDIR)/mk/package.mk

$(eval $(call PKG_template,RUBY_LDAP,ruby-ldap,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))

CONFIG_STYLE:=		manual
FAKE_FLAGS+=		DESTDIR="/"

do-configure:
	(cd $(WRKBUILD) && $(STAGING_HOST_DIR)/usr/bin/ruby -I$(STAGING_TARGET_DIR)/usr/lib/ruby/2.0.0/$(CPU_ARCH)-linux/ extconf.rb \
		--with-openldap2 \
		--without-libnsl \
		--with-ldap-dir=$(STAGING_TARGET_DIR)/usr \
		--with-ldap-lib=$(STAGING_TARGET_DIR)/usr/lib \
		--with-ldap-include=$(STAGING_TARGET_DIR)/usr/include)

ruby-ldap-install:
	$(INSTALL_DIR) $(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/2.0.0/$(CPU_ARCH)-linux
	$(INSTALL_DIR) $(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/2.0.0/ldap
	$(CP) $(STAGING_TARGET_DIR)/usr/lib/ruby/site_ruby/2.0.0/$(CPU_ARCH)-linux/ldap.so \
		$(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/2.0.0/$(CPU_ARCH)-linux
	$(CP) $(STAGING_TARGET_DIR)//usr/lib/ruby/site_ruby/2.0.0/ldap/*.rb \
		$(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/2.0.0/ldap

include ${TOPDIR}/mk/pkg-bottom.mk