ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.45
Committed: Tue Jan 3 11:25:33 2012 UTC (12 years, 4 months ago) by root
Branch: MAIN
Changes since 1.44: +1 -1 lines
Log Message:
update copyrights to 2012

File Contents

# Content
1 #
2 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 #
4 # Copyright (©) 2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 # Copyright (©) 2001 Mark Wedel & Crossfire Development Team
6 # Copyright (©) 1992 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 = cf.pm
29
30 pmdir = $(pkgdatadir)/cf
31 dist_pm_DATA = cf/pod.pm cf/match.pm cf/mapscript.pm cf/incloader.pm
32
33 admdir = $(pkgdatadir)/adm
34 dist_adm_DATA = adm/map_info adm/map_expand.pl adm/mapslitter.pl adm/archsearch.pl adm/collect_images.pl
35
36 CONF_FILES = settings dm_file config
37 VAR_FILES = highscore bookarch temp.maps
38 EXTRA_DIST = README $(CONF_FILES)
39
40 MAINTAINERCLEANFILES = Makefile.in
41
42 PERL = @PERL@
43
44 install-data-local:
45 @$(NORMAL_INSTALL)
46 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir)/maps
47 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgconfdir)
48 for i in $(CONF_FILES); do \
49 if [ ! -f $(DESTDIR)$(pkgconfdir)/$$i ]; then \
50 echo "Installing $$i"; \
51 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(pkgconfdir); \
52 fi \
53 done
54 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)
55 for i in $(VAR_FILES) ; do \
56 touch $(DESTDIR)$(pkgstatedir)/$$i ; \
57 done
58 @for i in datafiles players unique-items template-maps maps random db tmp; do \
59 if [ ! -d $(DESTDIR)$(pkgstatedir)/$$i ]; then \
60 echo "Creating directory $(pkgstatedir)/$$i"; \
61 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)/$$i; \
62 fi; \
63 done
64
65 # Uninstall unchanged config/var files so make distcheck is happy
66 # but leave changed file, so no configuration/game state is lost
67 uninstall-local:
68 -for i in $(CONF_FILES); do \
69 if test ! -f $(DESTDIR)$(pkgconfdir)/$$i ; then \
70 continue ; \
71 fi ; \
72 if diff -q $(srcdir)/$$i $(DESTDIR)$(pkgconfdir)/$$i ; then \
73 rm -f $(DESTDIR)$(pkgconfdir)/$$i ; \
74 fi ; \
75 done
76 -for i in $(VAR_FILES) ; do \
77 if test ! -f $(DESTDIR)$(pkgstatedir)/$$i ; then \
78 continue ;\
79 fi ; \
80 if ! [ -s "$(DESTDIR)$(pkgstatedir)/$$i" ] ; then \
81 rm -f $(DESTDIR)$(pkgstatedir)/$$i ; \
82 fi ; \
83 done
84
85