1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
Description: Upstream changes introduced in version 0.2.0~svn50-1
This patch has been created by dpkg-source during the package build.
Here's the last changelog entry, hopefully it gives details on why
those changes were made:
.
globs (0.2.0~svn50-1) unstable; urgency=low
.
* Initial release (Closes: #510453)
.
The person named in the Author field signed this changelog entry.
Author: TANIGUCHI Takaki <takaki@debian.org>
Bug-Debian: http://bugs.debian.org/510453
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
--- globs-0.2.0~svn50.orig/SConstruct
+++ globs-0.2.0~svn50/SConstruct
@@ -7,7 +7,7 @@ if root != '' and prefix != '': # not de
if prefix[0] == '/':
prefix = prefix[1:]
-install_dir = os.path.join(root, prefix, 'share/globs/benchmarks')
+install_dir = os.path.join(root, prefix, 'lib/globs/benchmarks')
locale_dir = os.path.join(root, prefix, 'share/locale')
# run sub scripts
--- globs-0.2.0~svn50.orig/globs.desktop
+++ globs-0.2.0~svn50/globs.desktop
@@ -6,4 +6,4 @@ Exec=globs %F
Terminal=false
Type=Application
Encoding=UTF-8
-Categories=Application;System;Benchmark;
+Categories=Application;System;3DGraphics;
--- globs-0.2.0~svn50.orig/src/globs
+++ globs-0.2.0~svn50/src/globs
@@ -19,9 +19,9 @@
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
-share_dir = '..'
-locale_dir = '../po'
-bench_dir = '.'
+share_dir = '/usr/share/globs'
+locale_dir = '/usr/share/locale'
+bench_dir = '/usr/lib/globs'
import locale
import gettext
|