Author: evgeni Date: 2009-05-06 21:27:46 +0000 (Wed, 06 May 2009) New Revision: 9676
Added: packages/trunk/sdlbasic/debian/patches/quickhelp.patch packages/trunk/sdlbasic/debian/patches/x-www-browser.patch Modified: packages/trunk/sdlbasic/debian/ packages/trunk/sdlbasic/debian/changelog packages/trunk/sdlbasic/debian/control packages/trunk/sdlbasic/debian/patches/datadir.patch packages/trunk/sdlbasic/debian/patches/series Log: * datadir.patch: + Fix path to help in Global.properties. (LP: #372185) + Obsolete properties.patch by correctly patching call of sdlBrt. * x-www-browser.patch: + Call x-www-browser instead of firefox, users might want another browser. * quickhelp.patch: + Fix the command for the Quick Help. * debian/control: + Update the homepage URL. * debian/: + Set svn-bp:origUrl. Property changes on: packages/trunk/sdlbasic/debian ___________________________________________________________________ Added: svn-bp:origUrl + http://pkg-games.alioth.debian.org/tarballs/sdlbasic_0.0.20070714.orig.tar.gz Modified: packages/trunk/sdlbasic/debian/changelog =================================================================== --- packages/trunk/sdlbasic/debian/changelog 2009-05-06 15:15:53 UTC (rev 9675) +++ packages/trunk/sdlbasic/debian/changelog 2009-05-06 21:27:46 UTC (rev 9676) @@ -8,6 +8,17 @@ * Add watch file. * Bump Standards Version to 3.8.1. (No changes needed). + [ Evgeni Golov ] + * datadir.patch: + + Fix path to help in Global.properties. (LP: #372185) + + Obsolete properties.patch by correctly patching call of sdlBrt. + * x-www-browser.patch: + + Call x-www-browser instead of firefox, users might want another browser. + * quickhelp.patch: + + Fix the command for the Quick Help. + * debian/control: + + Update the homepage URL. + -- Barry deFreese <[email protected]> Wed, 06 May 2009 10:58:14 -0400 sdlbasic (0.0.20070714-2) unstable; urgency=low Modified: packages/trunk/sdlbasic/debian/control =================================================================== --- packages/trunk/sdlbasic/debian/control 2009-05-06 15:15:53 UTC (rev 9675) +++ packages/trunk/sdlbasic/debian/control 2009-05-06 21:27:46 UTC (rev 9676) @@ -8,7 +8,7 @@ libsdl-net1.2-dev, libsdl-image1.2-dev, libsmpeg-dev, libgtk2.0-dev, libglib2.0-dev, libasound2-dev Standards-Version: 3.8.1 -Homepage: http://sdlbasic.sourceforge.net +Homepage: http://sdlbasic.altervista.org/main/index.php Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/sdlbasic/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/sdlbasic/?op=log Modified: packages/trunk/sdlbasic/debian/patches/datadir.patch =================================================================== --- packages/trunk/sdlbasic/debian/patches/datadir.patch 2009-05-06 15:15:53 UTC (rev 9675) +++ packages/trunk/sdlbasic/debian/patches/datadir.patch 2009-05-06 21:27:46 UTC (rev 9676) @@ -10,7 +10,7 @@ # uncomment this if you use kde and have problems with audio #ARTSDSP=artsdsp -m - SDLBRT=$(ARTSDSP) $(BASEDIR)/bin/sdlBrt -+ SDLBRT=$(ARTSDSP) $/usr/bin/sdlBrt ++ SDLBRT=$(ARTSDSP) /usr/bin/sdlBrt BROWSER=firefox command.go.*.sdlbas=$(SDLBRT) "$(FilePath)" - command.help.*.sdlbas=$(BROWSER) "file:$(BASEDIR)/share/doc/sdlBasic/english/QuickHelp.html" @@ -47,3 +47,16 @@ #endif #define PROPERTIES_EXTENSION ".properties" +Index: sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/Global.properties +=================================================================== +--- sdlbasic-0.0.20070714.orig/src/sdlBasic/share/sdlBasic/Global.properties 2009-05-06 14:12:57.000000000 +0200 ++++ sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/Global.properties 2009-05-06 14:14:48.000000000 +0200 +@@ -209,7 +209,7 @@ + if PLAT_GTK + BROWSER=firefox + #command.print.*=a2ps $(FileNameExt) +- command.scite.help=$(BROWSER) "file:$(SciteDefaultHome)/../doc/sdlBasic/english/index.html" ++ command.scite.help=$(BROWSER) "file:/usr/share/doc/sdlbasic/english/index.html" + # Internationalisation + # Japanese input code page 932 and ShiftJIS character set 128 + #code.page=932 Added: packages/trunk/sdlbasic/debian/patches/quickhelp.patch =================================================================== --- packages/trunk/sdlbasic/debian/patches/quickhelp.patch (rev 0) +++ packages/trunk/sdlbasic/debian/patches/quickhelp.patch 2009-05-06 21:27:46 UTC (rev 9676) @@ -0,0 +1,13 @@ +Index: sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/sdlBasic.properties +=================================================================== +--- sdlbasic-0.0.20070714.orig/src/sdlBasic/share/sdlBasic/sdlBasic.properties 2009-05-06 22:57:03.000000000 +0200 ++++ sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/sdlBasic.properties 2009-05-06 22:57:23.000000000 +0200 +@@ -654,7 +654,7 @@ + SDLBRT=$(ARTSDSP) /usr/bin/sdlBrt + BROWSER=x-www-browser + command.go.*.sdlbas=$(SDLBRT) "$(FilePath)" +- command.help.*.sdlbas=$(BROWSER) "file:/usr/share/doc/sdlbasic/english/QuickHelp.html" ++ command.help.*=$(BROWSER) "file:/usr/share/doc/sdlbasic/english/QuickHelp.html" + + + command.name.1.*.sdlbas=Autoindent Modified: packages/trunk/sdlbasic/debian/patches/series =================================================================== --- packages/trunk/sdlbasic/debian/patches/series 2009-05-06 15:15:53 UTC (rev 9675) +++ packages/trunk/sdlbasic/debian/patches/series 2009-05-06 21:27:46 UTC (rev 9676) @@ -4,5 +4,6 @@ fix_example.patch ldflags.patch datadir.patch -properties.patch bison_code.patch +x-www-browser.patch +quickhelp.patch Added: packages/trunk/sdlbasic/debian/patches/x-www-browser.patch =================================================================== --- packages/trunk/sdlbasic/debian/patches/x-www-browser.patch (rev 0) +++ packages/trunk/sdlbasic/debian/patches/x-www-browser.patch 2009-05-06 21:27:46 UTC (rev 9676) @@ -0,0 +1,26 @@ +Index: sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/Global.properties +=================================================================== +--- sdlbasic-0.0.20070714.orig/src/sdlBasic/share/sdlBasic/Global.properties 2009-05-06 22:55:39.000000000 +0200 ++++ sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/Global.properties 2009-05-06 22:56:02.000000000 +0200 +@@ -207,7 +207,7 @@ + command.scite.help=explorer "$(SciteDefaultHome)\..\share\doc\sdlBasic\english\index.html" + command.scite.help.subsystem=2 + if PLAT_GTK +- BROWSER=firefox ++ BROWSER=x-www-browser + #command.print.*=a2ps $(FileNameExt) + command.scite.help=$(BROWSER) "file:/usr/share/doc/sdlbasic/english/index.html" + # Internationalisation +Index: sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/sdlBasic.properties +=================================================================== +--- sdlbasic-0.0.20070714.orig/src/sdlBasic/share/sdlBasic/sdlBasic.properties 2009-05-06 22:55:15.000000000 +0200 ++++ sdlbasic-0.0.20070714/src/sdlBasic/share/sdlBasic/sdlBasic.properties 2009-05-06 22:55:31.000000000 +0200 +@@ -652,7 +652,7 @@ + # uncomment this if you use kde and have problems with audio + #ARTSDSP=artsdsp -m + SDLBRT=$(ARTSDSP) /usr/bin/sdlBrt +- BROWSER=firefox ++ BROWSER=x-www-browser + command.go.*.sdlbas=$(SDLBRT) "$(FilePath)" + command.help.*.sdlbas=$(BROWSER) "file:/usr/share/doc/sdlbasic/english/QuickHelp.html" + _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

