aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-04-27 18:12:43 +0200
committerGuido Guenther <agx@bogon.sigxcpu.org>2007-04-27 18:12:43 +0200
commit31505e9558b6a403bd3e5639608d918d6ef1b11f (patch)
treef706b4f09a02c0af377796344de8c8ade9e4a1a2
parent2d411ffdd58ece18e0736d313f985c4e19e2d39b (diff)
remove debian dirupstream/0.2
-rw-r--r--debian/changelog14
-rw-r--r--debian/compat1
-rw-r--r--debian/control13
-rw-r--r--debian/copyright10
-rw-r--r--debian/docs1
-rw-r--r--debian/rules108
6 files changed, 0 insertions, 147 deletions
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644
index 6028f57..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,14 +0,0 @@
-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
deleted file mode 100644
index b8626c4..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-4
diff --git a/debian/control b/debian/control
deleted file mode 100644
index afdf5b0..0000000
--- a/debian/control
+++ /dev/null
@@ -1,13 +0,0 @@
-Source: libpam-exec
-Section: net
-Priority: optional
-Maintainer: Guido Guenther <agx@debian.org>
-Build-Depends: debhelper (>= 4.0.0), autotools-dev
-Standards-Version: 3.6.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
deleted file mode 100644
index a20d0c4..0000000
--- a/debian/copyright
+++ /dev/null
@@ -1,10 +0,0 @@
-This package was debianized by Guido Guenther <agx@debian.org> on
-Fri, 28 Oct 2005 20:52:35 +0200.
-
-It was downloaded from <fill in ftp site>
-
-Copyright Holder: <put author(s) name and email here>
-
-License:
-
-<Put the license of the package here>
diff --git a/debian/docs b/debian/docs
deleted file mode 100644
index e845566..0000000
--- a/debian/docs
+++ /dev/null
@@ -1 +0,0 @@
-README
diff --git a/debian/rules b/debian/rules
deleted file mode 100644
index 3d78705..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/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