--- libapache2-mod-ldap-userdir-1.1.18.orig/debian/docs +++ libapache2-mod-ldap-userdir-1.1.18/debian/docs @@ -0,0 +1,2 @@ +README +DIRECTIVES --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/rules +++ libapache2-mod-ldap-userdir-1.1.18/debian/rules @@ -0,0 +1,54 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + + ./configure --with-apxs=/usr/bin/apxs2 + $(MAKE) + chrpath -d .libs/mod_ldap_userdir.so + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_clean + dh_installdirs + + cp .libs/mod_ldap_userdir.so $(CURDIR)/debian/libapache2-mod-ldap-userdir/usr/lib/apache2/modules + cp debian/ldap_userdir.load $(CURDIR)/debian/libapache2-mod-ldap-userdir/etc/apache2/mods-available + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs +# dh_installexamples + dh_installdebconf + dh_strip --dbg-package=libapache2-mod-ldap-userdir-dbg + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/prerm +++ libapache2-mod-ldap-userdir-1.1.18/debian/prerm @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +if [ "$1" = remove ] || [ "$1" = purge ]; then + if [ -e /etc/apache2/apache2.conf ] && a2dismod=$(which a2dismod); then + "$a2dismod" ldap_userdir + fi +fi + +#DEBHELPER# + +exit 0 --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/dirs +++ libapache2-mod-ldap-userdir-1.1.18/debian/dirs @@ -0,0 +1,2 @@ +/etc/apache2/mods-available +/usr/lib/apache2/modules --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/ldap_userdir.load +++ libapache2-mod-ldap-userdir-1.1.18/debian/ldap_userdir.load @@ -0,0 +1 @@ +LoadModule ldap_userdir_module /usr/lib/apache2/modules/mod_ldap_userdir.so --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/postinst +++ libapache2-mod-ldap-userdir-1.1.18/debian/postinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +if [ "$1" = configure ] && [ -z "$2" ]; then + if [ -e /etc/apache2/apache2.conf ] && a2enmod=$(which a2enmod); then + "$a2enmod" ldap_userdir + fi +fi + +#DEBHELPER# + +exit 0 --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/copyright +++ libapache2-mod-ldap-userdir-1.1.18/debian/copyright @@ -0,0 +1,28 @@ +This is mod_ldap_userdir, written and maintained by: + John Morrissey . + +The original source can always be found at: + http://horde.net/~jwm/software/mod_ldap_userdir/ + +Copyright: + +Copyright 1999 - 2010, John Morrissey + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License with + the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; + if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth + Floor, Boston, MA 02110-1301, USA. + + Furthermore, John Morrissey gives permission to link this program with + OpenSSL, and distribute the resulting executable, without including the + source code for OpenSSL in the source distribution. --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/compat +++ libapache2-mod-ldap-userdir-1.1.18/debian/compat @@ -0,0 +1 @@ +7 --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/control +++ libapache2-mod-ldap-userdir-1.1.18/debian/control @@ -0,0 +1,25 @@ +Source: libapache2-mod-ldap-userdir +Maintainer: John Morrissey +Section: net +Priority: optional +Standards-Version: 3.9.1 +Build-Depends: debhelper (>= 7), apache2-threaded-dev (>= 2.2.3), libldap2-dev, chrpath +Homepage: http://horde.net/~jwm/software/mod_ldap_userdir/ + +Package: libapache2-mod-ldap-userdir +Architecture: any +Depends: apache2.2-common, ${shlibs:Depends}, ${misc:Depends} +Description: Apache module that provides UserDir lookups via LDAP + This module implements UserDir (~/public_html/) directory lookups using + data from an LDAP directory. + . + This package provides the module for the Apache 2 server. + +Package: libapache2-mod-ldap-userdir-dbg +Architecture: any +Section: debug +Priority: extra +Depends: libapache2-mod-ldap-userdir (= ${binary:Version}), ${misc:Depends} +Description: Debugging symbols for mod_ldap_userdir + This package provides debugging symbols for mod_ldap_userdir, to assist in + debugging, such as with gdb. It is not required for normal operation. --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/changelog +++ libapache2-mod-ldap-userdir-1.1.18/debian/changelog @@ -0,0 +1,110 @@ +libapache2-mod-ldap-userdir (1.1.18-1) unstable; urgency=low + + * New upstream release. + * Don't need explict --with-tls argument to configure; TLS is detected + automatically now. + * Build -dbg package, libapache2-mod-ldap-userdir-dbg. + * Fix lintian warnings: + * Bump Standards-Version to 3.9.1 (no changes necessary). + * Bump compat version (no changes necessary). + * Remove hardcoded paths to a2{en,dis}mod in maintainer scripts. + + -- John Morrissey Thu, 17 Mar 2011 19:15:43 -0400 + +libapache2-mod-ldap-userdir (1.1.17-1) unstable; urgency=low + + * New upstream release. + + -- John Morrissey Fri, 27 Nov 2009 17:45:05 -0500 + +libapache2-mod-ldap-userdir (1.1.16-1) unstable; urgency=low + + * New upstream release. (Closes: #520631) + * Add ${misc:Depends} to silence lintian warning. + + -- John Morrissey Fri, 03 Apr 2009 20:59:59 -0400 + +libapache2-mod-ldap-userdir (1.1.15-1) unstable; urgency=low + + * New upstream release. (Closes: #515952) + * Accept post-lenny section change (was net, now httpd). + + -- John Morrissey Mon, 16 Mar 2009 19:10:19 -0400 + +libapache2-mod-ldap-userdir (1.1.14-1) unstable; urgency=low + + * New upstream release + + -- John Morrissey Thu, 9 Oct 2008 09:56:03 -0400 + +libapache2-mod-ldap-userdir (1.1.13-1) unstable; urgency=low + + * New upstream release. + * Remove -1 on apache2-threaded-dev versioned dependency to silence + build-depends-on-1-revision lintian warning. + * Add Homepage field to debian/control. + * Bump Standards-Version to 3.8.0 (no changes necessary). + + -- John Morrissey Wed, 8 Oct 2008 13:58:56 +0000 + +libapache2-mod-ldap-userdir (1.1.12-1) unstable; urgency=low + + * New upstream release. + * Accept web -> net Section: override. + * Bump Standards-Version to 3.7.3 (no changes necessary). + + -- John Morrissey Sun, 6 Jan 2008 17:24:42 -0500 + +libapache2-mod-ldap-userdir (1.1.11-3) unstable; urgency=low + + * Remove Apache 2.0 reference from description. (Closes: #400982) + + -- John Morrissey Fri, 26 Jan 2006 21:47:27 +0000 + +libapache2-mod-ldap-userdir (1.1.11-2) unstable; urgency=medium + + * Update dependencies for Apache 2.2. (Closes: #391794) + + -- John Morrissey Tue, 10 Oct 2006 18:06:11 +0000 + +libapache2-mod-ldap-userdir (1.1.11-1) unstable; urgency=low + + * New upstream release + * Use debhelper 4. + * Bump Standards-Version to 3.7.2 (no changes necessary). + + -- John Morrissey Thu, 24 Aug 2006 15:07:59 +0000 + +libapache2-mod-ldap-userdir (1.1.8-1) unstable; urgency=low + + * New upstream release. + + -- John Morrissey Fri, 15 Jul 2005 18:32:07 +0000 + +libapache2-mod-ldap-userdir (1.1.7-1) unstable; urgency=high + + * New upstream release. + * Update build process to reflect new location of mod_ldap_userdir.so + in .libs/, with high urgency since this is RC. (Closes: 301117) + + -- John Morrissey Mon, 28 Mar 2005 15:25:32 +0000 + +libapache2-mod-ldap-userdir (1.1.4-3) unstable; urgency=high + + * Back out the ill-fated apache2 LFS transition. + * Bump Apache2 dependencies to 2.0.50-10. (Closes: #267349) + + -- John Morrissey Sun, 22 Aug 2004 09:32:30 -0500 + +libapache2-mod-ldap-userdir (1.1.4-2) unstable; urgency=medium + + * Rebuild against latest libapr0 to pick up ABI changes. + (Closes: #266184) + + -- John Morrissey Tue, 17 Aug 2004 08:41:45 -0500 + +libapache2-mod-ldap-userdir (1.1.4-1) unstable; urgency=low + + * Initial Release. (Closes: #252858) + + -- John Morrissey Sun, 2 May 2004 22:07:42 -0500 --- libapache2-mod-ldap-userdir-1.1.18.orig/debian/watch +++ libapache2-mod-ldap-userdir-1.1.18/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://horde.net/~jwm/software/mod_ldap_userdir/mod_ldap_userdir-([\d\.]+)\.tar\.(gz|bz2) debian uupdate