r10099 - in packages/trunk: . irrlicht irrlicht/debian
Gonéri Le Bouder
goneri at alioth.debian.org
Wed Jul 29 14:58:29 UTC 2009
Author: goneri
Date: 2009-07-29 14:58:29 +0000 (Wed, 29 Jul 2009)
New Revision: 10099
Added:
packages/trunk/irrlicht/
packages/trunk/irrlicht/debian/
packages/trunk/irrlicht/debian/changelog
packages/trunk/irrlicht/debian/compat
packages/trunk/irrlicht/debian/control
packages/trunk/irrlicht/debian/copyright
packages/trunk/irrlicht/debian/dirs
packages/trunk/irrlicht/debian/rules
Log:
very preliminar irrlicht package
Property changes on: packages/trunk/irrlicht/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/trunk/irrlicht/debian/changelog
===================================================================
--- packages/trunk/irrlicht/debian/changelog (rev 0)
+++ packages/trunk/irrlicht/debian/changelog 2009-07-29 14:58:29 UTC (rev 10099)
@@ -0,0 +1,6 @@
+irrlicht (1.5-1) unstable; urgency=low
+
+ * Initial release in Debian (Closes: #1111)
+
+ -- Gonéri Le Bouder <goneri at rulezlan.org> Wed, 29 Jul 2009 02:12:28 +0200
+
Added: packages/trunk/irrlicht/debian/compat
===================================================================
--- packages/trunk/irrlicht/debian/compat (rev 0)
+++ packages/trunk/irrlicht/debian/compat 2009-07-29 14:58:29 UTC (rev 10099)
@@ -0,0 +1 @@
+5
Added: packages/trunk/irrlicht/debian/control
===================================================================
--- packages/trunk/irrlicht/debian/control (rev 0)
+++ packages/trunk/irrlicht/debian/control 2009-07-29 14:58:29 UTC (rev 10099)
@@ -0,0 +1,22 @@
+Source: irrlicht
+Section: games
+Priority: extra
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Gonéri Le Bouder <goneri at rulezlan.org>
+Build-Depends:
+ cdbs,
+ debhelper (>= 5),
+ quilt
+Standards-Version: 3.8.2
+Homepage: http://irrlicht.sourceforge.net/
+
+Package: libirrlicht-dev
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: is an open source high performance realtime 3D engine
+ The Irrlicht Engine is an open source high performance realtime 3D engine
+ written and usable in C++ and also available for .NET languages. It is
+ completely cross-platform, using D3D, OpenGL and its own software renderer,
+ and has all of the state-of-the-art features which can be found in commercial
+ 3d engines.
+
Added: packages/trunk/irrlicht/debian/copyright
===================================================================
--- packages/trunk/irrlicht/debian/copyright (rev 0)
+++ packages/trunk/irrlicht/debian/copyright 2009-07-29 14:58:29 UTC (rev 10099)
@@ -0,0 +1,29 @@
+This package was debianized by João Pinto <joao.pinto at getdeb.net> 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 <joao.pinto at getdeb.net> and
+is licensed under the GPL, see above.
Added: packages/trunk/irrlicht/debian/dirs
===================================================================
--- packages/trunk/irrlicht/debian/dirs (rev 0)
+++ packages/trunk/irrlicht/debian/dirs 2009-07-29 14:58:29 UTC (rev 10099)
@@ -0,0 +1,2 @@
+usr/share/games/irrlamb
+usr/games
Added: packages/trunk/irrlicht/debian/rules
===================================================================
--- packages/trunk/irrlicht/debian/rules (rev 0)
+++ packages/trunk/irrlicht/debian/rules 2009-07-29 14:58:29 UTC (rev 10099)
@@ -0,0 +1,70 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CPPFLAGS = -Wall
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CPPFLAGS += -O0
+else
+ CPPFLAGS += -O2
+endif
+
+config-stamp:
+ QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
+ touch config-stamp
+
+build: build-stamp
+build-stamp: config-stamp
+ dh_testdir
+ cd source/Irrlicht && $(MAKE)
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ cd source/Irrlicht && $(MAKE) clean
+ QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
+ dh_clean lib/Linux/libIrrlicht.a build-stamp config-stamp
+
+install: install-stamp
+install-stamp: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+binary-indep: build install
+ dh_testdir -i
+ dh_testroot -i
+ dh_install -i
+ dh_installdocs -i readme.txt
+ dh_installchangelogs -i changes.txt
+ dh_strip -i
+ dh_compress -i
+ dh_fixperms -i
+ dh_installdeb -i
+ dh_shlibdeps -i
+ dh_gencontrol -i
+ dh_md5sums -i
+ dh_builddeb -i
+
+binary-arch: build install
+ dh_testdir -a
+ dh_testroot -a
+ dh_install -a
+ dh_installdocs -a README AUTHORS NEWS
+ dh_installmenu -a
+ dh_installchangelogs -a
+ dh_link -a
+ dh_strip -a
+ dh_compress -a
+ dh_fixperms -a
+ dh_installdeb -a
+ dh_shlibdeps -a
+ dh_gencontrol -a
+ dh_md5sums -a
+ dh_builddeb -a
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
Property changes on: packages/trunk/irrlicht/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
More information about the Pkg-games-commits
mailing list