r2528 - in packages/trunk/vdrift/debian: . patches

Gonéri Le Bouder goneri-guest at alioth.debian.org
Wed Apr 4 21:44:38 UTC 2007


Author: goneri-guest
Date: 2007-04-04 21:44:37 +0000 (Wed, 04 Apr 2007)
New Revision: 2528

Removed:
   packages/trunk/vdrift/debian/patches/fix_datadir.diff
Modified:
   packages/trunk/vdrift/debian/changelog
   packages/trunk/vdrift/debian/control
   packages/trunk/vdrift/debian/docs
   packages/trunk/vdrift/debian/patches/series
   packages/trunk/vdrift/debian/rules
Log:
prepare the 0.0.2007.03.23-1 release.


Modified: packages/trunk/vdrift/debian/changelog
===================================================================
--- packages/trunk/vdrift/debian/changelog	2007-04-04 19:05:41 UTC (rev 2527)
+++ packages/trunk/vdrift/debian/changelog	2007-04-04 21:44:37 UTC (rev 2528)
@@ -1,6 +1,9 @@
-vdrift (0.0.2006.10.06-2) UNRELEASED; urgency=low
+vdrift (0.0.2007.03.23-1) UNRELEASED; urgency=low
 
   [ Gonéri Le Bouder ]
+  * New upstream release
+   - Remove fix_datadir.diff
+   - Add build-dependency: libsdl-gfx1.2-dev
   * remove the Applications category from the desktop file since
     it's not an official categorie   
     http://standards.freedesktop.org/menu-spec/latest/apa.html

Modified: packages/trunk/vdrift/debian/control
===================================================================
--- packages/trunk/vdrift/debian/control	2007-04-04 19:05:41 UTC (rev 2527)
+++ packages/trunk/vdrift/debian/control	2007-04-04 21:44:37 UTC (rev 2528)
@@ -5,7 +5,7 @@
 Uploaders: Gonéri Le Bouder <goneri at rulezlan.org>
 Build-Depends: debhelper (>= 5.0.0), libsdl-dev, libsdl-image1.2-dev,
  libsdl-net1.2-dev, libopenal-dev, libalut-dev, scons, docbook-to-man,
- gettext, quilt
+ gettext, quilt, libsdl-gfx1.2-dev
 Standards-Version: 3.7.2
 
 Package: vdrift

Modified: packages/trunk/vdrift/debian/docs
===================================================================
--- packages/trunk/vdrift/debian/docs	2007-04-04 19:05:41 UTC (rev 2527)
+++ packages/trunk/vdrift/debian/docs	2007-04-04 21:44:37 UTC (rev 2528)
@@ -1,2 +1,6 @@
-docs/README
-docs/TODO
+vdrift-2007-03-23-src/docs/README
+vdrift-2007-03-23-src/docs/TODO
+vdrift-2007-03-23-src/docs/AUTHORS
+vdrift-2007-03-23-src/docs/ChangeLog
+vdrift-2007-03-23-src/docs/INSTALL
+vdrift-2007-03-23-src/docs/NEWS

Deleted: packages/trunk/vdrift/debian/patches/fix_datadir.diff
===================================================================
--- packages/trunk/vdrift/debian/patches/fix_datadir.diff	2007-04-04 19:05:41 UTC (rev 2527)
+++ packages/trunk/vdrift/debian/patches/fix_datadir.diff	2007-04-04 21:44:37 UTC (rev 2528)
@@ -1,19 +0,0 @@
-Index: vdrift-0.0.2006.10.06/src/settings.cpp
-===================================================================
---- vdrift-0.0.2006.10.06.orig/src/settings.cpp	2006-10-08 00:32:35.000000000 +0200
-+++ vdrift-0.0.2006.10.06/src/settings.cpp	2006-10-08 00:33:01.000000000 +0200
-@@ -86,12 +86,11 @@
- 		cout << "Executable path: " << br_find_exe( "/usr/share/games/vdrift/bin" ) << endl;
- 		cout << "Data dir: " << br_find_prefix( "/usr/share/games/vdrift" );
- 		cout << "/data" << endl;
--		data_directory = br_find_prefix( "/usr/share/games/vdrift" );
- 		#ifdef ENABLE_NLS
- 		cout << "Localedir: " << br_find_locale_dir( "/usr/share/locale" ) << endl;
--		locale_directory = br_find_locale_dir( "/usr/share/locale" );
-+		locale_directory = "/usr/share/locale";
- 		#endif
--		data_directory += "/data";
-+		data_directory = "/usr/share/games/vdrift/data";
- 	}
- #else
-      #ifdef ENABLE_NLS

