--- libnsbmp-0.0.1.orig/Makefile +++ libnsbmp-0.0.1/Makefile @@ -10,7 +10,7 @@ # Toolchain flags WARNFLAGS := -Wall -Wundef -Wpointer-arith -Wcast-align \ -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \ - -Wmissing-declarations -Wnested-externs -Werror -pedantic + -Wmissing-declarations -Wnested-externs -pedantic ifneq ($(GCCVER),2) WARNFLAGS := $(WARNFLAGS) -Wextra endif --- libnsbmp-0.0.1.orig/debian/control +++ libnsbmp-0.0.1/debian/control @@ -0,0 +1,35 @@ +Source: libnsbmp +Section: libs +Priority: optional +Maintainer: Debian/Ubuntu NetSurf Package Team +Uploaders: Daniel Silverstone , Vincent Sanders +Standards-Version: 3.8.2.0 +Build-Depends: debhelper (>= 7) + +Package: libnsbmp0 +Architecture: any +Depends: ${shlibs:Depends} +Description: NetSurf BMP decoder + libnsbmp is a decoder for the BMP image format for NetSurf applications. + +Package: libnsbmp0-dev +Architecture: any +Provides: libnsbmp-dev +Conflicts: libnsbmp-dev +Depends: libnsbmp0 (= ${binary:Version}) +Section: libdevel +Description: NetSurf BMP decoder - Development files + libnsbmp is a decoder for the BMP image format for NetSurf applications. + . + This package includes the headers and symlinks needed to build software + against libnsbmp. + +Package: libnsbmp0-dbg +Architecture: any +Depends: libnsbmp0 (= ${binary:Version}) +Section: debug +Priority: extra +Description: NetSurf BMP decoder - Debug files + libnsbmp is a decoder for the BMP image format for NetSurf applications. + . + This package provides the debugging symbols for libnsbmp0 --- libnsbmp-0.0.1.orig/debian/copyright +++ libnsbmp-0.0.1/debian/copyright @@ -0,0 +1,25 @@ +This is the pre-packaged .deb format version of the NetSurf BMP +library. It was packaged by the Debian/Ubuntu NetSurf Package Team + from sources originally published on +http://www.netsurf-browser.org/. + +Copyright (C) 2006 Richard Wilson +Copyright (C) 2008 Sean Fox + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + + * The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. --- libnsbmp-0.0.1.orig/debian/watch +++ libnsbmp-0.0.1/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://www.netsurf-browser.org/projects/libnsbmp/ \ + \.\./releases/libnsbmp-([\d\.]*)-src.tar.gz --- libnsbmp-0.0.1.orig/debian/libnsbmp0-dev.install +++ libnsbmp-0.0.1/debian/libnsbmp0-dev.install @@ -0,0 +1,3 @@ +/usr/lib/pkgconfig/* +/usr/lib/libnsbmp*.so +/usr/include/* --- libnsbmp-0.0.1.orig/debian/libnsbmp0.symbols +++ libnsbmp-0.0.1/debian/libnsbmp0.symbols @@ -0,0 +1,10 @@ +libnsbmp.so.0 libnsbmp0 #MINVER# + bmp_analyse@Base 0.0.1 + bmp_create@Base 0.0.1 + bmp_decode@Base 0.0.1 + bmp_decode_trans@Base 0.0.1 + bmp_finalise@Base 0.0.1 + ico_analyse@Base 0.0.1 + ico_collection_create@Base 0.0.1 + ico_finalise@Base 0.0.1 + ico_find@Base 0.0.1 --- libnsbmp-0.0.1.orig/debian/compat +++ libnsbmp-0.0.1/debian/compat @@ -0,0 +1 @@ +7 --- libnsbmp-0.0.1.orig/debian/changelog +++ libnsbmp-0.0.1/debian/changelog @@ -0,0 +1,14 @@ +libnsbmp (0.0.1-1.1) unstable; urgency=low + + * NMU. + * Apply patch by Ubuntu / Matthias Klose: + - Don't build with -Werror. Closes: #634414. LP: #831191. + + -- gregor herrmann Tue, 11 Oct 2011 23:36:51 +0200 + +libnsbmp (0.0.1-1) unstable; urgency=low + + * Initial release + + -- Daniel Silverstone Mon, 20 Jul 2009 13:27:28 +0200 + --- libnsbmp-0.0.1.orig/debian/libnsbmp0.install +++ libnsbmp-0.0.1/debian/libnsbmp0.install @@ -0,0 +1 @@ +/usr/lib/libnsbmp*.so.* --- libnsbmp-0.0.1.orig/debian/rules +++ libnsbmp-0.0.1/debian/rules @@ -0,0 +1,42 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh_testdir + $(MAKE) COMPONENT_TYPE=lib-shared PREFIX=/usr + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + $(MAKE) COMPONENT_TYPE=lib-shared clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) COMPONENT_TYPE=lib-shared DESTDIR=$$(pwd)/debian/tmp PREFIX=/usr install + +binary-indep: + +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installchangelogs -a + dh_installdocs -a + dh_install -a + dh_strip -a --dbg-package=libnsbmp0-dbg + dh_makeshlibs -a + dh_installdeb -a + dh_shlibdeps -a + dh_compress -a + dh_fixperms -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-arch +.PHONY: build clean binary-indep binary-arch binary install