Author: jscinoz-guest Date: 2008-06-30 09:00:38 +0000 (Mon, 30 Jun 2008) New Revision: 7595
Added: packages/trunk/ioquake3/debian/ packages/trunk/ioquake3/debian/changelog packages/trunk/ioquake3/debian/compat packages/trunk/ioquake3/debian/control packages/trunk/ioquake3/debian/copyright packages/trunk/ioquake3/debian/rules Log: [svn-inject] Applying Debian modifications to trunk Property changes on: packages/trunk/ioquake3/debian ___________________________________________________________________ Name: mergeWithUpstream + 1 Added: packages/trunk/ioquake3/debian/changelog =================================================================== --- packages/trunk/ioquake3/debian/changelog (rev 0) +++ packages/trunk/ioquake3/debian/changelog 2008-06-30 09:00:38 UTC (rev 7595) @@ -0,0 +1,6 @@ +ioquake3 (1.35+svn1400-1) unstable; urgency=low + + * Initial release (Closes: #WILLFILELATER) + + -- Jack Coulter <[EMAIL PROTECTED]> Wed, 25 Jun 2008 14:09:27 +1000 + Added: packages/trunk/ioquake3/debian/compat =================================================================== --- packages/trunk/ioquake3/debian/compat (rev 0) +++ packages/trunk/ioquake3/debian/compat 2008-06-30 09:00:38 UTC (rev 7595) @@ -0,0 +1 @@ +5 Added: packages/trunk/ioquake3/debian/control =================================================================== --- packages/trunk/ioquake3/debian/control (rev 0) +++ packages/trunk/ioquake3/debian/control 2008-06-30 09:00:38 UTC (rev 7595) @@ -0,0 +1,29 @@ +Source: ioquake3 +Section: contrib/games +Priority: optional +Maintainer: Jack Coulter <[EMAIL PROTECTED]> +Build-Depends: debhelper (>= 5.0.51~), libopenal-dev, libsdl1.2-dev +Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/ioquake3 +Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/ioquake3/?op=log +Homepage: http://www.ioquake3.org/ +Standards-Version: 3.8.0 + +Package: ioquake3 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, libcurl3 +Description: ioQuake3 game client + This package contains the latest SVN build of ioquake3, it is intended to be + used in conjunction with a game, such as openarena, quake3, worldofpadman, + urbanterror or other. + . + This package contains the game client. + +Package: ioquake3-server +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ioQuake3 dedicated server + This package contains the latest SVN build of ioquake3, it is intended to be + used in conjunction with a game, such as openarena, quake3, worldofpadman, + urbanterror or other. + . + This package contains the dedicated server. Added: packages/trunk/ioquake3/debian/copyright =================================================================== --- packages/trunk/ioquake3/debian/copyright (rev 0) +++ packages/trunk/ioquake3/debian/copyright 2008-06-30 09:00:38 UTC (rev 7595) @@ -0,0 +1,17 @@ +This package was debianized by Jack Coulter <[EMAIL PROTECTED]> on +Wed, 25 Jun 2008 14:09:27 +1000. + +It was downloaded from http://www.ioquake3.org + +Upstream Authors: + + ioQuake3.org Community + +Copyright: + + Copyright (C) 1999-2005 Id Software, Inc. + +License: GPL2 + +The Debian packaging is (C) 2008, Jack Coulter <[EMAIL PROTECTED]> and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. Added: packages/trunk/ioquake3/debian/rules =================================================================== --- packages/trunk/ioquake3/debian/rules (rev 0) +++ packages/trunk/ioquake3/debian/rules 2008-06-30 09:00:38 UTC (rev 7595) @@ -0,0 +1,91 @@ +#!/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 + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-arch +build-arch: build-arch-stamp +build-arch-stamp: + dh_testdir + BUILD_GAME_QVM=0 BUILD_GAME_SO=0 $(MAKE) $(BUILD_FLAGS) # so/qvm unneeded + +clean: + dh_testdir + dh_testroot + rm -f ioquake3 ioq3ded configure-stamp + rm -rf build + + $(MAKE) clean + + dh_clean + +install: install-indep install-arch + + +install-indep: + dh_testdir + dh_testroot + dh_clean -k -i + dh_installdirs -i + dh_install -i + dh_icons -i + +install-arch: build + dh_testdir + dh_testroot + dh_clean -k -s + dh_installdirs -s + dh_icons -s + + cp build/release*/ioquake3.* ioquake3 + cp build/release*/ioq3ded.* ioq3ded + + dh_install -pioquake3 ioquake3 usr/lib/games/ioquake3 + dh_installchangelogs -pioquake3 ChangeLog + + dh_install -pioquake3-server ioq3ded usr/lib/games/ioquake3 + dh_installchangelogs -piouake3-server ChangeLog + + +# Build architecture-independent files here. +binary-indep: install-indep + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +# Build architecture-dependent files here. +binary-arch: build-arch install-arch + $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common + +# Build architecture-dependent files here. +binary-common: + dh_testdir + dh_testroot + dh_installdocs + dh_installmenu + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch Property changes on: packages/trunk/ioquake3/debian/rules ___________________________________________________________________ Name: svn:executable + * _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

