ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.31
Committed: Sun Jul 1 05:00:18 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.30: +11 -12 lines
Log Message:
- upgrade crossfire trt to the GPL version 3 (hopefully correctly).
- add a single file covered by the GNU Affero General Public License
  (which is not yet released, so I used the current draft, which is
  legally a bit wavy, but its likely better than nothing as it expresses
  direct intent by the authors, and we can upgrade as soon as it has been
  released).
  * this should ensure availability of source code for the server at least
    and hopefully also archetypes and maps even when modified versions
    are not being distributed, in accordance of section 13 of the agplv3.

File Contents

# User Rev Content
1 root 1.1 #
2 root 1.31 # This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
3 root 1.30 #
4     # Copyright (©) 2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5     # Copyright (©) 2001,2007 Mark Wedel & Crossfire Development Team
6     # Copyright (©) 1992,2007 Frank Tore Johansen
7     #
8 root 1.31 # Crossfire TRT is free software: you can redistribute it and/or modify
9     # it under the terms of the GNU General Public License as published by
10     # the Free Software Foundation, either version 3 of the License, or
11     # (at your option) any later version.
12 root 1.30 #
13 root 1.31 # 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 root 1.30 #
18 root 1.31 # You should have received a copy of the GNU General Public License
19     # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 root 1.30 #
21     # The authors can be reached via e-mail to <crossfire@schmorp.de>
22 root 1.1 #
23    
24     pkgstatedir = @pkgstatedir@
25     pkgconfdir = @pkgconfdir@
26    
27 root 1.27 nobase_dist_pkgdata_DATA = artifacts def_help formulae races \
28 root 1.25 attackmess materials cf.pm jeweler.yaml
29 root 1.1
30 root 1.24 pmdir = $(pkgdatadir)/cf
31     dist_pm_DATA = cf/pod.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 motd dm_file forbid exp_table news rules config
37 root 1.26 VAR_FILES = highscore bookarch temp.maps
38 root 1.28 EXTRA_DIST = README $(CONF_FILES)
39 root 1.1
40 root 1.28 MAINTAINERCLEANFILES = Makefile.in
41 root 1.1
42     PERL = @PERL@
43    
44 root 1.25 install-data-local: jeweler.yaml
45 root 1.1 @$(NORMAL_INSTALL)
46 root 1.29 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir)/maps
47 root 1.28 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgconfdir)
48 root 1.1 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 root 1.24 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)
55 root 1.1 for i in $(VAR_FILES) ; do \
56     touch $(DESTDIR)$(pkgstatedir)/$$i ; \
57     done
58 root 1.24 @for i in datafiles players unique-items template-maps maps random db tmp; do \
59 root 1.1 if [ ! -d $(DESTDIR)$(pkgstatedir)/$$i ]; then \
60     echo "Creating directory $(pkgstatedir)/$$i"; \
61 root 1.24 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)/$$i; \
62 root 1.1 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 root 1.18 if ! [ -s "$(DESTDIR)$(pkgstatedir)/$$i" ] ; then \
81 root 1.1 rm -f $(DESTDIR)$(pkgstatedir)/$$i ; \
82     fi ; \
83     done
84    
85