ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.38
Committed: Mon Oct 12 14:00:58 2009 UTC (14 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-2_81
Changes since 1.37: +7 -6 lines
Log Message:
clarify license

File Contents

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