debian/0000775000000000000000000000000011731511625007172 5ustar debian/changelog0000664000000000000000000000170411731511625011046 0ustar globs (0.2.0~svn50-4) unstable; urgency=low * debian/control: + Add python-all to B-D. + Add VCS-* fields. * debian/rules: Add option '--with python2'. (Closes: #654997) * debian/copyright: Update Format URI. -- TANIGUCHI Takaki Mon, 19 Mar 2012 11:01:47 +0900 globs (0.2.0~svn50-3) unstable; urgency=low * control: Add python-glade2 to Depends. (Closes: #637409) * Bump Standards-Version to 3.9.2. -- TANIGUCHI Takaki Thu, 11 Aug 2011 21:14:13 +0900 globs (0.2.0~svn50-2) unstable; urgency=low * debian/control: add scons to Build-Depends. (Closes: #620265) * debian/control: add libsdl1.2-dev to BD. * debian/patches/add_libm: Add to link with libm. -- TANIGUCHI Takaki Tue, 05 Apr 2011 16:52:25 +0900 globs (0.2.0~svn50-1) unstable; urgency=low * Initial release (Closes: #510453) -- TANIGUCHI Takaki Thu, 20 Jan 2011 22:23:04 +0900 debian/clean0000664000000000000000000000103111731511625010172 0ustar .sconsign.dblite .sconf_temp/* src/benchmarks/*.o src/benchmarks/GL_shadow/gl_shadow src/benchmarks/GL_shadow/*.o src/benchmarks/GL_blit/gl_blit_ext src/benchmarks/GL_blit/*.o src/benchmarks/GL_blit/gl_blit src/benchmarks/GL_blit/*.o src/benchmarks/Fake/fake src/benchmarks/Fake/*.o src/benchmarks/GL_smoke/gl_smoke src/benchmarks/GL_smoke/*.o src/benchmarks/GL_pointz/gl_pointz src/benchmarks/GL_pointz/*.o src/benchmarks/GLSL_parallax/*.o src/benchmarks/GLSL_parallax/glsl_parallax po/*/LC_MESSAGES/*.mo config.log debian/compat0000664000000000000000000000000211731511625010370 0ustar 7 debian/control0000664000000000000000000000144611731511625010602 0ustar Source: globs Section: x11 Priority: extra Maintainer: TANIGUCHI Takaki Build-Depends: debhelper (>= 7.0.50~), scons, libsdl1.2-dev, libsdl-image1.2-dev, python-all Standards-Version: 3.9.2 Homepage: http://globs.sourceforge.net/ Vcs-Git: git://git.debian.org/collab-maint/globs.git Vcs-Browser: http://git.debian.org/?p=collab-maint/globs.git;a=summary Package: globs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python, python-glade2 Description: GL Open Benchmark Suite GL O.B.S. is based around a PyGTK interface that launches OpenGL programs feeding them with a common CLI options set which will affect their behavior, then receives back their statistical output. . It aims to provide a 3D benchmarking utility to the Linux users. debian/copyright0000664000000000000000000000211411731511625011123 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: globs Source: http://globs.sourceforge.net/ Files: * Copyright: 2006-2007 Angelo Theodorou License: GPL-2.0+ Files: debian/* Copyright: 2011 TANIGUCHI Takaki License: GPL-2.0+ License: GPL-2.0+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". debian/docs0000664000000000000000000000001411731511625010040 0ustar README TODO debian/menu0000664000000000000000000000014611731511625010062 0ustar ?package(globs):needs="X11" section="Applications/Graphics"\ title="globs" command="/usr/bin/globs" debian/patches/0000775000000000000000000000000011731511625010621 5ustar debian/patches/add_libm0000664000000000000000000000077611731511625012311 0ustar Index: globs/src/benchmarks/SConstruct =================================================================== --- globs.orig/src/benchmarks/SConstruct 2011-04-05 16:47:50.000000000 +0900 +++ globs/src/benchmarks/SConstruct 2011-04-05 16:47:48.000000000 +0900 @@ -32,6 +32,9 @@ if not conf.CheckLibWithHeader('libGL', 'GL/gl.h', 'c', 'glLoadIdentity();'): print 'Did not find libGL, exiting!' Exit(1) + if not conf.CheckLib('m'): + print 'Did not find libm, exiting!' + Exit(1) env = conf.Finish() debian/patches/fix_install_path0000664000000000000000000000375611731511625014107 0ustar 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 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: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- 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 debian/patches/series0000664000000000000000000000003211731511625012031 0ustar add_libm fix_install_path debian/rules0000775000000000000000000000105311731511625010251 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ --with python2 override_dh_auto_install: scons install root=$(CURDIR)/debian/globs prefix=usr dh_auto_install debian/shlibs.local0000664000000000000000000000005511731511625011472 0ustar libGL 1 libgl1-mesa-glx | libgl1 | fglrx-glx debian/source/0000775000000000000000000000000011731511625010472 5ustar debian/source/format0000664000000000000000000000001411731511625011700 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000006211731511625010221 0ustar version=3 http://sf.net/globs/globs-(.*)\.tar\.gz