source: trunk/Makefile@ 441

Last change on this file since 441 was 441, checked in by Kris Deugau, 14 years ago

/trunk

Remove local.css from MANIFEST entirely; it's *local*. Duh.

  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1# $Id: Makefile 441 2010-07-20 21:30:46Z kdeugau $
2# IPDB makefile
3
4PKGNAME=ipdb
5VERSION=2.6
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 -c
22INSTALL_PROGRAM = ${INSTALL}
23INSTALL_SCRIPT = ${INSTALL}
24INSTALL_DATA = ${INSTALL} -m 644
25INSTALLMODE= -m 0755
26INSTALLMODE2 = -m 0555
27
28DESTDIR =
29
30MANIFEST = \
31 INSTALL COPYING Makefile ipdb.spec \
32 \
33 addmaster.html alloctypes.html assign.html compsearch.html \
34 confirm.html confirmRemove.html editDisplay.html fb-assign.html footer.inc \
35 header.inc help.html index.shtml ipdb.css \
36 newcity.html newnode.html nodesearch.html startsn.html updated.html \
37 images/logo.png \
38 \
39 cgi-bin/combineblocks.pl cgi-bin/access-pwd-update.pl \
40 cgi-bin/newnode.cgi cgi-bin/CustIDCK.pm cgi-bin/freespace.pl \
41 cgi-bin/admin.cgi cgi-bin/MyIPDB.pm cgi-bin/IPDB.pm \
42 cgi-bin/main.cgi cgi-bin/checkcusts.pl cgi-bin/newcity.cgi \
43 cgi-bin/allocate.pl cgi-bin/search.cgi \
44 cgi-bin/snCalc.cgi cgi-bin/CommonWeb.pm cgi-bin/ipdb.psql \
45 cgi-bin/consistency-check.pl \
46 \
47 cgi-bin/extras/db2rwhois.pl cgi-bin/extras/rwhois-net-skel.tar.gz cgi-bin/extras/rwhois-config \
48 cgi-bin/extras/network.tmpl
49
50HTML = \
51 addmaster.html alloctypes.html assign.html changes.html compsearch.html \
52 confirm.html confirmRemove.html editDisplay.html fb-assign.html footer.inc \
53 header.inc help.html index.shtml ipdb.css \
54 newcity.html newnode.html nodesearch.html startsn.html updated.html
55
56IMAGES = images/logo.png
57
58SCRIPTS = \
59 cgi-bin/extras/db2rwhois.pl cgi-bin/combineblocks.pl cgi-bin/access-pwd-update.pl \
60 cgi-bin/newnode.cgi cgi-bin/freespace.pl cgi-bin/admin.cgi \
61 cgi-bin/main.cgi cgi-bin/newcity.cgi cgi-bin/allocate.pl \
62 cgi-bin/search.cgi cgi-bin/consistency-check.pl
63
64MODULES = cgi-bin/IPDB.pm
65
66CONFIGMODULES = cgi-bin/MyIPDB.pm cgi-bin/CustIDCK.pm
67
68RWHOIS = \
69 cgi-bin/extras/db2rwhois.pl cgi-bin/extras/rwhois-net-skel.tar.gz cgi-bin/extras/rwhois-config \
70 cgi-bin/extras/network.tmpl
71
72DIRS = images cgi-bin cgi-bin/extras
73
74# hmm. not sure what do do about you, m'friend...
75#ip@
76
77all:
78 # nullop
79
80install:
81 @for i in $(HTML) $(IMAGES); do \
82 $(INSTALL_DATA) -D $$i $(DESTDIR)${libdir}/ipdb-$(VERSION)/$$i ; \
83 done
84 # munge in necessary 'use lib ...' bits so scripts can find MyIPDB.pm...
85 @for i in $(SCRIPTS) $(MODULES) $(RWHOIS); do \
86 $(INSTALL_SCRIPT) -D $$i $(DESTDIR)${libdir}/ipdb-$(VERSION)/$$i ; \
87 perl -pi -e 's|##uselib##|use lib "${sysconfdir}/ipdb-$(VERSION)/";|;' $(DESTDIR)${libdir}/ipdb-$(VERSION)/$$i ; \
88 done
89 $(INSTALL) -d $(DESTDIR)${sysconfdir}/ipdb-$(VERSION)/
90 @for i in $(CONFIGMODULES) ; do \
91 $(INSTALL_DATA) $$i $(DESTDIR)${sysconfdir}/ipdb-$(VERSION)/ ; \
92 done
93 # and now munge MyIPDB.pm so it can find the core library
94 perl -pi -e 's|##uselib##|use lib "${libdir}/ipdb-$(VERSION)";|;' $(DESTDIR)${sysconfdir}/ipdb-$(VERSION)/MyIPDB.pm
95
96#clean:
97# @for i in $(DIRS) ; do \
98# $(MAKE) -C $$i clean ; \
99# done
100
101dist:
102 mkdir $(PKGNAME)-$(VERSION)
103 tar cf - $(MANIFEST) | (cd $(PKGNAME)-$(VERSION); tar xf -)
104 /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < $(PKGNAME).spec > $(PKGNAME)-$(VERSION)/$(PKGNAME).spec
105 /usr/bin/perl -p -e 's/#VERSION#/$(VERSION)/;s/#RELEASE#/$(RELEASE)/;s/#BETA#//g' < INSTALL > $(PKGNAME)-$(VERSION)/INSTALL
106 perl -pi -e 's/[\d.]+;\s*##VERSION##/$(VERSION);/;' $(PKGNAME)-$(VERSION)/cgi-bin/IPDB.pm
107 tar cf $(PKGNAME)-$(VERSION).tar $(PKGNAME)-$(VERSION)
108 gzip -v -f -9 $(PKGNAME)-$(VERSION).tar
109 rm -rf $(PKGNAME)-$(VERSION)
110 # gpg --detach-sign $(PKGNAME)-$(VERSION).tar.gz
Note: See TracBrowser for help on using the repository browser.