Author: jscinoz-guest Date: 2008-04-18 00:43:55 +0000 (Fri, 18 Apr 2008) New Revision: 6620
Added: packages/trunk/pnglite/debian/ packages/trunk/pnglite/debian/changelog packages/trunk/pnglite/debian/compat packages/trunk/pnglite/debian/control packages/trunk/pnglite/debian/copyright packages/trunk/pnglite/debian/dirs packages/trunk/pnglite/debian/patches/ packages/trunk/pnglite/debian/patches/series packages/trunk/pnglite/debian/patches/system-zlib.patch packages/trunk/pnglite/debian/rules Log: [svn-inject] Applying Debian modifications to trunk Property changes on: packages/trunk/pnglite/debian ___________________________________________________________________ Name: mergeWithUpstream + 1 Added: packages/trunk/pnglite/debian/changelog =================================================================== --- packages/trunk/pnglite/debian/changelog (rev 0) +++ packages/trunk/pnglite/debian/changelog 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1,6 @@ +pnglite (0.1.17-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- Jack Coulter <[EMAIL PROTECTED]> Fri, 18 Apr 2008 09:57:18 +1000 + Added: packages/trunk/pnglite/debian/compat =================================================================== --- packages/trunk/pnglite/debian/compat (rev 0) +++ packages/trunk/pnglite/debian/compat 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1 @@ +5 Added: packages/trunk/pnglite/debian/control =================================================================== --- packages/trunk/pnglite/debian/control (rev 0) +++ packages/trunk/pnglite/debian/control 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1,17 @@ +Source: pnglite +Priority: optional +Maintainer: Jack Coulter <[EMAIL PROTECTED]> +Build-Depends: debhelper (>= 5), quilt, zlib1g-dev +Standards-Version: 3.7.2 +Section: devel + +Package: libpnglite-dev +Section: libdevel +Architecture: any +Description: pnglite is a C library for loading PNG images. + It was created as a substitute for libpng in situations when libpng is more + than enough. It currently requires zlib for inflate and crc checking and it + can read the most common types of PNG images. The library has a small and + simple to use interface. + . + This package provides the header files and static libraries. Added: packages/trunk/pnglite/debian/copyright =================================================================== --- packages/trunk/pnglite/debian/copyright (rev 0) +++ packages/trunk/pnglite/debian/copyright 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1,36 @@ +This package was debianized by Jack Coulter <[EMAIL PROTECTED]> on +Fri, 18 Apr 2008 09:57:18 +1000. + +It was downloaded from http://www.karlings.com/~danne/pnglite/ + +Upstream Author(s): + + Daniel Karling <[EMAIL PROTECTED]> + +Copyright: + + Copyright (c) 2007 Daniel Karling + +License: libpng/zlib + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source + distribution. + +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/pnglite/debian/dirs =================================================================== --- packages/trunk/pnglite/debian/dirs (rev 0) +++ packages/trunk/pnglite/debian/dirs 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1,2 @@ +usr/bin +usr/sbin Added: packages/trunk/pnglite/debian/patches/series =================================================================== --- packages/trunk/pnglite/debian/patches/series (rev 0) +++ packages/trunk/pnglite/debian/patches/series 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1 @@ +system-zlib.patch Added: packages/trunk/pnglite/debian/patches/system-zlib.patch =================================================================== --- packages/trunk/pnglite/debian/patches/system-zlib.patch (rev 0) +++ packages/trunk/pnglite/debian/patches/system-zlib.patch 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1,13 @@ +Index: pnglite-0.1.17/pnglite.c +=================================================================== +--- pnglite-0.1.17.orig/pnglite.c 2008-04-18 10:02:44.000000000 +1000 ++++ pnglite-0.1.17/pnglite.c 2008-04-18 10:02:54.000000000 +1000 +@@ -5,7 +5,7 @@ + #define USE_ZLIB 1 + + #if USE_ZLIB +-#include "../zlib/zlib.h" ++#include <zlib.h> + #else + #include "zlite.h" + #endif Added: packages/trunk/pnglite/debian/rules =================================================================== --- packages/trunk/pnglite/debian/rules (rev 0) +++ packages/trunk/pnglite/debian/rules 2008-04-18 00:43:55 UTC (rev 6620) @@ -0,0 +1,58 @@ +#!/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 +include /usr/share/quilt/quilt.make + + + +# shared library versions, option 1 +version=2.0.5 +major=2 + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh_testdir + + gcc -Wall -c pnglite.c + ar -cvq libpnglite.a pnglite.o + + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp pnglite.o libpnglite.a + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + dh_install libpnglite.a pnglite.o usr/lib + dh_install pnglite.h usr/include + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_install + dh_strip + dh_compress + dh_fixperms + dh_shlibdeps + dh_makeshlibs + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-arch +.PHONY: build clean binary-arch binary install Property changes on: packages/trunk/pnglite/debian/rules ___________________________________________________________________ Name: svn:executable + * _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

