summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah BrĂ¼chert <jbb@kaidan.im>2024-02-13 13:47:04 +0100
committerJonah BrĂ¼chert <jbb@kaidan.im>2024-02-13 13:47:04 +0100
commitc8ee70ebc795c14dccdb154cc87e54caccefb564 (patch)
tree61c1e221152880c9bc34d441c88bfcb59d09135f
parent90009c3acb7a0dfa970ca00aea908d8d405afdd3 (diff)
downloadldap-plugin-stable.tar.gz
ldap-plugin-stable.tar.bz2
ldap-plugin-stable.zip
Clean up buildstable
-rw-r--r--Makefile3
-rw-r--r--debian/compat2
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules11
4 files changed, 2 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 1dccd71..686f6b3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,4 @@
-OPENLDAP_SOURCE := ../source/openldap-2.4.40+dfsg
-
TARGET = service_passwords
-INCLUDE_FLAGS = -I$(OPENLDAP_SOURCE)/include
CFLAGS = $(INCLUDE_FLAGS) -D_REENTRANT -fPIC -Wall -Wextra
LDFLAGS = -G
diff --git a/debian/compat b/debian/compat
index ec63514..48082f7 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-9
+12
diff --git a/debian/control b/debian/control
index 7bb5670..900dc5d 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: extra
Maintainer: Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
Uploaders: Alexander Sulfrian <alex@spline.inf.fu-berlin.de>
Standards-Version: 3.8.3
-Build-Depends: debhelper (>= 7.2.11), libldap2-dev, slapd
+Build-Depends: debhelper (>= 7.2.11), libldap2-dev, slapi-dev
Homepage: http://git.spline.inf.fu-berlin.de/accounts/ldap-plugin/
Vcs-Browser: http://git.spline.inf.fu-berlin.de/accounts/ldap-plugin/
Vcs-Git: git://git.spline.inf.fu-berlin.de/accounts/ldap-plugin
diff --git a/debian/rules b/debian/rules
index 0663742..abde6ef 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,16 +1,5 @@
#!/usr/bin/make -f
-OPENLDAP_SOURCE=debian/tmp/openldap-source/openldap
-
%:
dh $@
-override_dh_auto_configure:
- $(RM) -r $(OPENLDAP_SOURCE)
- mkdir -p $(dir $(OPENLDAP_SOURCE))
- cd $(dir $(OPENLDAP_SOURCE)); \
- apt-get source slapd
- mv $(dir $(OPENLDAP_SOURCE))openldap-*/ $(OPENLDAP_SOURCE)
-
-override_dh_auto_build:
- dh_auto_build -- OPENLDAP_SOURCE=$(OPENLDAP_SOURCE)