Diff of /trunk/data/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 135 by harbaum, Wed Oct 14 11:26:50 2009 UTC revision 187 by harbaum, Mon Nov 16 13:39:00 2009 UTC
# Line 1  Line 1 
1  APP = @PACKAGE@  APP = @PACKAGE@
2    MAEMO_VERSION_MAJOR = @MAEMO_VERSION_MAJOR@
3  prefix = @prefix@  prefix = @prefix@
4  datarootdir = @datarootdir@  datarootdir = @datarootdir@
5  datadir = @datarootdir@  datadir = @datarootdir@
# Line 6  datadir = @datarootdir@ Line 7  datadir = @datarootdir@
7  LANGS = en_GB de_DE fi_FI  LANGS = en_GB de_DE fi_FI
8  LANGS_HELP = en_GB de_DE fi_FI  LANGS_HELP = en_GB de_DE fi_FI
9    
10    ICON_SIZES = 12x12 16x16 32x32 48x48 64x64 45x12 90x24
11    
12  all:  all:
13    
14  clean:  clean:
# Line 23  install-maemo: Line 26  install-maemo:
26          done          done
27          install -d $(DESTDIR)$(prefix)/share/icons/hicolor/scalable/hildon          install -d $(DESTDIR)$(prefix)/share/icons/hicolor/scalable/hildon
28          install -m 644 $(APP).64.png $(DESTDIR)$(prefix)/share/icons/hicolor/scalable/hildon/$(APP).png          install -m 644 $(APP).64.png $(DESTDIR)$(prefix)/share/icons/hicolor/scalable/hildon/$(APP).png
29          for LANG in $(LANGS_HELP); do \          if [ $(MAEMO_VERSION_MAJOR) -lt 5 ]; then \
30                  install -d $(DESTDIR)$(prefix)/share/osso-help/$${LANG} ;\                  echo "Installing hildon help files"; \
31                  install -m 644 ../help/$${LANG}/*.xml $(DESTDIR)$(prefix)/share/osso-help/$${LANG} ;\                  for LANG in $(LANGS_HELP); do \
32          done                          install -d $(DESTDIR)$(prefix)/share/osso-help/$${LANG} ;\
33                            install -m 644 ../help/$${LANG}/*.xml $(DESTDIR)$(prefix)/share/osso-help/$${LANG} ;\
34                    done;\
35            fi
36    
37  install: @INSTALL_PLATTFORM@  install: @INSTALL_PLATTFORM@
38          install -d $(DESTDIR)$(datadir)/$(APP)          install -d $(DESTDIR)$(datadir)/$(APP)
39          install -m 644 icons/*.gif icons/*.png $(DESTDIR)$(datadir)/$(APP)          install -m 644 welcome.gpx icons/*.gif icons/*.png $(DESTDIR)$(datadir)/$(APP);
40          install -m 644 welcome.gpx icons/*.png $(DESTDIR)$(datadir)/$(APP)          for SIZE in $(ICON_SIZES); do \
41                    install -d $(DESTDIR)$(datadir)/$(APP)/$${SIZE} ;\
42                    install -m 644 icons/$${SIZE}/*.png $(DESTDIR)$(datadir)/$(APP)/$${SIZE};\
43            done
44          for LANG in $(LANGS); do \          for LANG in $(LANGS); do \
45                  install -d $(DESTDIR)$(prefix)/share/locale/$${LANG}/LC_MESSAGES ;\                  install -d $(DESTDIR)$(prefix)/share/locale/$${LANG}/LC_MESSAGES ;\
46                  msgfmt ../po/$${LANG}.po -o $(DESTDIR)$(prefix)/share/locale/$${LANG}/LC_MESSAGES/$(APP).mo ;\                  msgfmt ../po/$${LANG}.po -o $(DESTDIR)$(prefix)/share/locale/$${LANG}/LC_MESSAGES/$(APP).mo ;\

Legend:
Removed from v.135  
changed lines
  Added in v.187