aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog24
-rw-r--r--debian/compat1
-rw-r--r--debian/control13
-rw-r--r--debian/copyright12
-rw-r--r--debian/docs1
-rwxr-xr-xdebian/rules108
6 files changed, 159 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8113a59
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,24 @@
+libpam-exec (0.2-2) unstable; urgency=low
+
+ * move to git (split out upstream branch)
+ * fix build dependency
+ * bump standards version
+ * debhelper version 5
+ * fix copyright file
+
+ -- Guido Guenther <agx@sigxcpu.org> Fri, 27 Apr 2007 22:01:56 +0200
+
+libpam-exec (0.2-1) unstable; urgency=low
+
+ * pass password in the environment variable "PASSWD"
+ * remove some superflous automake stuff
+ * use _pam_log everywhere
+
+ -- Guido Guenther <agx@debian.org> Tue, 7 Feb 2006 15:16:05 +0100
+
+libpam-exec (0.1-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Guido Guenther <agx@debian.org> Fri, 28 Oct 2005 20:52:35 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..7c680f6
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,13 @@
+Source: libpam-exec
+Section: net
+Priority: optional
+Maintainer: Guido Guenther <agx@debian.org>
+Build-Depends: debhelper (>= 5.0.0), autotools-dev, libpam0g-dev
+Standards-Version: 3.7.2
+
+Package: libpam-exec
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: pam module to exec an arbitrary program
+ This module allows you to call out arbitray programs, they
+ get the current user, ruser, tty, etc. as arguments
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c3ef55f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,12 @@
+This package was debianized by Guido Guenther <agx@debian.org> on
+Fri, 28 Oct 2005 20:52:35 +0200.
+
+It was downloaded from http://honk.sigxcpu.org/git/pam-exec.git
+
+Copyright Holder: Guido Guenther <agx@sixcpu.org>
+
+License:
+
+You are free to distribute this software under the terms of the GNU General
+Public License Version 2. The full text of this license can be found in the
+file /usr/share/common-licenses/GPL-2
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..3d78705
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,108 @@
+#!/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)
+ #docbook-to-man debian/libpam-exec.sgml > libpam-exec.1
+
+ 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 --exclude ./pam_warn.c.orig
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k --exclude ./pam_warn.c.orig
+ dh_installdirs
+
+ # Add here commands to install the package into debian/libpam-exec.
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/libpam-exec
+
+
+# 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