--- libgrapple-0.9.1.orig/configure.in +++ libgrapple-0.9.1/configure.in @@ -13,7 +13,7 @@ MAJOR_VERSION=1 MINOR_VERSION=0 -MICRO_VERSION=0 +MICRO_VERSION=1 INTERFACE_AGE=0 BINARY_AGE=0 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION --- libgrapple-0.9.1.orig/mkinstalldirs +++ libgrapple-0.9.1/mkinstalldirs @@ -0,0 +1,40 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy +# Author: Noah Friedman +# Created: 1993-05-16 +# Public domain + +# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ + +errstatus=0 + +for file +do + set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` + shift + + pathcomp= + for d + do + pathcomp="$pathcomp$d" + case "$pathcomp" in + -* ) pathcomp=./$pathcomp ;; + esac + + if test ! -d "$pathcomp"; then + echo "mkdir $pathcomp" + + mkdir "$pathcomp" || lasterr=$? + + if test ! -d "$pathcomp"; then + errstatus=$lasterr + fi + fi + + pathcomp="$pathcomp/" + done +done + +exit $errstatus + +# mkinstalldirs ends here --- libgrapple-0.9.1.orig/debian/changelog +++ libgrapple-0.9.1/debian/changelog @@ -0,0 +1,30 @@ +libgrapple (0.9.1-0ubuntu3) oneiric; urgency=low + + * Use dh-autoreconf so that libtool is properly rebuilt (LP: #749158). + * Use ${binary:Version} substvar rather than deprecated ${Source-Version}. + * Add ${misc:Depends}. + + -- Colin Watson Sat, 10 Sep 2011 00:56:02 +0100 + +libgrapple (0.9.1-0ubuntu2) intrepid; urgency=low + + * debian/control: + - Update Maintainer field as per spec (LP: #230350). + + -- Luca Falavigna Wed, 11 Jun 2008 22:43:41 +0200 + +libgrapple (0.9.1-0ubuntu1) feisty; urgency=low + + * New upstream release. + * ABI changed, upstream forgot to change version + - configure.in: Increment MICRO_VERSION + - debian/control: Update package name + + -- Lukas Fittl Sun, 28 Jan 2007 22:29:04 +0100 + +libgrapple (0.9-0ubuntu1) edgy; urgency=low + + * Initial release. + + -- Lukas Fittl Tue, 22 Aug 2006 21:27:21 +0200 + --- libgrapple-0.9.1.orig/debian/rules +++ libgrapple-0.9.1/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + + AUTOMAKE='automake --foreign' dh_autoreconf + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + make check + + touch $@ + +clean: + dh_testdir + dh_testroot + + rm -f build-stamp configure-stamp + + -make distclean + + dh_autoreconf_clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + make install prefix=$(CURDIR)/debian/tmp/usr + +binary-indep: build install +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- libgrapple-0.9.1.orig/debian/libgrapple-1.0-1.install +++ libgrapple-0.9.1/debian/libgrapple-1.0-1.install @@ -0,0 +1,2 @@ +debian/tmp/usr/lib/libgrapple-1.0.so.1.0.0 +debian/tmp/usr/lib/libgrapple-1.0.so.1 --- libgrapple-0.9.1.orig/debian/compat +++ libgrapple-0.9.1/debian/compat @@ -0,0 +1 @@ +5 --- libgrapple-0.9.1.orig/debian/control +++ libgrapple-0.9.1/debian/control @@ -0,0 +1,66 @@ +Source: libgrapple +Section: libs +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Lukas Fittl +Build-Depends: debhelper (>= 5.0.0), automake1.9, dh-autoreconf +Standards-Version: 3.7.2 + +Package: libgrapple-1.0-1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: a network layer designed for games + Grapple is designed to be a simple network layer, allowing the addition + of multiplayer features to a game for as little as a dozen lines of code. + . + However it is also fully featured, so if you want more from your networking, + you can have it. + . + Basic Features + * Simple client-server networking + * Keeps all clients aware of all other clients + * Passworded servers + * Data transfer via TCP, UDP, or reliable UDP + . + Advanced Features + * Network messenging by either a push or a pull model, or a mixture of both + * Multiple methods of querying users + * User Groups for client bandwidth saving + * Network load reacting data transmission and retransmission + * Background pinging to monitor network states + * Server failover + * A fully functional lobby system + . + Homepage: http://grapple.linuxgamepublishing.com/ + +Package: libgrapple-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, libgrapple-1.0-1 (= ${binary:Version}), libc6-dev | libc-dev +Description: a network layer designed for games (development files) + Grapple is designed to be a simple network layer, allowing the addition + of multiplayer features to a game for as little as a dozen lines of code. + . + However it is also fully featured, so if you want more from your networking, + you can have it. + . + Basic Features + * Simple client-server networking + * Keeps all clients aware of all other clients + * Passworded servers + * Data transfer via TCP, UDP, or reliable UDP + . + Advanced Features + * Network messenging by either a push or a pull model, or a mixture of both + * Multiple methods of querying users + * User Groups for client bandwidth saving + * Network load reacting data transmission and retransmission + * Background pinging to monitor network states + * Server failover + * A fully functional lobby system + . + This package contains the header files and static libraries needed + to build programs that use grapple. + . + Homepage: http://grapple.linuxgamepublishing.com/ --- libgrapple-0.9.1.orig/debian/copyright +++ libgrapple-0.9.1/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Lukas Fittl on +Tue, 22 Aug 2006 21:27:21 +0200 + +It was downloaded from http://grapple.linuxgamepublishing.com/ + +Upstream Authors: Michael Simms + +Copyright: Copyright (C) 2006 Michael Simms + +Licence: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; 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 Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. --- libgrapple-0.9.1.orig/debian/libgrapple-dev.install +++ libgrapple-0.9.1/debian/libgrapple-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/include +debian/tmp/usr/lib/libgrapple.so +debian/tmp/usr/lib/libgrapple.la +debian/tmp/usr/lib/libgrapple.a