| 1 | # $Id: Makefile 210 2011-12-21 20:33:48Z kdeugau $ | 
|---|
| 2 | # DNS Admin makefile | 
|---|
| 3 |  | 
|---|
| 4 | PKGNAME=dnsadmin | 
|---|
| 5 | VERSION=1.0 | 
|---|
| 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 |  | 
|---|
| 21 | INSTALL = /usr/bin/install -c | 
|---|
| 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 |  | 
|---|
| 30 | MANIFEST = \ | 
|---|
| 31 | INSTALL COPYING TODO Makefile new-dns.sql dns.sql dns.cgi dns-rpc.cgi DNSDB.pm \ | 
|---|
| 32 | vega-import.pl \ | 
|---|
| 33 | \ | 
|---|
| 34 | index.shtml \ | 
|---|
| 35 | \ | 
|---|
| 36 | images/trash2.png images/fwd.png images/ffwd.png images/frev.png \ | 
|---|
| 37 | images/rev.png images/DESC.png images/ASC.png images/tree_open.png images/tree_closed.png \ | 
|---|
| 38 | \ | 
|---|
| 39 | templates/adddomain.tmpl templates/addgroup.tmpl templates/addrec.tmpl templates/adduser.tmpl \ | 
|---|
| 40 | templates/axfr.tmpl templates/bulkchange.tmpl templates/bulkdomain.tmpl templates/dberr.tmpl \ | 
|---|
| 41 | templates/deldom.tmpl templates/delgrp.tmpl templates/delrec.tmpl templates/deluser.tmpl \ | 
|---|
| 42 | templates/dns.css templates/dnsq.tmpl templates/domlist.tmpl templates/edgroup.tmpl \ | 
|---|
| 43 | templates/editsoa.tmpl templates/footer.tmpl templates/fpnla.tmpl templates/grouptree.css \ | 
|---|
| 44 | templates/grouptree-ie.css templates/grpman.tmpl templates/grptree.tmpl templates/header.tmpl \ | 
|---|
| 45 | templates/lettsearch.tmpl templates/login.tmpl templates/log.tmpl templates/menu.tmpl \ | 
|---|
| 46 | templates/newdomain.tmpl templates/newgrp.tmpl templates/permlist_enabled.tmpl templates/permlist.tmpl \ | 
|---|
| 47 | templates/pgcount.tmpl templates/reclist.tmpl templates/record.tmpl templates/sbox.tmpl \ | 
|---|
| 48 | templates/soadata.tmpl templates/template.tmpl templates/updatesoa.tmpl templates/useradmin.tmpl \ | 
|---|
| 49 | templates/user.tmpl templates/viadns.css templates/whoisq.tmpl \ | 
|---|
| 50 |  | 
|---|
| 51 | DIRS = \ | 
|---|
| 52 | images templates | 
|---|
| 53 |  | 
|---|
| 54 | IMAGES = \ | 
|---|
| 55 | images/trash2.png images/fwd.png images/ffwd.png images/frev.png \ | 
|---|
| 56 | images/rev.png images/DESC.png images/ASC.png | 
|---|
| 57 |  | 
|---|
| 58 | SCRIPTS = \ | 
|---|
| 59 | dns.cgi dns-rpc.cgi vega-import.pl | 
|---|
| 60 |  | 
|---|
| 61 | MODULES = DNSDB.pm | 
|---|
| 62 |  | 
|---|
| 63 | #CONFIGMODULES = MyDNSDB.pm | 
|---|
| 64 |  | 
|---|
| 65 | all: | 
|---|
| 66 | # nullop | 
|---|
| 67 |  | 
|---|
| 68 | install: | 
|---|
| 69 | @for i in $(HTML) $(IMAGES); do \ | 
|---|
| 70 | $(INSTALL_DATA) -D $$i $(DESTDIR)${libdir}/dnsdb/$$i ; \ | 
|---|
| 71 | done | 
|---|
| 72 | # munge in necessary 'use lib ...' bits so scripts can find MyDNSDB.pm... | 
|---|
| 73 | @for i in $(SCRIPTS) $(MODULES); do \ | 
|---|
| 74 | $(INSTALL_SCRIPT) -D $$i $(DESTDIR)${libdir}/dnsdb/$$i ; \ | 
|---|
| 75 | perl -pi -e 's|##uselib##|use lib "${sysconfdir}/dnsdb/";|;' $(DESTDIR)${libdir}/dnsdb/$$i ; \ | 
|---|
| 76 | done | 
|---|
| 77 | $(INSTALL) -d $(DESTDIR)${sysconfdir}/dnsdb/ | 
|---|
| 78 | @for i in $(CONFIGMODULES) ; do \ | 
|---|
| 79 | $(INSTALL_DATA) $$i $(DESTDIR)${sysconfdir}/dnsdb/ ; \ | 
|---|
| 80 | done | 
|---|
| 81 | #       # and now munge MyDNSDB.pm so it can find the core library | 
|---|
| 82 | #       perl -pi -e 's|##uselib##|use lib "${libdir}/dnsdb";|;' $(DESTDIR)${sysconfdir}/dnsdb/MyDNSDB.pm | 
|---|
| 83 |  | 
|---|
| 84 | #clean: | 
|---|
| 85 | #       @for i in $(DIRS) ; do \ | 
|---|
| 86 | #               $(MAKE) -C $$i clean ; \ | 
|---|
| 87 | #       done | 
|---|
| 88 |  | 
|---|
| 89 | dist: | 
|---|
| 90 | mkdir $(PKGNAME)-$(VERSION) | 
|---|
| 91 | tar cf - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xf -) | 
|---|
| 92 | #/usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec | 
|---|
| 93 | /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < INSTALL > $(PKGNAME)-$(VERSION)/INSTALL | 
|---|
| 94 | perl -pi -e 's/[\d.]+;\s*##VERSION##/$(VERSION);/;' $(PKGNAME)-$(VERSION)/DNSDB.pm | 
|---|
| 95 | tar cf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION) | 
|---|
| 96 | gzip -v -f -9 $(PKGNAME)-$(VERSION).tar | 
|---|
| 97 | rm -rf $(PKGNAME)-$(VERSION) | 
|---|
| 98 | # gpg --detach-sign $(PKGNAME)-$(VERSION).tar.gz | 
|---|