comparison Makefile.am @ 245:d6e02253fb76 noffle

[svn] * Makefile.am,docs/Makefile.am,packages/redhat/noffle.spec, packages/redhat/noffle-xinetd: Update RPM spec file for RH7.2. Fix up 'make install' to work properly with 'make install DESTDIR=nnnn' to enable 'make install' use in spec file. Convert from inetd to xinetd.
author bears
date Fri, 15 Mar 2002 15:25:13 +0000
parents 9fb4b7d7e64b
children 6443163104a8
comparison
equal deleted inserted replaced
244:4e69e9b722ae 245:d6e02253fb76
3 SUBDIRS = src docs packages 3 SUBDIRS = src docs packages
4 4
5 EXTRA_DIST = $(PACKAGE).conf.example 5 EXTRA_DIST = $(PACKAGE).conf.example
6 6
7 install-data-local: 7 install-data-local:
8 $(INSTALL) -m 2755 -o news -g news -d $(SPOOLDIR) 8 $(INSTALL) -m 2755 -o news -g news -d $(DESTDIR)$(SPOOLDIR)
9 $(INSTALL) -o news -g news -d $(SPOOLDIR)/data 9 $(INSTALL) -o news -g news -d $(DESTDIR)$(SPOOLDIR)/data
10 $(INSTALL) -o news -g news -d $(SPOOLDIR)/lock 10 $(INSTALL) -o news -g news -d $(DESTDIR)$(SPOOLDIR)/lock
11 $(INSTALL) -o news -g news -d $(SPOOLDIR)/requested 11 $(INSTALL) -o news -g news -d $(DESTDIR)$(SPOOLDIR)/requested
12 $(INSTALL) -o news -g news -d $(SPOOLDIR)/outgoing 12 $(INSTALL) -o news -g news -d $(DESTDIR)$(SPOOLDIR)/outgoing
13 $(INSTALL) -o news -g news -d $(SPOOLDIR)/overview 13 $(INSTALL) -o news -g news -d $(DESTDIR)$(SPOOLDIR)/overview
14 chown -R news.news $(SPOOLDIR) 14 chown -R news.news $(DESTDIR)$(SPOOLDIR)
15 $(INSTALL) -m 755 -o 0 -g 0 -d $(DOCDIR) 15 $(INSTALL) -m 755 -o 0 -g 0 -d $(DESTDIR)$(DOCDIR)
16 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/AUTHORS $(DOCDIR) 16 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/AUTHORS $(DESTDIR)$(DOCDIR)
17 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/COPYING $(DOCDIR) 17 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/COPYING $(DESTDIR)$(DOCDIR)
18 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/ChangeLog $(DOCDIR) 18 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/ChangeLog $(DESTDIR)$(DOCDIR)
19 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INSTALL $(DOCDIR) 19 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INSTALL $(DESTDIR)$(DOCDIR)
20 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NEWS $(DOCDIR) 20 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NEWS $(DESTDIR)$(DOCDIR)
21 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/README $(DOCDIR) 21 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/README $(DESTDIR)$(DOCDIR)
22 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/TODO $(DOCDIR) 22 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/TODO $(DESTDIR)$(DOCDIR)
23 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/noffle.conf.example \ 23 $(INSTALL_DATA) -D -o 0 -g 0 $(srcdir)/noffle.conf.example \
24 $(CONFIGFILE).example 24 $(DESTDIR)$(CONFIGFILE).example
25 chown news.news $(CONFIGFILE).example 25 chown news.news $(DESTDIR)$(CONFIGFILE).example
26 chmod 600 $(CONFIGFILE).example 26 chmod 600 $(DESTDIR)$(CONFIGFILE).example
27 @echo 27 @echo
28 @echo "****************************************************************" 28 @echo "****************************************************************"
29 @echo "You should now copy $(CONFIGFILE).example to $(CONFIGFILE)" 29 @echo "You should now copy $(DESTDIR)$(CONFIGFILE).example to $(CONFIGFILE)"
30 @echo "and edit that copy." 30 @echo "and edit that copy."
31 @echo "****************************************************************" 31 @echo "****************************************************************"
32 @echo 32 @echo
33 33
34 install-exec-local: 34 install-exec-local:
35 chown news.news $(bindir)/`echo $(PACKAGE)|sed '$(transform)'` 35 chown news.news $(DESTDIR)$(bindir)/`echo $(PACKAGE)|sed '$(transform)'`
36 chmod 4755 $(bindir)/`echo $(PACKAGE)|sed '$(transform)'` 36 chmod 4755 $(DESTDIR)$(bindir)/`echo $(PACKAGE)|sed '$(transform)'`
37 37
38 uninstall-local: 38 uninstall-local:
39 rm -f $(DOCDIR)/AUTHORS 39 rm -f $(DESTDIR)$(DOCDIR)/AUTHORS
40 rm -f $(DOCDIR)/COPYING 40 rm -f $(DESTDIR)$(DOCDIR)/COPYING
41 rm -f $(DOCDIR)/ChangeLog 41 rm -f $(DESTDIR)$(DOCDIR)/ChangeLog
42 rm -f $(DOCDIR)/INSTALL 42 rm -f $(DESTDIR)$(DOCDIR)/INSTALL
43 rm -f $(DOCDIR)/NEWS 43 rm -f $(DESTDIR)$(DOCDIR)/NEWS
44 rm -f $(DOCDIR)/README 44 rm -f $(DESTDIR)$(DOCDIR)/README
45 rm -f $(DOCDIR)/TODO 45 rm -f $(DESTDIR)$(DOCDIR)/TODO
46 rm -f $(CONFIGFILE).example 46 rm -f $(DESTDIR)$(CONFIGFILE).example
47 @echo 47 @echo
48 @echo "****************************************************************" 48 @echo "****************************************************************"
49 @echo "The NOFFLE spool directory $(SPOOLDIR) and the configfile" 49 @echo "The NOFFLE spool directory $(DESTDIR)$(SPOOLDIR) and the configfile"
50 @echo "$(CONFIGFILE) have *not* been removed. Please do this" 50 @echo "$(DESTDIR)$(CONFIGFILE) have *not* been removed. Please do this"
51 @echo "manually." 51 @echo "manually."
52 @echo "****************************************************************" 52 @echo "****************************************************************"
53 @echo 53 @echo
54 54