OSDN Git Service

remove debian files.
authorTaizo ITO <taizo@karesansui-project.info>
Fri, 10 Jul 2009 03:55:06 +0000 (12:55 +0900)
committerTaizo ITO <taizo@karesansui-project.info>
Fri, 10 Jul 2009 03:55:06 +0000 (12:55 +0900)
debian/changelog [deleted file]
debian/control [deleted file]
debian/copyright [deleted file]
debian/dirs [deleted file]
debian/files [deleted file]
debian/postrm [deleted file]
debian/rules [deleted file]

diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644 (file)
index 304f15c..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-libpam-smtpauth (0.9.5-1) unstable; urgency=low
-
-  * Initial Release.
-
- -- Taizo ITO <taizo.ito@hde.co.jp>  Fri, 10 Jul 2009 12:05:59 +0900
-
-Local variables:
-mode: debian-changelog
-End:
diff --git a/debian/control b/debian/control
deleted file mode 100644 (file)
index 6f294e3..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-Source: libpam-smtpauth
-Build-Depends: debhelper (>= 5.0.22), binutils (>= 2.14.90.0.7), libpam0g-dev
-Section: admin
-Priority: extra
-Maintainer: Taizo ITO <taizo.ito@hde.co.jp>
-Standards-Version: 3.1.1.1
-
-Package: libpam-smtpauth
-Architecture: any
-Depends: ${shlibs:Depends}
-Description: Pluggable Authentication Module allowing SMTP authentication interface.
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644 (file)
index 356c202..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-This package was debianized by Taizo ITO (taizo.ito@hde.co.jp) on
-Fri Jul 10 12:06:21 JST 2009.
-
-Author: 
-    taizo.ito@hde.co.jp
-    Taizo ITO 7/10/09
-
-See COPYING for license text.
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644 (file)
index e27308b..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-etc
-lib/security
-usr/share/man/man5
diff --git a/debian/files b/debian/files
deleted file mode 100644 (file)
index f7c8725..0000000
+++ /dev/null
@@ -1 +0,0 @@
-libpam-smtpauth_0.9.6-1_i386.deb admin extra
diff --git a/debian/postrm b/debian/postrm
deleted file mode 100644 (file)
index 2cfee1d..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh -e
-if [ "$0" = "purge" ]
-then
-    rm -f /etc/pam_smtpauth.conf
-fi
-#DEBHELPER#
diff --git a/debian/rules b/debian/rules
deleted file mode 100755 (executable)
index 7984f55..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/usr/bin/make -f
-# -*- Makefile -*- made with the aid of dh_make, by Craig Small
-# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
-# Some lines taken from debmake, by Cristoph Lameter.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-SHELL = /bin/sh
-
-build: build-stamp
-build-stamp: configure-stamp
-       dh_testdir
-       $(MAKE)
-       touch build-stamp
-
-configure-stamp:
-       ./configure --prefix=/usr --sysconfdir=/etc --libdir=/lib --enable-debug=no
-       touch configure-stamp
-
-clean:
-       dh_testdir
-       dh_testroot
-       rm -f build-stamp install-stamp configure-stamp
-       -$(MAKE) clean
-       dh_clean
-
-install: install-stamp
-install-stamp: build-stamp
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-       #dh_installdirs lib/security
-       make install DESTDIR=`pwd`/debian/tmp 
-       #install -m 644 src/pam_smtpauth.so debian/tmp/lib/security
-       rm -rf debian/tmp/usr/bin
-       touch install-stamp
-
-# 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_installdocs README AUTHORS COPYING NEWS
-       dh_installchangelogs ChangeLog
-       dh_installexamples sample/pam_smtpauth.conf
-       dh_strip
-       dh_compress
-       dh_fixperms
-       dh_installdeb
-       dh_shlibdeps
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
-
-source diff:                                                                  
-       @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary