source: trunk/Makefile@ 750

Last change on this file since 750 was 743, checked in by Kris Deugau, 8 years ago

/trunk

Add 1.4.0 update SQL file to Makefile manifest

  • Property svn:keywords set to Id
File size: 4.8 KB
Line 
1# $Id: Makefile 743 2016-08-25 21:14:59Z kdeugau $
2# DNS Admin makefile
3
4PKGNAME=dnsadmin
5VERSION=1.3
6RELEASE=1
7
8# Include some boilerplate Gnu makefile definitions.
9prefix = /usr/local
10
11exec_prefix = ${prefix}
12bindir = ${exec_prefix}/bin
13libdir = ${exec_prefix}/lib
14infodir = ${prefix}/info
15includedir = ${prefix}/include
16datadir = ${prefix}/share
17localedir = $(datadir)/locale
18sysconfdir = ${prefix}/etc
19mandir = ${prefix}/man
20
21INSTALL = /usr/bin/install
22INSTALL_PROGRAM = ${INSTALL}
23INSTALL_SCRIPT = ${INSTALL}
24INSTALL_DATA = ${INSTALL} -m 644
25INSTALLMODE= -m 0755
26INSTALLMODE2 = -m 0555
27
28DESTDIR =
29
30# flag to indicate if we install in a version-numbered location to
31# support parallel installs (packaged or otherwise) or if we're
32# installing to .../dnsdb/ (overwrite whatever was there last)
33PARA_VERSIONS = 0
34
35# also set the leaf directories we'll be putting things in
36PKG_LEAF = dnsdb
37CFG_LEAF = dnsdb
38
39# tweak the final leaf directories we install to if PARA_VERSIONS is set
40ifeq "$(PARA_VERSIONS)" "1"
41PKG_LEAF = dnsdb-$(VERSION)
42CFG_LEAF = dnsdb/$(VERSION)
43endif
44
45MANIFEST = \
46 INSTALL COPYING TODO Makefile dnsadmin.spec \
47 \
48 dns.sql dns-1.0-1.2.sql dns-1.2.3-1.2.4.sql dns-upd-1.2.6.sql dns-upd-1.4.0.sql \
49 \
50 $(SCRIPTS) $(MODULES) \
51 \
52 index.shtml reverse-patterns.html \
53 \
54 $(IMAGES) \
55 \
56 $(TEMPLATES) \
57 \
58 dnsdb.conf
59
60DIRS = \
61 images templates
62
63IMAGES = \
64 images/ASC.png images/DESC.png \
65 images/ffwd.png images/frev.png images/fwd.png images/rev.png \
66 images/trash2.png \
67 images/tree_closed.png images/tree_open.png
68
69SCRIPTS = \
70 compact-recs.pl dns.cgi dns-rpc.cgi dns-rpc.fcgi export.pl mergerecs textrecs.cgi tiny-import.pl \
71 vega-import.pl
72
73MODULES = DNSDB.pm
74
75TEMPLATES = \
76 templates/adddomain.tmpl templates/addgroup.tmpl templates/addrec.tmpl templates/addrevzone.tmpl \
77 templates/adduser.tmpl templates/axfr.tmpl templates/badpage.tmpl templates/bulkchange.tmpl \
78 templates/bulkdomain.tmpl templates/bulkrev.tmpl templates/confirmbulk.tmpl templates/dberr.tmpl \
79 templates/deldom.tmpl templates/delgrp.tmpl templates/delloc.tmpl templates/delrec.tmpl \
80 templates/delrevzone.tmpl templates/deluser.tmpl templates/dns.css templates/dnsq.tmpl \
81 templates/domlist.tmpl templates/edgroup.tmpl templates/editsoa.tmpl templates/footer.tmpl \
82 templates/fpnla.tmpl templates/grouptree.css templates/grouptree-ie.css templates/grpman.tmpl \
83 templates/grptree.tmpl templates/header.tmpl templates/lettsearch.tmpl templates/location.tmpl \
84 templates/loclist.tmpl templates/login.tmpl templates/log.tmpl templates/menu.tmpl \
85 templates/msgblock.tmpl templates/newdomain.tmpl templates/newgrp.tmpl templates/newrevzone.tmpl \
86 templates/permlist.tmpl templates/pgcount.tmpl templates/reclist.tmpl templates/record.tmpl \
87 templates/recsearch.tmpl \
88 templates/revzones.tmpl templates/sbox.tmpl templates/soadata.tmpl templates/template.tmpl \
89 templates/textrecs.tmpl templates/updatesoa.tmpl templates/useradmin.tmpl templates/user.tmpl \
90 templates/whoisq.tmpl templates/widgets.js
91
92CONFIGFILES = dnsdb.conf
93
94all:
95 # nullop
96
97install:
98 @mkdir -p $(DESTDIR)${datadir}/$(PKG_LEAF)/images
99 @$(INSTALL_DATA) $(IMAGES) $(DESTDIR)${datadir}/$(PKG_LEAF)/images
100 @mkdir -p $(DESTDIR)${datadir}/$(PKG_LEAF)/templates
101 @$(INSTALL_DATA) $(TEMPLATES) $(DESTDIR)${datadir}/$(PKG_LEAF)/templates
102 @# munge in necessary 'use lib ...' bits so scripts can find libs and config...
103 @# datadir is correct; no arch-specific files
104 @for i in $(SCRIPTS) $(MODULES); do \
105 $(INSTALL_SCRIPT) -D $$i $(DESTDIR)${datadir}/$(PKG_LEAF)/$$i ; \
106 perl -pi -e "s|use lib '.';\s+##uselib##|use lib '${datadir}/$(PKG_LEAF)/';|;" $(DESTDIR)${datadir}/$(PKG_LEAF)/$$i ; \
107 done
108 @$(INSTALL) -d $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/
109 @# install an example config file with all known settings
110 @for i in $(CONFIGFILES) ; do \
111 if [ -e $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/$$i ]; then \
112 echo "refusing to overwrite existing config file, created as $$i.new" ; \
113 $(INSTALL_DATA) $$i $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/$$i.new ; \
114 else \
115 $(INSTALL_DATA) $$i $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/ ; \
116 fi ; \
117 perl -pi -e 's|"/etc/dnsdb/dnsdb.conf",\s+##CFG_LEAF##|"${sysconfdir}/$(CFG_LEAF)/dnsdb.conf",|;' $(DESTDIR)${datadir}/$(PKG_LEAF)/DNSDB.pm ; \
118 done
119
120#clean:
121# @for i in $(DIRS) ; do \
122# $(MAKE) -C $$i clean ; \
123# done
124
125dist:
126 mkdir $(PKGNAME)-$(VERSION)
127 tar cf - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xf -)
128 /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec
129 /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < INSTALL > $(PKGNAME)-$(VERSION)/INSTALL
130 perl -pi -e 's/["\d.]+;\s*##VERSION##/"$(VERSION)";/;' $(PKGNAME)-$(VERSION)/DNSDB.pm
131 tar cf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION)
132 gzip -v -f -9 $(PKGNAME)-$(VERSION).tar
133 rm -rf $(PKGNAME)-$(VERSION)
134 gpg -a --detach-sign $(PKGNAME)-$(VERSION).tar.gz
Note: See TracBrowser for help on using the repository browser.