Author: goneri Date: 2009-07-29 01:36:17 +0000 (Wed, 29 Jul 2009) New Revision: 10096
Added: packages/trunk/irrlamb/ packages/trunk/irrlamb/debian/ packages/trunk/irrlamb/debian/cdbs/ packages/trunk/irrlamb/debian/cdbs/scons-vars.mk packages/trunk/irrlamb/debian/cdbs/scons.mk packages/trunk/irrlamb/debian/changelog packages/trunk/irrlamb/debian/compat packages/trunk/irrlamb/debian/control packages/trunk/irrlamb/debian/copyright packages/trunk/irrlamb/debian/dirs packages/trunk/irrlamb/debian/docs packages/trunk/irrlamb/debian/irrlamb-data.install packages/trunk/irrlamb/debian/irrlamb.desktop packages/trunk/irrlamb/debian/irrlamb.install packages/trunk/irrlamb/debian/irrlamb.sh packages/trunk/irrlamb/debian/irrlamb.xpm packages/trunk/irrlamb/debian/patches/ packages/trunk/irrlamb/debian/patches/series packages/trunk/irrlamb/debian/patches/use_debian_libboost_filesystem-mt.diff packages/trunk/irrlamb/debian/rules Log: initial import Property changes on: packages/trunk/irrlamb/debian ___________________________________________________________________ Added: mergeWithUpstream + 1 Added: packages/trunk/irrlamb/debian/cdbs/scons-vars.mk =================================================================== --- packages/trunk/irrlamb/debian/cdbs/scons-vars.mk (rev 0) +++ packages/trunk/irrlamb/debian/cdbs/scons-vars.mk 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,52 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2005 Matthew A. Nicholson <[email protected]> +# Description: Defines useful variables for packages which have a SConstruct +# file +# +# This program 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, or (at +# your option) any later version. +# +# This program 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + + +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_scons_vars +_cdbs_class_scons_vars := 1 + +include $(_cdbs_class_path)/langcore.mk$(_cdbs_makefile_suffix) + +DEB_SCONS_ENVVARS = +DEB_SCONS_INVOKE = $(DEB_SCONS_ENVVARS) scons --directory $(DEB_BUILDDIR) CFLAGS=$(if $(CFLAGS_$(cdbs_curpkg)),"$(CFLAGS_$(cdbs_curpkg))","$(CFLAGS)") CXXFLAGS=$(if $(CXXFLAGS_$(cdbs_curpkg)),"$(CXXFLAGS_$(cdbs_curpkg))","$(CXXFLAGS)") + +# general options (passed on all scons commands) +DEB_SCONS_OPTIONS = + +# build target and options (only passed on build) +DEB_SCONS_BUILD_TARGET = +DEB_SCONS_BUILD_OPTIONS = + +# install target and options (only passed on install) +DEB_SCONS_INSTALL_TARGET = install +DEB_SCONS_INSTALL_OPTIONS = + +# clean target +DEB_SCONS_CLEAN_TARGET = . + +DEB_SCONS_CHECK_TARGET = + +endif Added: packages/trunk/irrlamb/debian/cdbs/scons.mk =================================================================== --- packages/trunk/irrlamb/debian/cdbs/scons.mk (rev 0) +++ packages/trunk/irrlamb/debian/cdbs/scons.mk 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,68 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2005 Matthew A. Nicholson <[email protected]> +# Description: Builds and cleans packages which have a SConstruct file +# +# This program 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, or (at +# your option) any later version. +# +# This program 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, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + + +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_scons +_cdbs_class_scons := 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) +#include $(_cdbs_class_path)/scons-vars.mk$(_cdbs_makefile_suffix) +include debian/cdbs/scons-vars.mk$(_cdbs_makefile_suffix) + +DEB_PHONY_RULES += scons-clean + +common-build-arch common-build-indep:: debian/stamp-scons-build +debian/stamp-scons-build: + $(DEB_SCONS_INVOKE) $(DEB_SCONS_BUILD_TARGET) $(DEB_SCONS_OPTIONS) $(DEB_SCONS_BUILD_OPTIONS) + touch debian/stamp-scons-build + +clean:: scons-clean +scons-clean:: + $(DEB_SCONS_INVOKE) $(DEB_SCONS_CLEAN_TARGET) $(DEB_SCONS_OPTIONS) --keep-going --clean || true + rm -f debian/stamp-scons-build + rm -rf .sconf_temp/ + rm -f .sconsign.dblite config.log + +common-install-arch common-install-indep:: common-install-impl +common-install-impl:: + @if test -n "$(DEB_SCONS_INSTALL_TARGET)"; then \ + echo $(DEB_SCONS_ENVVARS) scons --directory $(DEB_BUILDDIR) $(DEB_SCONS_INSTALL_TARGET); \ + $(DEB_SCONS_INVOKE) $(DEB_SCONS_INSTALL_TARGET) $(DEB_SCONS_OPTIONS) $(DEB_SCONS_INSTALL_OPTIONS); \ + else \ + echo "DEB_SCONS_INSTALL_TARGET unset, skipping default scons.mk common-install target"; \ + fi + +ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS))) +common-post-build-arch common-post-build-indep:: common-post-build-impl +common-post-build-impl:: + @if test -n "$(DEB_SCONS_CHECK_TARGET)"; then \ + echo $(DEB_SCONS_INVOKE) $(DEB_SCONS_CHECK_TARGET); \ + $(DEB_SCONS_INVOKE) $(DEB_SCONS_CHECK_TARGET) $(DEB_SCONS_OPTIONS); \ + else \ + echo "DEB_SCONS_CHECK_TARGET unset, not running checks"; \ + fi +endif + +endif Added: packages/trunk/irrlamb/debian/changelog =================================================================== --- packages/trunk/irrlamb/debian/changelog (rev 0) +++ packages/trunk/irrlamb/debian/changelog 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,39 @@ +irrlamb (0.0.5-1) unstable; urgency=low + + * Initial release in Debian (Closes: #1111) + * Thank you Joao Pinto + + -- Gonéri Le Bouder <[email protected]> Wed, 29 Jul 2009 02:12:28 +0200 + +irrlamb (0.0.5-0~getdeb1) hardy; urgency=low + + * Package for Hardy + + -- Joao Pinto <[email protected]> Tue, 06 May 2008 20:54:03 +0100 + +irrlamb (0.0.5-2~getdeb1) gutsy; urgency=low + + * Packaged by GetDeb.net + + -- Marco Rodrigues <[email protected]> Sat, 27 Oct 2007 13:47:34 +0000 + +irrlamb (0.0.5-1~getdeb1) feisty; urgency=low + + * New upstream version + + -- Joao Pinto <[email protected]> Sun, 09 Sep 2007 21:48:37 +0000 + +irrlamb (0.0.4-1~getdeb1) feisty; urgency=low + + * New upstream version + * Added libboost-date-time-dev to build deps + + -- Joao Pinto <[email protected]> Mon, 09 Jul 2007 22:52:23 +0000 + +irrlamb (0.0.3-1~getdeb1) feisty; urgency=low + + * New upstream version + * Create log file on /tmp + + -- Joao Pinto <[email protected]> Fri, 22 Jun 2007 20:01:49 +0000 + Added: packages/trunk/irrlamb/debian/compat =================================================================== --- packages/trunk/irrlamb/debian/compat (rev 0) +++ packages/trunk/irrlamb/debian/compat 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1 @@ +5 Added: packages/trunk/irrlamb/debian/control =================================================================== --- packages/trunk/irrlamb/debian/control (rev 0) +++ packages/trunk/irrlamb/debian/control 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,31 @@ +Source: irrlamb +Section: games +Priority: extra +Maintainer: Debian Games Team <[email protected]> +Uploaders: Gonéri Le Bouder <[email protected]> +Build-Depends: + cdbs, + debhelper (>= 5), + scons, + libboost-filesystem-dev, + liblua5.1-0-dev, + libaudiere-dev, + libglu1-mesa-dev, + libxxf86vm-dev, +# libxext-dev, +# libboost-date-time-dev, + quilt +Standards-Version: 3.8.2 +Homepage: http://code.google.com/p/irrlamb/ + +Package: irrlamb +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, irrlamb-data (= ${source:Version}) +Description: a 3d platform game + irrlamb is a 3D game that involves a lot of physics and frustrating gameplay. + +Package: irrlamb-data +Architecture: all +Depends: ${misc:Depends} +Description: Images, data, and music files for Irrlamb + This package includes the images, data files, and music for the game Irrlamb. Added: packages/trunk/irrlamb/debian/copyright =================================================================== --- packages/trunk/irrlamb/debian/copyright (rev 0) +++ packages/trunk/irrlamb/debian/copyright 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,29 @@ +This package was debianized by João Pinto <[email protected]> on +Fri, 22 Jun 2007 20:01:47 +0000. + +It was downloaded from http://code.google.com/p/irrlamb/downloads/list + +Upstream Author: Alan Witkowsk +Copyright: Copyright (C) 2007 Alan Witkowsk + +License: + + 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, João Pinto <[email protected]> and +is licensed under the GPL, see above. Added: packages/trunk/irrlamb/debian/dirs =================================================================== --- packages/trunk/irrlamb/debian/dirs (rev 0) +++ packages/trunk/irrlamb/debian/dirs 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,2 @@ +usr/share/games/irrlamb +usr/games Added: packages/trunk/irrlamb/debian/docs =================================================================== --- packages/trunk/irrlamb/debian/docs (rev 0) +++ packages/trunk/irrlamb/debian/docs 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,2 @@ +install.txt +readme.txt Added: packages/trunk/irrlamb/debian/irrlamb-data.install =================================================================== --- packages/trunk/irrlamb/debian/irrlamb-data.install (rev 0) +++ packages/trunk/irrlamb/debian/irrlamb-data.install 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1 @@ +art campaigns fonts levels meshes scenes scripts terrain textures *.txt usr/share/games/irrlamb Added: packages/trunk/irrlamb/debian/irrlamb.desktop =================================================================== --- packages/trunk/irrlamb/debian/irrlamb.desktop (rev 0) +++ packages/trunk/irrlamb/debian/irrlamb.desktop 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=Irrlamb +Comment=3D game that probably involves a lot of physics and frustrating gameplay +Exec=irrlamb +Icon=irrlamb +Terminal=false +Type=Application +Categories=Game; +StartupNotify=true Added: packages/trunk/irrlamb/debian/irrlamb.install =================================================================== --- packages/trunk/irrlamb/debian/irrlamb.install (rev 0) +++ packages/trunk/irrlamb/debian/irrlamb.install 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,3 @@ +irrlamb usr/lib/games/irrlamb +debian/irrlamb.xpm usr/share/pixmaps +debian/irrlamb.desktop usr/share/applications Added: packages/trunk/irrlamb/debian/irrlamb.sh =================================================================== --- packages/trunk/irrlamb/debian/irrlamb.sh (rev 0) +++ packages/trunk/irrlamb/debian/irrlamb.sh 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,3 @@ +#!/bin/sh +cd /usr/share/games/irrlamb +exec /usr/lib/games/irrlamb/irrlamb Added: packages/trunk/irrlamb/debian/irrlamb.xpm =================================================================== --- packages/trunk/irrlamb/debian/irrlamb.xpm (rev 0) +++ packages/trunk/irrlamb/debian/irrlamb.xpm 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,305 @@ +/* XPM */ +static char *irrlamb[] = { +/* columns rows colors chars-per-pixel */ +"64 64 235 2", +" c black", +". c #010101", +"X c #020202", +"o c gray1", +"O c #040404", +"+ c gray2", +"@ c #060606", +"# c #070707", +"$ c gray3", +"% c #090909", +"& c gray4", +"* c #0B0B0B", +"= c #0C0C0C", +"- c gray5", +"; c #0E0E0E", +": c gray6", +"> c #101010", +", c #111111", +"< c gray7", +"1 c #131313", +"2 c gray8", +"3 c #151515", +"4 c #161616", +"5 c gray9", +"6 c #181818", +"7 c #191919", +"8 c gray10", +"9 c #1B1B1B", +"0 c gray11", +"q c #1D1D1D", +"w c #1E1E1E", +"e c gray12", +"r c #202020", +"t c gray13", +"y c #222222", +"u c #232323", +"i c gray14", +"p c #252525", +"a c gray15", +"s c #272727", +"d c #282828", +"f c gray16", +"g c #2A2A2A", +"h c gray17", +"j c #2C2C2C", +"k c #2D2D2D", +"l c gray18", +"z c #2F2F2F", +"x c gray19", +"c c #313131", +"v c #323232", +"b c gray20", +"n c #343434", +"m c #353535", +"M c gray21", +"N c #373737", +"B c gray22", +"V c #393939", +"C c #3A3A3A", +"Z c gray23", +"A c #3C3C3C", +"S c gray24", +"D c #3E3E3E", +"F c #3F3F3F", +"G c gray25", +"H c #414141", +"J c gray26", +"K c #434343", +"L c #444444", +"P c gray27", +"I c #464646", +"U c gray28", +"Y c #484848", +"T c #494949", +"R c gray29", +"E c #4B4B4B", +"W c #4C4C4C", +"Q c gray30", +"! c #4E4E4E", +"~ c gray31", +"^ c #505050", +"/ c #515151", +"( c gray32", +") c #535353", +"_ c gray33", +"` c #555555", +"' c #565656", +"] c gray34", +"[ c #585858", +"{ c gray35", +"} c #5A5A5A", +"| c #5B5B5B", +" . c gray36", +".. c #5D5D5D", +"X. c gray37", +"o. c #5F5F5F", +"O. c #606060", +"+. c gray38", +"@. c #626262", +"#. c gray39", +"$. c #646464", +"%. c #656565", +"&. c gray40", +"*. c #676767", +"=. c #686868", +"-. c DimGray", +";. c #6A6A6A", +":. c gray42", +">. c #6C6C6C", +",. c #6D6D6D", +"<. c gray43", +"1. c #6F6F6F", +"2. c gray44", +"3. c #717171", +"4. c #727272", +"5. c gray45", +"6. c #747474", +"7. c gray46", +"8. c #767676", +"9. c #777777", +"0. c gray47", +"q. c #797979", +"w. c gray48", +"e. c #7B7B7B", +"r. c #7C7C7C", +"t. c gray49", +"y. c #7E7E7E", +"u. c gray50", +"i. c #808080", +"p. c #818181", +"a. c gray51", +"s. c #838383", +"d. c #848484", +"f. c gray52", +"g. c #868686", +"h. c gray53", +"j. c #888888", +"k. c #898989", +"l. c gray54", +"z. c #8B8B8B", +"x. c gray55", +"c. c #8D8D8D", +"v. c #8E8E8E", +"b. c gray56", +"n. c #909090", +"m. c gray57", +"M. c #929292", +"N. c #939393", +"B. c gray58", +"V. c #959595", +"C. c gray59", +"Z. c #979797", +"A. c #989898", +"S. c gray60", +"D. c #9B9B9B", +"F. c gray61", +"G. c #9D9D9D", +"H. c gray62", +"J. c #9F9F9F", +"K. c #A0A0A0", +"L. c gray63", +"P. c #A2A2A2", +"I. c gray64", +"U. c #A4A4A4", +"Y. c #A5A5A5", +"T. c gray65", +"R. c #A7A7A7", +"E. c gray66", +"W. c #A9A9A9", +"Q. c #AAAAAA", +"!. c gray67", +"~. c #ACACAC", +"^. c gray68", +"/. c #AEAEAE", +"(. c #AFAFAF", +"). c gray69", +"_. c #B1B1B1", +"`. c #B2B2B2", +"'. c gray70", +"]. c #B4B4B4", +"[. c gray71", +"{. c #B7B7B7", +"}. c #B9B9B9", +"|. c gray73", +" X c #BBBBBB", +".X c #BCBCBC", +"XX c gray74", +"oX c gray", +"OX c gray75", +"+X c #C0C0C0", +"@X c #C1C1C1", +"#X c gray76", +"$X c #C3C3C3", +"%X c gray77", +"&X c #C5C5C5", +"*X c #C6C6C6", +"=X c gray78", +"-X c #C8C8C8", +";X c gray79", +":X c #CACACA", +">X c #CBCBCB", +",X c gray80", +"<X c #CDCDCD", +"1X c #CECECE", +"2X c gray81", +"3X c #D0D0D0", +"4X c gray82", +"5X c #D2D2D2", +"6X c LightGray", +"7X c gray83", +"8X c #D5D5D5", +"9X c gray84", +"0X c #D7D7D7", +"qX c #D8D8D8", +"wX c gray85", +"eX c #DADADA", +"rX c gray86", +"tX c gainsboro", +"yX c #DDDDDD", +"uX c gray87", +"iX c #DFDFDF", +"pX c gray88", +"aX c #E1E1E1", +"sX c #E2E2E2", +"dX c gray89", +"fX c #E4E4E4", +"gX c gray90", +"hX c #E6E6E6", +"jX c #E7E7E7", +"kX c gray91", +"lX c #E9E9E9", +"zX c #EAEAEA", +"xX c gray92", +"cX c #ECECEC", +"vX c gray93", +/* pixels */ +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" @ ", +" @ @ @ @ @ @ @ @ @ $ @ @ @ @ @ $ @ ", +" @ $ $ $ ; $ @ @ @ $ $ $ $ ; ; $ $ ; $ $ @ ", +" @ @ $ ; 1 1 1 1 ; ; $ 1 5 5 7 7 5 5 5 5 1 ; ; @ @ @ ", +" @ @ $ $ 1 5 7 7 7 7 7 7 q y p p p p p y q 7 7 1 $ $ @ ", +" @ @ @ @ ; 1 5 q y p h p h h l x m m m x l h h p q 7 1 ; @ @ @ @ ", +" @ @ $ $ ; ; 1 5 y h l m m C C C S K P P K S S m x l p q 7 1 ; $ $ @ ", +" @ $ $ ; 1 5 7 q h x C K P P R R ~ ~ / / ~ ~ P P K C x h y 7 5 1 $ @ ", +" @ @ $ ; 5 7 y p l m S P / ' [ | | | | | | | [ ' / ~ K S x h y q 1 ; $ @ ", +" @ @ $ ; 5 7 y l x C K R ' | +.:.-.-.:.:.-.:.-.%.%.| ' ~ P S m l y 7 5 $ @ ", +" @ $ 1 7 y h m S P / [ +.-.5.8.w.w.w.w.w.w.w.5.:.-.+.[ ' R K m h y 5 $ @ ", +" @ @ ; 5 7 p x S P ' [ +.:.8.t.s.s.j.j.s.j.s.s.p.t.w.:.-.| / P S x h 7 1 $ @ @ @ @ @ ", +" @ @ $ ; 5 q l C P / | %.:.w.p.j.m.Z.m.Z.Z.Z.Z.m.m.j.p.t.5.-.| / R S l p 5 ; $ $ $ $ @ ", +" @ $ ; 7 y x S ~ [ %.:.w.s.z.Z.H.J.J.R.J.J.J.R.H.Z.m.s.w.:.-.| / P C l y 7 5 1 ; $ @ @ ", +" @ @ ; 1 q h m P ' +.:.8.p.z.Z.J.W.!.'.'.'.'.'.'.'.W.H.m.s.w.5.%.[ / K m l p 7 1 ; $ @ ", +" @ $ 5 y l S ~ [ %.5.p.z.Z.J.W.{.}.oXoXoX+XoXoX}.{.R.H.m.p.8.:.+.[ ~ K m h y 5 ; $ @ ", +" $ $ 5 p m K / +.:.t.j.Z.J.W.{.oX&X2X=X2X=X=X2X=X+X'.R.Z.j.p.8.-.| ' R S x y 5 1 $ @ ", +" $ ; 5 p C R [ -.w.s.m.H.R.{.oX&X2X2X6X6X6X6X6X2X2X}.!.J.m.s.w.5.%.[ / K x y 5 ; @ ", +" @ @ ; 7 l S / | :.p.j.Z.R.'.oX=X2XrXwXrXrXrXaXrXwX2X+X{.R.Z.z.p.8.-.+./ K x y 5 $ @ ", +" @ $ 5 y m P ' %.8.s.m.H.!.}.&X2XwXrXaXaXgXaXaXgXrX6X=XoX!.J.z.p.8.-.| ~ S l q 1 @ @ ", +" $ ; 7 h C R [ -.8.s.Z.R.'.+X2X6XrXaXgXgXgXlXgXlXaXrX2X+X'.H.m.s.w.-.[ ~ S l q ; @ ", +" @ $ 5 y x S ~ | :.w.j.Z.W.}.&X2XwXrXaXgXlXlXvXlXlXgXaXwX&X{.J.m.s.8.%.[ ~ C l q ; ", +" @ @ ; 5 y x K / +.:.t.j.Z.R.{.&X2XrXaXgXlXlXvXvXvXvXlXaX6X&X'.J.m.p.8.%.[ ~ S l q ; @ ", +" @ @ ; 7 p x K ~ | :.w.j.Z.R.{.+X2XrXaXaXlXvXvXvXvXlXlXaX6X&X{.J.m.p.8.-.[ ~ S l q 1 $ ", +" @ $ ; 7 y x S ~ [ -.w.s.Z.J.'.oX2XwXrXaXlXvXvXvXvXlXlXaX2X&X{.J.m.p.8.-.| ~ S l y 5 $ @ ", +" @ $ ; 5 y l S R [ %.8.p.m.H.W.}.=X6XrXaXgXgXlXvXlXlXgXrX6X+X{.J.Z.s.8.-.[ ~ K x p 5 ; @ @ ", +" @ @ @ ; 5 y h C P ' +.5.t.j.Z.W.{.+X2XwXrXrXgXgXgXgXgXaXrX2X+X'.J.m.s.w.-.| ~ K m p q 1 $ @ ", +" @ @ @ $ 1 7 p m K / +.:.w.s.Z.J.!.}.=X2X6XwXwXrXaXrXaXrXwX2X+X'.J.Z.s.w.-.| / S x p 7 1 ; @ @ ", +" @ $ ; 5 y x K ~ [ -.8.p.z.Z.R.{.}.&X2X2X6XwXwXwXwXwX2X=XoX'.J.m.s.w.-.[ ~ K x h 7 1 ; @ ", +" @ @ ; 5 q l S R ' +.:.w.s.m.H.R.'.{.oX+X+X=X2X2X2X=X&X+X}.!.H.m.p.5.%.[ R S x p q 1 ; @ @ ", +" @ $ 1 q h C P / | %.5.t.j.m.H.J.R.!.'.{.oX+X+XoX}.}.'.W.J.Z.j.t.:.+.' R C l y 7 1 ; @ ", +" @ @ $ 1 7 h m S R ' +.-.8.t.j.m.Z.H.J.R.W.W.!.!.'.!.W.R.H.Z.z.t.5.-.[ ~ S m h y 5 1 $ $ @ @ ", +" $ ; 1 7 p x C P ~ ' | -.8.t.s.j.m.Z.Z.Z.H.H.J.H.H.H.Z.m.j.t.8.-.| / P m l y 7 5 ; $ $ @ ", +" @ $ 1 7 q h x m K R [ +.-.5.w.t.p.s.j.j.z.m.Z.Z.m.z.j.s.t.5.-.| / R C x p q 5 ; ; @ @ @ ", +" @ $ 1 5 q y h l m K ~ ' +.-.:.8.w.w.t.w.p.s.j.j.j.s.t.8.:.%.| ' P S l p q 5 ; $ $ @ @ ", +" @ @ ; ; 1 5 5 7 y h m K ~ [ +.-.:.:.5.5.5.8.w.t.t.w.w.5.-.+.[ / P S x h q 5 $ $ @ @ ", +" @ @ @ $ ; ; ; 1 1 5 q h m P ~ [ +.+.%.-.-.-.:.5.5.5.8.-.%.| ' R K C x h y 7 1 @ @ @ ", +" @ $ $ $ $ $ @ $ 5 y l C P ~ ' [ | | +.+.+.-.-.-.-.| [ / R S m l p y 7 1 ; $ ", +" @ @ $ $ @ @ @ @ ; 7 p x C K ~ / ' ' ' ' ' | +.+.| ' ~ K C x h p q 7 1 ; $ @ @ ", +" @ @ @ $ 5 q p l m S R R R P R ~ / / ' / R S C l y 7 7 5 1 ; $ $ @ ", +" @ $ ; 5 q p l m C S C C S S K P R P S x l p 7 1 ; 1 $ $ @ @ @ ", +" @ $ ; 5 7 q h l x l h l x m m C m l h y 7 1 ; $ @ $ @ @ ", +" @ $ ; 1 5 q y y y 7 7 q p h h h y q 7 5 ; $ @ @ ", +" @ @ $ ; 1 5 5 1 1 ; 1 5 q 7 7 7 5 5 1 $ $ @ ", +" @ @ $ ; ; $ $ $ $ ; 1 1 1 1 ; ; $ @ @ ", +" @ @ $ $ @ @ $ @ $ $ $ $ @ @ @ ", +" @ @ @ @ @ @ @ ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" " +}; Added: packages/trunk/irrlamb/debian/patches/series =================================================================== --- packages/trunk/irrlamb/debian/patches/series (rev 0) +++ packages/trunk/irrlamb/debian/patches/series 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1 @@ +use_debian_libboost_filesystem-mt.diff Added: packages/trunk/irrlamb/debian/patches/use_debian_libboost_filesystem-mt.diff =================================================================== --- packages/trunk/irrlamb/debian/patches/use_debian_libboost_filesystem-mt.diff (rev 0) +++ packages/trunk/irrlamb/debian/patches/use_debian_libboost_filesystem-mt.diff 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,11 @@ +--- irrlamb-0.0.5.orig/SConstruct ++++ irrlamb-0.0.5/SConstruct +@@ -32,7 +32,7 @@ + env.Append(LIBPATH="./libraries/lib") + + # Libraries +-env.Append(LIBS=Split("GL GLU Irrlicht Xxf86vm Xext X11 bulletdynamics bulletcollision bulletmath audiere libboost_filesystem " + lua_name)) ++env.Append(LIBS=Split("GL GLU Irrlicht Xxf86vm Xext X11 bulletdynamics bulletcollision bulletmath audiere libboost_filesystem-mt " + lua_name)) + + # Build the program + irrlamb = env.Program("irrlamb", SOURCES) Added: packages/trunk/irrlamb/debian/rules =================================================================== --- packages/trunk/irrlamb/debian/rules (rev 0) +++ packages/trunk/irrlamb/debian/rules 2009-07-29 01:36:17 UTC (rev 10096) @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +build/irrlamb:: + scons + +install/irrlamb:: + install -m755 debian/irrlamb.sh $(CURDIR)/debian/irrlamb/usr/games/irrlamb + # Call dh_installchangelogs directly so I can put the upstrean changelog + # as a parameter and so dh_installchangelogs can install it + dh_installchangelogs changelog.txt + +clean:: + scons --clean + rm -f .sconsign.dblite Property changes on: packages/trunk/irrlamb/debian/rules ___________________________________________________________________ Added: svn:executable + * _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

