From a746e80be3f3283b079406eccf68f7a278988f8d Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Fri, 27 Apr 2007 21:56:05 +0200 Subject: add debian patch --- debian/changelog | 6 ++++ debian/compat | 1 + debian/control | 13 +++++++ debian/copyright | 9 +++++ debian/docs | 1 + debian/rules | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 136 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..727ce05 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +libpam-naming (0.1-1) unstable; urgency=low + + * Initial release + + -- Guido Guenther Tue, 6 Dec 2005 16:56:42 +0100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..5ffdd55 --- /dev/null +++ b/debian/control @@ -0,0 +1,13 @@ +Source: libpam-naming +Section: net +Priority: optional +Maintainer: Guido Guenther +Build-Depends: debhelper (>= 4.0.0), autotools-dev, libpcre3-dev +Standards-Version: 3.6.2 + +Package: libpam-naming +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: pam module to enforce force properties of usernames + This module allows you to enforce additional properties of usernames (e.g. + all lowercase) although other modules of the pam stack accept them as valid. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..24885bc --- /dev/null +++ b/debian/copyright @@ -0,0 +1,9 @@ +This package was debianized by Guido Guenther on +Fri, 28 Oct 2005 20:52:35 +0200. + +It was downloaded from http://honk.sigxcpu.org/darcs/pam-naming + +Copyright Holder: Guido Günther + +License: +GPLv2 diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..a4f3c35 --- /dev/null +++ b/debian/rules @@ -0,0 +1,106 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --libdir=/lib + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + rm -f config.log + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k --exclude ./pam_warn.c.orig + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/libpam-naming + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install -- cgit v1.2.3