Update of /cvsroot/super-tux/supertux
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32102
Modified Files:
Jamfile Jamrules
Added Files:
supertux.desktop
Removed Files:
LEVELDESIGN TRANSLATORS WORLDMAPDESIGN
Log Message:
moved some files into docs dir, install .desktop file
--- LEVELDESIGN DELETED ---
Index: Jamfile
===================================================================
RCS file: /cvsroot/super-tux/supertux/Jamfile,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- Jamfile 7 Dec 2004 18:03:03 -0000 1.8
+++ Jamfile 4 Apr 2005 13:01:02 -0000 1.9
@@ -1,24 +1,5 @@
SubDir TOP ;
-if $(XGETTEXT) != ""
-{
- actions XGetText
- {
- $(XGETTEXT) $(XGETTEXT_FLAGS) --keyword='_:1' -o $(<) $(>)
- }
- rule MakePot
- {
- if $(>) {
- XGetText $(<) : $(>) ;
- Depends $(<) : $(>) ;
- Depends all : $(<) ;
- }
- }
-} else {
- rule MakePot
- { }
-}
-
# Decend into subdirs
SubInclude TOP lib ;
SubInclude TOP src ;
@@ -31,3 +12,7 @@
MakePot data/locale/messages.pot : $(TRANSLATABLE_SOURCES) ;
XGETTEXT_FLAGS on data/locale/messages.pot += --language=C++ ;
+
+InstallPixmap data/images/supertux.png data/images/supertux.xpm ;
+InstallDesktop supertux.desktop ;
+InstallDoc NEWS README COPYING AUTHORS ChangeLog ;
--- TRANSLATORS DELETED ---
--- WORLDMAPDESIGN DELETED ---
--- NEW FILE: supertux.desktop ---
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Supertux
Comment=Classic 2D jump'n run sidescroller
Exec=supertux
Icon=tux.png
Terminal=false
Type=Application
StartupNotify=false
Categories=Application;Game;ArcadeGame;
Index: Jamrules
===================================================================
RCS file: /cvsroot/super-tux/supertux/Jamrules,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Jamrules 23 Nov 2004 16:47:22 -0000 1.1
+++ Jamrules 4 Apr 2005 13:01:02 -0000 1.2
@@ -38,3 +38,22 @@
# Include Dirs
IncludeDir $(top_builddir) ; # for config.h
IncludeDir lib src ;
+
+if $(XGETTEXT) != ""
+{
+ actions XGetText
+ {
+ $(XGETTEXT) $(XGETTEXT_FLAGS) --keyword='_:1' -o $(<) $(>)
+ }
+ rule MakePot
+ {
+ if $(>) {
+ XGetText $(<) : $(>) ;
+ Depends $(<) : $(>) ;
+ Depends all : $(<) ;
+ }
+ }
+} else {
+ rule MakePot
+ { }
+}
|