Modified: packages/trunk/vdrift/debian/patches/series
===================================================================
--- packages/trunk/vdrift/debian/patches/series	2007-04-04 19:05:41 UTC (rev 2527)
+++ packages/trunk/vdrift/debian/patches/series	2007-04-04 21:44:37 UTC (rev 2528)
@@ -1 +0,0 @@
-fix_datadir.diff

Modified: packages/trunk/vdrift/debian/rules
===================================================================
--- packages/trunk/vdrift/debian/rules	2007-04-04 19:05:41 UTC (rev 2527)
+++ packages/trunk/vdrift/debian/rules	2007-04-04 21:44:37 UTC (rev 2528)
@@ -23,14 +23,18 @@
 build-stamp: configure-stamp 
 	dh_testdir
 	docbook-to-man debian/vdrift.sgml > debian/vdrift.6
-	scons destdir=debian/vdrift bindir=/usr/games release=1
-	scons  release=1
+	cd vdrift-2007-03-23-src && scons destdir=debian/vdrift bindir=/usr/games release=1
+#	cd vdrift-2007-03-23-src && scons  release=1
+	msgfmt -c -o vdrift-2007-03-23-src/po/nl.mo vdrift-2007-03-23-src/po/nl.po
 	touch build-stamp
 
 clean:
 	dh_testdir
 	dh_testroot
-	rm -Rf po/debian .sconsign.dblite .sconf_temp vdrift.conf build debian/vdrift
+	rm -rf vdrift-2007-03-23-src/.sconf_temp \
+		vdrift-2007-03-23-src/.sconsign.dblite \
+		vdrift-2007-03-23-src/build \
+		vdrift-2007-03-23-src/po/nl.mo
 	dh_clean
 	QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
 
@@ -42,20 +46,11 @@
 	# install is borken..
 	#scons install
 	mkdir -p debian/tmp/usr/games/
-	cp build/vdrift debian/tmp/usr/games/	
-	mkdir -p debian/tmp/usr/share/pixmaps/
-	cp debian/vdrift.xpm debian/tmp/usr/share/pixmaps/
-	mkdir -p debian/tmp/usr/share/applications
-	cp debian/vdrift.desktop debian/tmp/usr/share/applications
-	mkdir -p debian/tmp/usr/share/games/vdrift/
-	cp -R data debian/tmp/usr/share/games/vdrift/
-	find debian/tmp/usr -name 'SConscript*' -exec rm -f {} \;
-	find debian/tmp/usr -type f -exec chmod 644 {} \;
-	find debian/tmp/usr -type d -exec chmod 755 {} \;
+	cp vdrift-2007-03-23-src/build/vdrift debian/tmp/usr/games/	
 	# i18n
 	mkdir -p debian/tmp/usr/share/locale/nl/LC_MESSAGES/
-	cp po/nl.mo debian/tmp/usr/share/locale/nl/LC_MESSAGES/
-	[ NOSTRIP = 'yes' ] || strip -R .comment -R .note --strip-unneeded debian/tmp/usr/games/vdrift
+	cp vdrift-2007-03-23-src/po/nl.mo debian/tmp/usr/share/locale/nl/LC_MESSAGES/
+#	[ NOSTRIP = 'yes' ] || strip -R .comment -R .note --strip-unneeded debian/tmp/usr/games/vdrift
 
 # Build architecture-independent files here.
 binary-indep: build install




More information about the Pkg-games-commits mailing list