debian/0000755000000000000000000000000012162022512007157 5ustar debian/watch0000644000000000000000000000025011444561547010227 0ustar # Run the "uscan" command to check for upstream updates and more. version=2 http://www.fred.net/brv/chart/download.htm .*gdchart([\.0-9]+)dev.tar.gz debian svn-upgrade debian/control.in0000644000000000000000000000405312162022453011175 0ustar Source: libgdchart-gd2 Section: libs Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Jonas Smedegaard Build-Depends: @cdbs@ Vcs-Git: git://git.debian.org/git/collab-maint/libgdchart-gd2 Vcs-Browser: http://git.debian.org/?p=collab-maint/libgdchart-gd2.git Standards-Version: 3.9.1 Homepage: http://www.fred.net/brv/chart/ Package: libgdchart-gd2-noxpm-dev Architecture: any Section: libdevel Depends: ${devlibs:Depends}, libgdchart-gd2-noxpm (= ${binary:Version}), ${misc:Depends} Provides: libgdchart-gd2-dev Conflicts: libgdchart-gd2-dev Description: Generate graphs using the GD library (development version) A library for generating nice 2d and 3d graphs with the use of GD. . This is the full development version of the library, built against GD 2.x library and without XPM (X pixmap) support. Package: libgdchart-gd2-xpm-dev Architecture: any Section: libdevel Depends: ${devlibs:Depends}, libgdchart-gd2-xpm (= ${binary:Version}), ${misc:Depends} Provides: libgdchart-gd2-dev Conflicts: libgdchart-gd2-dev Description: Generate graphs using the GD library (development version) A library for generating nice 2d and 3d graphs with the use of GD. . This is the full development version of the library, built against GD 2.x library and with XPM (X pixmap) support. Package: libgdchart-gd2-noxpm Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: libgdchart Conflicts: libgdchart Description: Generate graphs using the GD library A library for generating nice 2d and 3d graphs with the use of GD. . This is the runtime package of the library, built against GD 2.x library and without XPM (X pixmap) support. Package: libgdchart-gd2-xpm Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: libgdchart Conflicts: libgdchart Description: Generate graphs using the GD library A library for generating nice 2d and 3d graphs with the use of GD. . This is the runtime package of the library, built against GD 2.x library and with XPM (X pixmap) support. debian/rules0000755000000000000000000001317612161267461010264 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2004-2007 Jonas Smedegaard include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/class/makefile-vars.mk include /usr/share/cdbs/1/rules/debhelper.mk package=libgdchart-gd2 library=libgdc DEB_UPSTREAM_URL = http://www.fred.net/brv/chart DEB_UPSTREAM_PACKAGE = gdchart DEB_UPSTREAM_TARBALL_BASENAME = $(DEB_UPSTREAM_PACKAGE)$(DEB_UPSTREAM_TARBALL_VERSION)dev DEB_UPSTREAM_TARBALL_MD5 = a4af7bc927d8b88934da56fce10a7a3c DEB_DH_MAKESHLIBS_ARGS_$(package)-xpm = -V'$(package)-xpm' DEB_DH_MAKESHLIBS_ARGS_$(package)-noxpm = -V'$(package)-noxpm | $(package)-xpm' DEB_INSTALL_DIRS_ALL = usr/lib DEB_INSTALL_DIRS_$(package)-xpm-dev = usr/include DEB_INSTALL_DIRS_$(package)-noxpm-dev = usr/include DEB_INSTALL_EXAMPLES_$(package)-xpm-dev = gdc_samp1.c gdc_samp2.c gdc_pie_samp.c ft_samp.c DEB_INSTALL_EXAMPLES_$(package)-noxpm-dev = gdc_samp1.c gdc_samp2.c gdc_pie_samp.c ft_samp.c # Dummy main build target (we build multiple targets) DEB_BUILD_MAKE_TARGET = clean version := $(shell expr `pwd` : '.*-\([0-9.]*\)') version_major := $(shell expr `pwd` : '.*-\([0-9]*\).[0-9.]*') INCLUDEDIRS = -I. -I.. -I/usr/include/freetype2 -I/usr/include/freetype2/freetype LIBS = -lc -lm -L/usr/lib -lpng -lz -ljpeg -lfreetype -lgd CFLAGS += -D_REENTRANT -pipe -DHAVE_LIBPNG -DHAVE_LIBFREETYPE -DHAVE_LIBJPEG -fsigned-char CFLAGS_$(package)-xpm = $(CFLAGS) -fPIC -DHAVE_XPM CFLAGS_$(package)-noxpm = $(CFLAGS) -fPIC CFLAGS_$(package)-xpm-dev = $(CFLAGS) -DHAVE_XPM CFLAGS_$(package)-noxpm-dev = $(CFLAGS) # Build shared libc6 library. build/$(package)-xpm:: make clean dh_testdir -mkdir $(package)-xpm cd $(package)-xpm && \ $(DEB_MAKE_INVOKE) -f ../Makefile VPATH=".." srcdir=".." \ INCLUDEDIRS="$(INCLUDEDIRS) -I/usr/include/X11" \ $(library).a cd $(package)-xpm && \ gcc -shared -D_REENTRANT \ -Wl,-soname,$(library).so.$(version_major) \ -o $(library).so.$(version) \ `echo *.o` \ $(LIBS) -L/usr/X11R6/lib -lXpm -lX11 # Build shared libc6 library without XPM support. build/$(package)-noxpm:: make clean dh_testdir -mkdir $(package)-noxpm cd $(package)-noxpm && \ $(DEB_MAKE_INVOKE) -f ../Makefile VPATH=".." srcdir=".." \ INCLUDEDIRS="$(INCLUDEDIRS)" \ $(library).a cd $(package)-noxpm && \ gcc -shared -D_REENTRANT \ -Wl,-soname,$(library).so.$(version_major) \ -o $(library).so.$(version) \ `echo *.o` \ $(LIBS) # Build static libc6 library. build/$(package)-xpm-dev:: make clean dh_testdir -mkdir $(package)-xpm-dev cd $(package)-xpm-dev && \ $(DEB_MAKE_INVOKE) -f ../Makefile VPATH=".." srcdir=".." \ INCLUDEDIRS="$(INCLUDEDIRS) -I/usr/include/X11" \ $(library).a # Build static libc6 library without XPM support. build/$(package)-noxpm-dev:: make clean dh_testdir -mkdir $(package)-noxpm-dev cd $(package)-noxpm-dev && \ $(DEB_MAKE_INVOKE) -f ../Makefile VPATH=".." srcdir=".." \ INCLUDEDIRS="$(INCLUDEDIRS)" \ $(library).a clean:: rm -rf $(package)-xpm $(package)-noxpm $(package)-xpm-dev $(package)-noxpm-dev binary-install/$(package)-xpm:: install -m644 $(package)-xpm/$(library).so.$(version) debian/$(package)-xpm/usr/lib/ ln -sf $(library).so.$(version) debian/$(package)-xpm/usr/lib/$(library).so.$(version_major) binary-install/$(package)-noxpm:: install -m644 $(package)-noxpm/$(library).so.$(version) debian/$(package)-noxpm/usr/lib/ ln -sf $(library).so.$(version) debian/$(package)-noxpm/usr/lib/$(library).so.$(version_major) binary-install/$(package)-xpm-dev:: install -m644 $(package)-xpm-dev/$(library).a debian/$(package)-xpm-dev/usr/lib install -m644 *.h debian/$(package)-xpm-dev/usr/include ln -sf $(library).so.$(version) debian/$(package)-xpm-dev/usr/lib/$(library).so binary-install/$(package)-noxpm-dev:: install -m644 $(package)-noxpm-dev/$(library).a debian/$(package)-noxpm-dev/usr/lib install -m644 *.h debian/$(package)-noxpm-dev/usr/include ln -sf $(library).so.$(version) debian/$(package)-noxpm-dev/usr/lib/$(library).so # Let d-shlibs calculate development package dependencies # Suppress pre-sarge X11 fallback dependencies (bugreport not yet filed) # Favor -noxpm flavor of libgd, as we don't actually use the XPM calls ### TODO: Let d-shlibs intelligently handle shared library install ##common-binary-post-install-arch:: ## d-shlibmove --commit --movedev "*.h" usr/include/ $(package)-xpm/$(library).so binary-fixup/$(package)-xpm-dev:: d-devlibdeps \ --override 's/ | xlibs-dev (<< 4.3.0)//' \ --override 's/libgd-dev/libgd2-noxpm-dev | libgd-dev/' \ --override 's/libgd3-dev/libgd-dev/' \ debian/$(package)-xpm-dev.substvars $(package)-xpm/$(library).so.$(version) binary-fixup/$(package)-noxpm-dev:: d-devlibdeps \ --override 's/ | xlibs-dev (<< 4.3.0)//' \ --override 's/libgd-dev/libgd2-noxpm-dev | libgd-dev/' \ --override 's/libgd3-dev/libgd-dev/' \ debian/$(package)-noxpm-dev.substvars $(package)-noxpm/$(library).so.$(version) # Little hack to have CDBS recognize readme.txt as main README file. common-install-arch common-install-indep:: cp -fp README.txt README clean:: rm -f README # Needed by upstream build process for all flavors CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), libgd2-noxpm-dev (>> 2.0.28) # Needed by upstream build process for xpm flavor CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), libxpm-dev, libxt-dev # Needed for our packaging # We need the fix for bug#440728 to fix bug#427326 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), d-shlibs (>= 0.35) # Fix double cdbs build-dependencies CDBS_BUILD_DEPENDS := $(shell echo '$(CDBS_BUILD_DEPENDS)' | sed -e '/\bcdbs (>= 0.4.39)/ s/ *,* *\bcdbs (>= \(0.4.23-1.1\|0.4.27\)) *,* */, /g' -e 's/^ *, *//' -e 's/ *, *$$//') debian/copyright0000644000000000000000000000374011444561547011140 0ustar This is GDChart packaged for Debian/GNU systems. Upstream source: http://www.fred.net/brv/chart/ Upstream Author: Bruce Verderaime General copyright and licensing info: Permission has been granted to copy, distribute and modify GDChart in any context without fee, including a commercial application, provided that this notice is present in user-accessible supporting documentation. This does not affect your ownership of the derived work itself, and the intent is to assure proper credit for the authors of GDChart, not to interfere with your productive use of GDChart. If you have questions, ask. "Derived works" includes all programs that utilize the library. Credit must be given in user-accessible documentation. This software is provided "AS IS." The copyright holders disclaim all warranties, either express or implied, including but not limited to implied warranties of merchantability and fitness for a particular purpose, with respect to this code and accompanying documentation. Copyright and licensing info, "gifencode.c": /* Code drawn from ppmtogif.c, from the pbmplus package ** ** Based on GIFENCOD by David Rowley . A ** Lempel-Zim compression based on "compress". ** ** Modified by Marcel Wijkstra ** ** Copyright (C) 1989 by Jef Poskanzer. ** ** Permission to use, copy, modify, and distribute this software and its ** documentation for any purpose and without fee is hereby granted, provided ** that the above copyright notice appear in all copies and that both that ** copyright notice and this permission notice appear in supporting ** documentation. This software is provided "as is" without express or ** implied warranty. ** ** The Graphics Interchange Format(c) is the Copyright property of ** CompuServe Incorporated. GIF(sm) is a Service Mark property of ** CompuServe Incorporated. * * Heavily modified by Mouse, 1998-02-12. * Remove LZW compression. * Added miGIF run length compression. * */ debian/copyright_hints0000644000000000000000000000105511444561547012342 0ustar UNKNOWN [Bruce Verderaime 1998-2004 */]: gdc.c gdc.h gdc_pie.c gdc_pie_samp.c gdc_samp1.c gdc_samp2.c gdchart.c gdchart.h gdcpie.h price_conv.c *No copyright* UNKNOWN []: Makefile ft_samp.c ft_samp.sav UNKNOWN [Bruce Verderaime 2002-2004 */]: array_alloc.c array_alloc.h UNKNOWN [1999-2002 John / 1996-2002 by / STATEMENT FOLLOWS THIS LINE / holders disclaim all warranties, either express or implied, including but / 1999-2002 / 1999-2002 Greg / 2001-2002 John Ellson / 1994-1997 / 1994-2001 / 2000 / Bruce Verderaime 1998-2004 */]: README.txt debian/source/0000755000000000000000000000000011444561547010501 5ustar debian/source/format0000644000000000000000000000001411444561547011707 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012162022453010612 5ustar debian/patches/1002_saner_makefile.patch0000644000000000000000000000074212162022453015245 0ustar --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ -lgdc -lgd -lz -lpng $(LIBS) -lm # --- compile the lib --- -gdc.h: $(GD_INCL)gd.h $(GD_INCL)gdfonts.h $(GD_INCL)gdfontt.h $(GD_INCL)gdfontmb.h $(GD_INCL)gdfontg.h $(GD_INCL)gdfontl.h $(GDC_INCL)array_alloc.h +gdc.h: #$(GD_INCL)gd.h $(GD_INCL)gdfonts.h $(GD_INCL)gdfontt.h $(GD_INCL)gdfontmb.h $(GD_INCL)gdfontg.h $(GD_INCL)gdfontl.h $(GDC_INCL)array_alloc.h #price_conv.o: price_conv.c # $(CC) $(CFLAGS) -c price_conv.c debian/patches/series0000644000000000000000000000006312162022453012026 0ustar 1001_sane_makefile.patch 1002_saner_makefile.patch debian/patches/README0000644000000000000000000000021111444561547011502 0ustar 0xxx: Grabbed from upstream development. 1xxx: Possibly relevant for upstream adoption. 2xxx: Only relevant for official Debian release. debian/patches/1001_sane_makefile.patch0000644000000000000000000000526711444561547015107 0ustar --- libgdchart-gd2-0.11.5.orig/Makefile +++ libgdchart-gd2-0.11.5/Makefile @@ -1,4 +1,3 @@ -CC=gcc # gcc 2.7.1 or better is required # CFLAGS= # CFLAGS=-g -ansi -pedantic @@ -9,18 +8,20 @@ GDC_LIB=libgdc.a # ----- install locations ----- -PREFIX_INC = /usr/local/include -PREFIX_LIB = /usr/local/lib +PREFIX_INC = $(DESTDIR)/usr/include +PREFIX_LIB = $(DESTDIR)/usr/lib -# INCLUDEDIRS=-I. -I/usr/include/freetype2 -I/usr/include/X11 -I/usr/X11R6/include/X11 -I/usr/local/include +INCLUDEDIRS=-I. -I/usr/include/freetype2 -I/usr/include/X11 -I/usr/X11R6/include/X11 -I/usr/local/include +CC=gcc $(INCLUDEDIRS) # ----- lib gd ----- # GDChart requires the gd library - www.boutell.com/gd/ # gd 2.0.28 or better is required (GIF support has returned to libgd) # if it's not installed in a standard location edit these lines for your installation -GD_INCL=/usr/local/include/ -GD_LD=/usr/local/lib/ -GD_LIB=libgd.so +#GD_INCL=/usr/local/include/ +#GD_LD=/usr/local/lib/ +#GD_LIB=libgd.so +GD_LK = -lgd # a static libgd is also available # GD_LIB=libgd.a @@ -49,9 +50,9 @@ FT_LK = -lfreetype DEFS = $(FT_DEF) $(JPEG_DEF) -LIBS = $(FT_LK) $(JPEG_LK) +LIBS = $(GD_LK) $(FT_LK) $(JPEG_LK) -LIB_PATHS = -L$(GD_LD) -L$(GDC_LD) +LIB_PATHS = -L$(GDC_LD) # if not installed in standard paths (/lib, /usr/lib), or LD_LIBRARY_PATH # LIB_PATHS = -L$(GD_LD) -L$(PNG_LD) -L$(ZLIB_LD) -L$(JPEG_LD) @@ -109,20 +110,20 @@ # --- compile the lib --- gdc.h: $(GD_INCL)gd.h $(GD_INCL)gdfonts.h $(GD_INCL)gdfontt.h $(GD_INCL)gdfontmb.h $(GD_INCL)gdfontg.h $(GD_INCL)gdfontl.h $(GDC_INCL)array_alloc.h -price_conv.o: price_conv.c - $(CC) $(CFLAGS) -c price_conv.c +#price_conv.o: price_conv.c +# $(CC) $(CFLAGS) -c price_conv.c -gdc.o: gdc.c $(GDC_INCL)gdc.h - $(CC) $(CFLAGS) -I$(GD_INCL) -I$(GDC_INCL) $(DEFS) -c gdc.c +#gdc.o: gdc.c $(GDC_INCL)gdc.h +# $(CC) $(CFLAGS) -I$(GD_INCL) -I$(GDC_INCL) $(DEFS) -c gdc.c -gdc_pie.o: $(GDC_INCL)gdc.h $(GDC_INCL)gdcpie.h gdc_pie.c - $(CC) $(CFLAGS) -I$(GD_INCL) -I$(GDC_INCL) $(DEFS) -c gdc_pie.c +#gdc_pie.o: $(GDC_INCL)gdc.h $(GDC_INCL)gdcpie.h gdc_pie.c +# $(CC) $(CFLAGS) -I$(GD_INCL) -I$(GDC_INCL) $(DEFS) -c gdc_pie.c -gdchart.o: $(GDC_INCL)gdc.h $(GDC_INCL)gdchart.h gdchart.c - $(CC) $(CFLAGS) -I$(GD_INCL) -I$(GDC_INCL) $(DEFS) -c gdchart.c +#gdchart.o: $(GDC_INCL)gdc.h $(GDC_INCL)gdchart.h gdchart.c +# $(CC) $(CFLAGS) -I$(GD_INCL) -I$(GDC_INCL) $(DEFS) -c gdchart.c -array_alloc.o: array_alloc.c array_alloc.h - $(CC) $(CFLAGS) -c array_alloc.c +#array_alloc.o: array_alloc.c array_alloc.h +# $(CC) $(CFLAGS) -c array_alloc.c libgdc.a: price_conv.o gdc.o gdc_pie.o gdchart.o array_alloc.o ar cr libgdc.a gdc.o gdchart.o gdc_pie.o price_conv.o array_alloc.o debian/compat0000644000000000000000000000000211444561547010377 0ustar 6 debian/control0000644000000000000000000000424512162022455010575 0ustar Source: libgdchart-gd2 Section: libs Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Jonas Smedegaard Build-Depends: cdbs (>= 0.4.70~), debhelper (>= 6), dh-buildinfo, libgd2-noxpm-dev (>> 2.0.28), libxpm-dev, libxt-dev, d-shlibs (>= 0.35) Vcs-Git: git://git.debian.org/git/collab-maint/libgdchart-gd2 Vcs-Browser: http://git.debian.org/?p=collab-maint/libgdchart-gd2.git Standards-Version: 3.9.1 Homepage: http://www.fred.net/brv/chart/ Package: libgdchart-gd2-noxpm-dev Architecture: any Section: libdevel Depends: ${devlibs:Depends}, libgdchart-gd2-noxpm (= ${binary:Version}), ${misc:Depends} Provides: libgdchart-gd2-dev Conflicts: libgdchart-gd2-dev Description: Generate graphs using the GD library (development version) A library for generating nice 2d and 3d graphs with the use of GD. . This is the full development version of the library, built against GD 2.x library and without XPM (X pixmap) support. Package: libgdchart-gd2-xpm-dev Architecture: any Section: libdevel Depends: ${devlibs:Depends}, libgdchart-gd2-xpm (= ${binary:Version}), ${misc:Depends} Provides: libgdchart-gd2-dev Conflicts: libgdchart-gd2-dev Description: Generate graphs using the GD library (development version) A library for generating nice 2d and 3d graphs with the use of GD. . This is the full development version of the library, built against GD 2.x library and with XPM (X pixmap) support. Package: libgdchart-gd2-noxpm Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: libgdchart Conflicts: libgdchart Description: Generate graphs using the GD library A library for generating nice 2d and 3d graphs with the use of GD. . This is the runtime package of the library, built against GD 2.x library and without XPM (X pixmap) support. Package: libgdchart-gd2-xpm Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: libgdchart Conflicts: libgdchart Description: Generate graphs using the GD library A library for generating nice 2d and 3d graphs with the use of GD. . This is the runtime package of the library, built against GD 2.x library and with XPM (X pixmap) support. debian/gbp.conf0000644000000000000000000000014611444561547010621 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/changelog0000644000000000000000000002314012162022512011031 0ustar libgdchart-gd2 (0.11.5-7.1ubuntu1) saucy; urgency=low * Resynchronise with Debian. Remaining changes: - gdc.h: Remove make dependencies on system headers. -- Colin Watson Mon, 24 Jun 2013 11:53:59 +0100 libgdchart-gd2 (0.11.5-7.1) unstable; urgency=low * Non-maintainer upload. * Tell d-devlibdeps that "libgd3-dev" is really called libgd-dev (closes: #709040). -- Colin Watson Sat, 22 Jun 2013 10:32:58 +0100 libgdchart-gd2 (0.11.5-7ubuntu4) saucy; urgency=low * Tell d-devlibdeps that "libgd3-dev" is really called libgd-dev. -- Colin Watson Mon, 20 May 2013 12:33:15 +0100 libgdchart-gd2 (0.11.5-7ubuntu3) saucy; urgency=low * Rebuild for libgd3. -- Colin Watson Mon, 20 May 2013 00:03:46 +0100 libgdchart-gd2 (0.11.5-7ubuntu2) oneiric; urgency=low * gdc.h: Remove make dependencies on system headers. LP: #831241. -- Matthias Klose Thu, 15 Sep 2011 09:55:00 +0200 libgdchart-gd2 (0.11.5-7ubuntu1) maverick; urgency=low * debian/rules: + include makefile.mk defenition of cdbs to really fix FTBFS. Thanks to Fabrice Coutadeur for the intimation (This package can be synced again when cdbs 0.4.89 hits our archives) -- Bhavani Shankar Fri, 24 Sep 2010 09:38:02 +0530 libgdchart-gd2 (0.11.5-7) unstable; urgency=low * Drop local CDBS snippets: All included in main cdbs package now. Local snippets might have been incompatible with recent releases of cdbs and contribute to a FTBFS. Closes: bug#564374. Thanks to Lucas Nussbaum and Philipp Kern. * Tighten build-dependency on cdbs and debhelper. * Switch to source format 3.0 (quilt). * Bump standards-version to 3.9.1. * Build-depend on dh-buildinfo. * Fix depend on ${misc:Depends}, thanks to lintian. * Development moved to Git: + Update Vcs-* stanzas. + Add git-buildpackage config, enabling sign-tags and pristine-tar. -- Jonas Smedegaard Fri, 17 Sep 2010 05:42:23 +0200 libgdchart-gd2 (0.11.5-6) unstable; urgency=medium * Set urgency=medium as last packaging included a FTBFS bugfix (similar to bug#487066). -- Jonas Smedegaard Sat, 28 Jun 2008 20:50:23 +0200 libgdchart-gd2 (0.11.5-5) unstable; urgency=low * Invoke svn-upgrade (not uupdate) in debian/watch. * Move Vcs-* and Homepage to own fields in debian/control. * Update local cdbs tweaks: + Major updates to copyright-check.mk, most importantly relax to only warn by default. + Drop buildcore.mk (set hints manually instead as needed). + Various updates to update-tarball.mk, including changed wget options to work with recent versions of wget. + Cosmetic updates to README.cdbs-tweaks. + Update dependency cleanup to strip cdbs 0.4.27 (not 0.4.27-1). * Update debian/copyright-hints. * Bump debhelper compatibility level to 6. * Semi-auto-update debian/control to update build-dependencies: DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean -- Jonas Smedegaard Sat, 28 Jun 2008 17:37:51 +0200 libgdchart-gd2 (0.11.5-4) unstable; urgency=low * Add XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control. * Bump standards-version to 3.7.2 (no changes needed). * Tighten d-shlibs build-dependency and adjust -noxpm override, to fix resolving -dev dependencies with recent libgd2 releases. Closes: bug#427326, thanks to Lucas Nussbaum and Luis Rodrigo Gallardo Cruz. * Drop deprecated fallback build-dependencies on xfree86 packages, and override similar dependencies resolved by d-shlibs. * Update CDBS tweaks: + Add new upstream-tarball.mk: Add get-orig-source target and more. + Add new copyright-check.mk: Fail building if source contains new or changed copyrights. + Update buildinfo.mk: Fix touchfile to run only once. + Add new buildcore.mk: Enable auto-updating build-dependencies in debian/control when DEB_BUILD_OPTIONS contains cdbs-autoupdate (replacing similar custom tweak in debian/rules). + Add README.cdbs-tweaks documenting the added tweaks. + Advertise README.cdbs-tweaks in debian/rules. + Use patchsys-quilt (instead of simple-patchsys). + Declare (and strip duplicate) build-dependencies in debian/rules. * Use binNMU-safe ${binary:Version} (not ${Source-Version}) in debian/control. * Semi-auto-update debian/control: DEB_BUILD_OPTIONS=cdbs-autoupdate fakeroot debian/rules pre-build -- Jonas Smedegaard Wed, 05 Sep 2007 13:09:48 +0200 libgdchart-gd2 (0.11.5-3) unstable; urgency=low * Raise to standards version 3.6.2 (no changes needed). * Only use cdbs debian/control auto-build when environment includes DEB_BUILD_OPTIONS=update. * Auto-update build-dependencies (and manually strip build-essential). -- Jonas Smedegaard Sat, 16 Jul 2005 08:45:08 +0200 libgdchart-gd2 (0.11.5-2) unstable; urgency=low * Add build-dependency on cdbs (how embarrassing!). Closes: bug#301334 (thanks to Kurt Roeckx ). * Use cdbs auto-update feature. -- Jonas Smedegaard Sun, 27 Mar 2005 17:00:49 +0200 libgdchart-gd2 (0.11.5-1) unstable; urgency=low * New upstream release. * Repackage using cdbs (fixes broken dependencies of -dev packages). * Tightened libgd2 build-dependency. * Tightened d-devlibdeps build-dependency (local hack is adopted now). -- Jonas Smedegaard Sat, 26 Mar 2005 04:55:14 +0100 libgdchart-gd2 (0.11.4-6) unstable; urgency=low * Build-depend on libxpm-dev and libxt-dev, with fallback to the older xlibs-dev. * Temporarily use local hacked d-devlibdeps that correctly (more or less, but at least better than before) resolve the recent X11 package split (bugreport filed against devlibs). * Add usage hint to watch file. * Updated debian/copyright: + Drop info included in debian/changelog. + Mention "Debian/GNU systems". + Replace "Copyright" with "Copyright and licensing info". -- Jonas Smedegaard Fri, 24 Sep 2004 00:05:37 +0200 libgdchart-gd2 (0.11.4-5) unstable; urgency=low * Have the -dev packages depend on libgd2-XXX-dev (instead of libgd- XXX-dev). * Use (and build-depend on) d-shlibs to calculate -dev dependencies (some dependencies were pulled in from others but not explicitly declared). * Correctly add -dev packages as binary targets (needed above). * Standards-version 3.6.1 (no changes needed). -- Jonas Smedegaard Sun, 11 Jan 2004 07:27:36 +0100 libgdchart-gd2 (0.11.4-4) unstable; urgency=low * Rebuild against latest libpng12. * Standards-version 3.6.0. * Add watch file. * Use (and build-depend on) dh-buildinfo. -- Jonas Smedegaard Mon, 4 Aug 2003 12:05:24 +0200 libgdchart-gd2 (0.11.4-3) unstable; urgency=low * Whoops - build-depend on xlibs-dev again (closes: Bug#189110). -- Jonas Smedegaard Tue, 15 Apr 2003 16:12:32 +0200 libgdchart-gd2 (0.11.4-2) unstable; urgency=low * Tighten build-dependency on libgd2 to ones with proper dependencies to inherit (closes: Bug#184514). -- Jonas Smedegaard Mon, 14 Apr 2003 01:32:46 +0200 libgdchart-gd2 (0.11.4-1) unstable; urgency=low * New upstream release. -- Jonas Smedegaard Sun, 13 Apr 2003 15:36:36 +0200 libgdchart-gd2 (0.11.2-7) unstable; urgency=low * Build-depend on xlibs-dev. This closes: Bug#184514 (thanks to Bdale Garbee ). * Claim compliance with Policy 3.5.9 (no changes needed). * Move -dev packages to section libdevel. * Switch debhelper hint from DH_COMPAT to debian/compat (and lower build-depends a bit). -- Jonas Smedegaard Tue, 8 Apr 2003 04:15:09 +0200 libgdchart-gd2 (0.11.2-6) unstable; urgency=low * Have -dev packages depend on libgd2-*-dev (how could I forget?). * Minor cosmetic corrections to debian/rules. * Change descriptions to not use the term "unstable" about GD 2.x. -- Jonas Smedegaard Fri, 7 Mar 2003 02:56:04 +0100 libgdchart-gd2 (0.11.2-5) unstable; urgency=low * Build against libgd2-noxpm to not force X dependency (which is not used at all anyway). * Tighten build-dependency on sane libgd2-noxpm-dev and remove build- dependencies now properly pulled from libgd2-noxpm-dev. -- Jonas Smedegaard Fri, 7 Mar 2003 01:49:11 +0100 libgdchart-gd2 (0.11.2-4) unstable; urgency=low * Link dynamically against libgd2. * Add copyright info from gifencode.c (based on code from ppmtogif.c with LZW code removed). * Remove trailing dot from synopsis to please lintian. * Minor change to copyright regarding author(s) to please lintian. * Remove deprecated and unused dh_undocumented from debian/rules. * Change to new default compilation options according to policy 3.5.7. * Claim to comply with policy version 3.5.8. -- Jonas Smedegaard Sun, 16 Feb 2003 15:36:56 +0100 libgdchart-gd2 (0.11.2-3) unstable; urgency=low * Change/add build-depends to the virtual libz-dev and libpng12-dev. * Build-depend only on libgd2-xpm-dev (not -noxpm-). -- Jonas Smedegaard Tue, 12 Nov 2002 05:06:20 +0100 libgdchart-gd2 (0.11.2-2) unstable; urgency=low * Add some additional build-depends (closes: Bug#164542). * Add -fsigned-char to CFLAGS to stop warning (someone please come up with a better solution). Closes: Bug#163975. -- Jonas Smedegaard Sun, 13 Oct 2002 16:40:00 +0200 libgdchart-gd2 (0.11.2-1) unstable; urgency=low * Initial Release (derived from libgdchart-gd1). -- Jonas Smedegaard Wed, 9 Oct 2002 06:02:38 +0200