| [210] | 1 | # $Id: Makefile 797 2020-11-03 20:38:37Z kdeugau $
 | 
|---|
| [114] | 2 | # DNS Admin makefile
 | 
|---|
 | 3 | 
 | 
|---|
 | 4 | PKGNAME=dnsadmin
 | 
|---|
| [561] | 5 | VERSION=1.3
 | 
|---|
| [114] | 6 | RELEASE=1
 | 
|---|
 | 7 | 
 | 
|---|
 | 8 | # Include some boilerplate Gnu makefile definitions.
 | 
|---|
 | 9 | prefix = /usr/local
 | 
|---|
 | 10 | 
 | 
|---|
 | 11 | exec_prefix = ${prefix}
 | 
|---|
 | 12 | bindir = ${exec_prefix}/bin
 | 
|---|
 | 13 | libdir = ${exec_prefix}/lib
 | 
|---|
 | 14 | infodir = ${prefix}/info
 | 
|---|
 | 15 | includedir = ${prefix}/include
 | 
|---|
 | 16 | datadir = ${prefix}/share
 | 
|---|
 | 17 | localedir = $(datadir)/locale
 | 
|---|
 | 18 | sysconfdir = ${prefix}/etc
 | 
|---|
 | 19 | mandir = ${prefix}/man
 | 
|---|
 | 20 | 
 | 
|---|
| [220] | 21 | INSTALL = /usr/bin/install
 | 
|---|
| [114] | 22 | INSTALL_PROGRAM = ${INSTALL}
 | 
|---|
 | 23 | INSTALL_SCRIPT = ${INSTALL}
 | 
|---|
 | 24 | INSTALL_DATA = ${INSTALL} -m 644
 | 
|---|
 | 25 | INSTALLMODE= -m 0755
 | 
|---|
 | 26 | INSTALLMODE2 = -m 0555
 | 
|---|
 | 27 | 
 | 
|---|
 | 28 | DESTDIR =
 | 
|---|
 | 29 | 
 | 
|---|
| [219] | 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)
 | 
|---|
 | 33 | PARA_VERSIONS = 0
 | 
|---|
 | 34 | 
 | 
|---|
 | 35 | # also set the leaf directories we'll be putting things in
 | 
|---|
| [220] | 36 | PKG_LEAF = dnsdb
 | 
|---|
 | 37 | CFG_LEAF = dnsdb
 | 
|---|
| [219] | 38 | 
 | 
|---|
 | 39 | # tweak the final leaf directories we install to if PARA_VERSIONS is set
 | 
|---|
 | 40 | ifeq "$(PARA_VERSIONS)" "1"
 | 
|---|
| [220] | 41 | PKG_LEAF = dnsdb-$(VERSION)
 | 
|---|
 | 42 | CFG_LEAF = dnsdb/$(VERSION)
 | 
|---|
| [219] | 43 | endif
 | 
|---|
 | 44 | 
 | 
|---|
| [114] | 45 | MANIFEST = \
 | 
|---|
| [219] | 46 |         INSTALL COPYING TODO Makefile dnsadmin.spec \
 | 
|---|
| [114] | 47 |         \
 | 
|---|
| [766] | 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 dns-upd-1.4.1.sql \
 | 
|---|
| [219] | 49 |         \
 | 
|---|
| [528] | 50 |         $(SCRIPTS) $(MODULES) \
 | 
|---|
 | 51 |         \
 | 
|---|
| [693] | 52 |         index.shtml reverse-patterns.html \
 | 
|---|
| [114] | 53 |         \
 | 
|---|
| [528] | 54 |         $(IMAGES) \
 | 
|---|
| [114] | 55 |         \
 | 
|---|
| [528] | 56 |         $(TEMPLATES) \
 | 
|---|
| [216] | 57 |         \
 | 
|---|
 | 58 |         dnsdb.conf
 | 
|---|
| [114] | 59 | 
 | 
|---|
 | 60 | DIRS = \
 | 
|---|
 | 61 |         images templates
 | 
|---|
 | 62 | 
 | 
|---|
| [199] | 63 | IMAGES = \
 | 
|---|
| [528] | 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
 | 
|---|
| [114] | 68 | 
 | 
