postfix-policyd-spf-perl/trunk/postfix-policyd-spf -> postfix-policyd-spf-perl

* Renamed file.
* Moved documentation from executable into separate README and INSTALL files.
* Minor and purely cosmetic code clean-up.

postfix-policyd-spf-perl/trunk/README
* Added, adopting non-installation documentation from postfix-policyd-spf and
  improving it.

postfix-policyd-spf-perl/trunk/INSTALL
* Added, adopting installation documentation from postfix-policyd-spf and
  improving it.

postfix-policyd-spf-perl/trunk/CHANGES
* Added, describing changes for 1.08 release.

postfix-policyd-spf-perl/trunk/debian
postfix-policyd-spf-perl/trunk/debian/*
* Added.
This commit is contained in:
Julian Mehnle 2006-06-17 18:42:33 +00:00
commit 711623e5c9
9 changed files with 211 additions and 88 deletions

5
debian/changelog vendored Normal file
View file

@ -0,0 +1,5 @@
postfix-policyd-spf-perl (1.08) unstable; urgency=low
* Initial release as a Debian package.
-- Julian Mehnle <julian@mehnle.net> Sat, 17 Jun 2006 19:32:31 +0000

1
debian/compat vendored Normal file
View file

@ -0,0 +1 @@
5

14
debian/control vendored Normal file
View file

@ -0,0 +1,14 @@
Source: postfix-policyd-spf-perl
Section: mail
Priority: optional
Maintainer: Julian Mehnle <julian@mehnle.net>
Build-Depends-Indep: debhelper (>= 5), perl (>= 5.6)
Standards-Version: 3.7.2
Package: postfix-policyd-spf-perl
Architecture: all
Depends: libmail-spf-query-perl
Recommends: postfix
Description: pure-Perl Postfix policy daemon for SPF checking
postfix-policyd-spf-perl is a Postfix SMTPd policy daemon for SPF checking.
It is implemented in pure Perl and uses the Mail::SPF::Query module.

13
debian/copyright vendored Normal file
View file

@ -0,0 +1,13 @@
This is the Debian package for postfix-policyd-spf-perl, which is available
from <http://new.openspf.org/Implementations>.
(C) 2003-2004 Meng Weng Wong <mengwong@pobox.com>
Contributions by various members of the SPF project
Julian Mehnle is the maintainer of the Debian package.
This is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License (version 2 or later).
On Debian systems, the complete text of the GPL v2 can be found here:
/usr/share/common-licenses/GPL-2

56
debian/rules vendored Executable file
View file

@ -0,0 +1,56 @@
#!/usr/bin/make -f
PACKAGE = $(shell dh_listpackages)
ifndef PERL
PERL = /usr/bin/perl
endif
TMP = $(CURDIR)/debian/$(PACKAGE)
build: build-stamp
# Nothing to do.
clean:
dh_testdir
dh_testroot
dh_clean build-stamp install-stamp
install: install-stamp
install-stamp:
dh_testdir
dh_testroot
dh_clean -k
install -D postfix-policyd-spf-perl $(TMP)/usr/lib/postfix/policyd-spf-perl
touch install-stamp
# Build architecture-independent files here:
binary-indep: build install
dh_testdir
dh_testroot
dh_install
dh_installdirs
dh_installdocs README
dh_installchangelogs CHANGES
#dh_installexamples examples/*
#dh_installman
#dh_link
dh_compress
dh_fixperms
dh_installdeb
dh_perl
dh_gencontrol
dh_md5sums
dh_builddeb
# Build architecture-dependent files here:
binary-arch:
# Nothing to do.
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install