debian/0000755000000000000000000000000011751237246007176 5ustar debian/rules0000755000000000000000000000506511751237246010264 0ustar #!/usr/bin/make -f # -*- makefile -*- INSTALL = install INSTALL_FILE = $(INSTALL) -p -o root -g root -m 644 INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755 INSTALL_SCRIPT = $(INSTALL) -p -o root -g root -m 755 INSTALL_DIR = $(INSTALL) -p -d -o root -g root -m 755 srcpackage=mod-authn-webid package=libapache2-mod-authn-webid build: stamp-build stamp-build: $(checkdir) autoconf ./configure $(MAKE) touch $@ binary: binary-arch binary-indep binary-arch: checkroot $(INSTALL_DIR) debian/$(package)/usr/lib/apache2/modules \ debian/$(package)/etc/apache2/mods-available \ debian/$(package)/usr/share/doc/$(package) \ debian/$(package)/DEBIAN $(MAKE) install DESTDIR=$(CURDIR)/debian/$(package) $(INSTALL_FILE) README.html $(CURDIR)/debian/$(package)/usr/share/doc/$(package) $(INSTALL_FILE) debian/authn_webid.load $(CURDIR)/debian/$(package)/etc/apache2/mods-available $(INSTALL_FILE) debian/copyright debian/$(package)/usr/share/doc/$(package)/copyright $(INSTALL_FILE) debian/changelog debian/$(package)/usr/share/doc/$(package)/changelog.Debian gzip -9f `find debian/$(package)/usr/share/man -type f` `find debian/$(package)/usr/share/doc -type f ! -name "copyright"` ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) strip --remove-section=.comment --remove-section=.note \ --strip-unneeded debian/$(package)/usr/lib/apache2/modules/*.so endif dpkg-shlibdeps -Tdebian/$(package).substvars -dDepends debian/$(package)/usr/lib/apache2/modules/*.so $(INSTALL_FILE) debian/conffiles debian/$(package)/DEBIAN/conffiles cd debian/$(package) && find * -type f ! -regex '^DEBIAN/.*' ! -path 'etc/apache2/mods-available/authn_webid.load' -print0 | xargs -r0 md5sum > DEBIAN/md5sums dpkg-gencontrol -ldebian/changelog -isp -p$(package) -Tdebian/$(package).substvars -Pdebian/$(package) chown -R root.root debian/$(package) chmod -R go=rX debian/$(package) dpkg --build debian/$(package) .. binary-indep: clean: checkroot rm -f debian/$(package).substvars rm -rf debian/$(package)/ find . \( \( -type f -a \ \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ \) -exec rm -f {} \; \) -o \ \( -type d -a -name autom4te.cache -prune -exec rm -rf {} \; \) \) rm -f stamp-* rm -f configure Makefile define checkdir test -f debian/rules endef checkroot: $(checkdir) test root = "`whoami`" .PHONY: build binary binary-arch binary-indep checkroot clean debian/control0000644000000000000000000000125111751237246010600 0ustar Source: mod-authn-webid Section: httpd Priority: extra Maintainer: Clint Adams Build-Depends: autoconf, apache2-dev, libssl-dev, pkg-config, librdf0-dev Standards-Version: 3.9.3 Homepage: http://dig.csail.mit.edu/2009/mod_authn_webid/ Vcs-Git: git://git.debian.org/collab-maint/mod-authn-webid.git Vcs-Browser: http://git.debian.org/?p=collab-maint/mod-authn-webid.git;a=summary Package: libapache2-mod-authn-webid Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: WebID FOAF+SSL authentication module for Apache This module provides a WebID FOAF+SSL authentication mechanism for Apache. . Clients are verified using a SPARQL query. debian/conffiles0000644000000000000000000000005511751237246011071 0ustar /etc/apache2/mods-available/authn_webid.load debian/authn_webid.load0000644000000000000000000000011211751237246012322 0ustar LoadModule authn_webid_module /usr/lib/apache2/modules/mod_authn_webid.so debian/copyright0000644000000000000000000000447411751237246011142 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: mod-authn-webid Source: http://dig.csail.mit.edu/2009/mod_authn_webid/ Files: * Copyright: 2010 Joe Presbrey License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Files: debian/* Copyright: 2011, 2012 Clint Adams License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/patches/0000755000000000000000000000000011751237246010625 5ustar debian/patches/series0000644000000000000000000000002111751237246012033 0ustar DESTDIR-Makefile debian/patches/DESTDIR-Makefile0000644000000000000000000000075011751237246013363 0ustar Description: Change Makefile to respect DESTDIR Author: Clint Adams --- mod-authn-webid-0~20110301.orig/Makefile.in +++ mod-authn-webid-0~20110301/Makefile.in @@ -2,7 +2,7 @@ all: @APXS@ -c @PKG_CFLAGS@ @PKG_LIBS@ mod_authn_webid.c install: - @APXS@ -c -i @PKG_CFLAGS@ @PKG_LIBS@ mod_authn_webid.c + @APXS@ -c -S "LIBEXECDIR=$(DESTDIR)/usr/lib/apache2/modules" -i @PKG_CFLAGS@ @PKG_LIBS@ mod_authn_webid.c clean: rm -f mod_authn_webid.{la,lo,slo,o} -r .libs debian/changelog0000644000000000000000000000056711751237246011060 0ustar mod-authn-webid (0~20110301-2) unstable; urgency=low * Fix Apache build-dep for Apache 2.4 transition. closes: #666855. * Bump to Standards-Version 3.9.3. -- Clint Adams Sat, 05 May 2012 10:49:08 -0400 mod-authn-webid (0~20110301-1) unstable; urgency=low * Initial release. -- Clint Adams Wed, 02 Mar 2011 14:08:45 -0500 debian/source/0000755000000000000000000000000011751237246010476 5ustar debian/source/format0000644000000000000000000000001411751237246011704 0ustar 3.0 (quilt)