|---|
 | 69 | SCRIPTS = \
 | 
|---|
| [771] | 70 |         bulk-add-domain compact-recs.pl dns.cgi dns-rpc.cgi dns-rpc.fcgi export.pl mergerecs textrecs.cgi \
 | 
|---|
 | 71 |         tiny-import.pl vega-import.pl
 | 
|---|
| [114] | 72 | 
 | 
|---|
| [166] | 73 | MODULES = DNSDB.pm
 | 
|---|
| [114] | 74 | 
 | 
|---|
| [216] | 75 | TEMPLATES = \
 | 
|---|
| [528] | 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 \
 | 
|---|
| [646] | 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 \
 | 
|---|
| [648] | 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 \
 | 
|---|
| [727] | 87 |         templates/recsearch.tmpl \
 | 
|---|
| [648] | 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
 | 
|---|
| [114] | 91 | 
 | 
|---|
| [216] | 92 | CONFIGFILES = dnsdb.conf
 | 
|---|
 | 93 | 
 | 
|---|
| [114] | 94 | all:
 | 
|---|
 | 95 |         # nullop
 | 
|---|
 | 96 | 
 | 
|---|
 | 97 | install:
 | 
|---|
| [220] | 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
 | 
|---|
| [114] | 102 |         @for i in $(SCRIPTS) $(MODULES); do \
 | 
|---|
| [219] | 103 |                 $(INSTALL_SCRIPT) -D $$i $(DESTDIR)${datadir}/$(PKG_LEAF)/$$i ; \
 | 
|---|
| [114] | 104 |         done
 | 
|---|
| [219] | 105 |         @$(INSTALL) -d $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/
 | 
|---|
| [216] | 106 |         @# install an example config file with all known settings
 | 
|---|
 | 107 |         @for i in $(CONFIGFILES) ; do \
 | 
|---|
| [219] | 108 |                 if [ -e $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/$$i ]; then \
 | 
|---|
| [216] | 109 |                         echo "refusing to overwrite existing config file, created as $$i.new" ; \
 | 
|---|
| [219] | 110 |                         $(INSTALL_DATA) $$i $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/$$i.new ; \
 | 
|---|
| [216] | 111 |                 else \
 | 
|---|
| [219] | 112 |                         $(INSTALL_DATA) $$i $(DESTDIR)${sysconfdir}/$(CFG_LEAF)/ ; \
 | 
|---|
 | 113 |                 fi ; \
 | 
|---|
| [528] | 114 |                 perl -pi -e 's|"/etc/dnsdb/dnsdb.conf",\s+##CFG_LEAF##|"${sysconfdir}/$(CFG_LEAF)/dnsdb.conf",|;' $(DESTDIR)${datadir}/$(PKG_LEAF)/DNSDB.pm ; \
 | 
|---|
| [114] | 115 |         done
 | 
|---|
 | 116 | 
 | 
|---|
 | 117 | #clean:
 | 
|---|
 | 118 | #       @for i in $(DIRS) ; do \
 | 
|---|
 | 119 | #               $(MAKE) -C $$i clean ; \
 | 
|---|
 | 120 | #       done
 | 
|---|
 | 121 | 
 | 
|---|
 | 122 | dist:
 | 
|---|
 | 123 |         mkdir $(PKGNAME)-$(VERSION)
 | 
|---|
 | 124 |         tar cf - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xf -)
 | 
|---|
| [219] | 125 |         /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec
 | 
|---|
| [114] | 126 |         /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < INSTALL > $(PKGNAME)-$(VERSION)/INSTALL
 | 
|---|
| [549] | 127 |         perl -pi -e 's/["\d.]+;\s*##VERSION##/"$(VERSION)";/;' $(PKGNAME)-$(VERSION)/DNSDB.pm
 | 
|---|
| [114] | 128 |         tar cf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION)
 | 
|---|
 | 129 |         gzip -v -f -9 $(PKGNAME)-$(VERSION).tar
 | 
|---|
 | 130 |         rm -rf $(PKGNAME)-$(VERSION)
 | 
|---|
| [262] | 131 |         gpg -a --detach-sign $(PKGNAME)-$(VERSION).tar.gz
 | 
|---|