ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.29
Committed: Sun May 27 17:45:51 2007 UTC (17 years ago) by root
Branch: MAIN
CVS Tags: rel-2_1
Changes since 1.28: +1 -0 lines
Log Message:
create maps directory when installing

File Contents

# Content
1 # Copyright (C) 2007 Marc Alexander Lehmann
2 # Copyright (C) 2001 Mark Wedel & Crossfire Development Team
3 # Copyright (C) 1992 Frank Tore Johansen
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 #
19 # The authors can be reached via e-mail to crossfire@schmorp.de
20
21 pkgstatedir = @pkgstatedir@
22 pkgconfdir = @pkgconfdir@
23
24 nobase_dist_pkgdata_DATA = artifacts def_help formulae races \
25 attackmess materials cf.pm jeweler.yaml
26
27 pmdir = $(pkgdatadir)/cf
28 dist_pm_DATA = cf/pod.pm
29
30 admdir = $(pkgdatadir)/adm
31 dist_adm_DATA = adm/map_info adm/map_expand.pl adm/mapslitter.pl adm/archsearch.pl adm/collect_images.pl
32
33 CONF_FILES = settings motd dm_file forbid exp_table news rules config
34 VAR_FILES = highscore bookarch temp.maps
35 EXTRA_DIST = README $(CONF_FILES)
36
37 MAINTAINERCLEANFILES = Makefile.in
38
39 PERL = @PERL@
40
41 install-data-local: jeweler.yaml
42 @$(NORMAL_INSTALL)
43 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir)/maps
44 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgconfdir)
45 for i in $(CONF_FILES); do \
46 if [ ! -f $(DESTDIR)$(pkgconfdir)/$$i ]; then \
47 echo "Installing $$i"; \
48 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(pkgconfdir); \
49 fi \
50 done
51 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)
52 for i in $(VAR_FILES) ; do \
53 touch $(DESTDIR)$(pkgstatedir)/$$i ; \
54 done
55 @for i in datafiles players unique-items template-maps maps random db tmp; do \
56 if [ ! -d $(DESTDIR)$(pkgstatedir)/$$i ]; then \
57 echo "Creating directory $(pkgstatedir)/$$i"; \
58 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)/$$i; \
59 fi; \
60 done
61
62 # Uninstall unchanged config/var files so make distcheck is happy
63 # but leave changed file, so no configuration/game state is lost
64 uninstall-local:
65 -for i in $(CONF_FILES); do \
66 if test ! -f $(DESTDIR)$(pkgconfdir)/$$i ; then \
67 continue ; \
68 fi ; \
69 if diff -q $(srcdir)/$$i $(DESTDIR)$(pkgconfdir)/$$i ; then \
70 rm -f $(DESTDIR)$(pkgconfdir)/$$i ; \
71 fi ; \
72 done
73 -for i in $(VAR_FILES) ; do \
74 if test ! -f $(DESTDIR)$(pkgstatedir)/$$i ; then \
75 continue ;\
76 fi ; \
77 if ! [ -s "$(DESTDIR)$(pkgstatedir)/$$i" ] ; then \
78 rm -f $(DESTDIR)$(pkgstatedir)/$$i ; \
79 fi ; \
80 done
81
82