source: trunk/dnsbl/Makefile@ 69

Last change on this file since 69 was 67, checked in by Kris Deugau, 6 years ago

/trunk/dnsbl

Review and update copyright dates on DNSBL.pm, DNSBLweb.pm, browse.cgi,

delist-ip, dnsbl.cgi, and export-dnsbl. Also add a version requirement
on DNSBL.pm in any callers.

Update browse.cgi with limited search and some operational-sanity boundaries

instead of blindly barfing out the entire dataset, requiring code changes
to view only a subset of data.

  • Property svn:keywords set to Date Rev Author Id
File size: 727 bytes
Line 
1# wrap'em up all neatlike
2# $Id: Makefile 67 2018-01-09 23:12:13Z kdeugau $
3
4# reqs:
5# libnetaddr-ip-perl
6# libdbd-pg-perl
7# rbldnsd
8
9MANIFEST = \
10 browse.cgi check-iplist.pl delist-ip export-dnsbl index.shtml Makefile \
11 dnsbl.cgi DNSBL.pm DNSBLweb.pm dnsbl.sql templates/ addparents.sql setparents.pl \
12 COPYING sa-dnsbl-example.cf
13
14PKGNAME=dnsbl
15VERSION=0.4.0
16
17all:
18
19dist:
20 mkdir $(PKGNAME)-$(VERSION)
21 tar -c --exclude .svn -f - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xvf -)
22# /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec
23 tar cvf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION)
24 gzip -v -f -9 $(PKGNAME)-$(VERSION).tar
25 rm -rf $(PKGNAME)-$(VERSION)
26 gpg -a --detach-sign $(PKGNAME)-$(VERSION).tar.gz
Note: See TracBrowser for help on using the repository browser.