--- gnome-color-chooser-0.2.5.orig/debian/changelog +++ gnome-color-chooser-0.2.5/debian/changelog @@ -0,0 +1,48 @@ +gnome-color-chooser (0.2.5-1build2) wily; urgency=medium + + * No-change rebuild for libglademm. + + -- Matthias Klose Sat, 29 Aug 2015 10:08:41 +0000 + +gnome-color-chooser (0.2.5-1build1) wily; urgency=medium + + * No-change rebuild against libglibmm-2.4-1v5 + + -- Steve Langasek Fri, 07 Aug 2015 21:37:21 +0000 + +gnome-color-chooser (0.2.5-1) unstable; urgency=low + + * new upstream release + * bumped Debian Policy Standards-Version to 3.8.1 (no changes needed) + + -- Werner Pantke Tue, 24 Mar 2009 01:58:48 +0100 + +gnome-color-chooser (0.2.4-1) unstable; urgency=low + + * new upstream release + - license is now GNU GPL3+ + - strip down indirect dependencies by using LDFLAGS="-Wl,--as-needed" + by default (if linker supports it) + * new homepage URL ( http://gnomecc.sourceforge.net ) (Closes: #493648) + * panel settings don't affect evolution's mail settings dialog anymore + (LP: #219460) + * bumped Debian Policy Standards-Version to 3.8.0 (no changes needed) + + -- Werner Pantke Tue, 09 Sep 2008 11:46:25 +0200 + +gnome-color-chooser (0.2.3-2) unstable; urgency=low + + * ported back upstream/trunk changes that fix FTBFS with g++-4.3 + (Closes: #474794) + * changed debian/rules to fix unreported "FTBFS if built twice in a row" bug + (Thanks to Peter Green and Lintian docs) + * changed debian/control to make the description follow new lintian rules + + -- Werner Pantke Fri, 11 Apr 2008 01:16:55 +0200 + +gnome-color-chooser (0.2.3-1) unstable; urgency=low + + * Initial release (Closes: #452978) + * using manual page of trunk version + + -- Werner Pantke Fri, 11 Jan 2008 14:09:32 +0100 --- gnome-color-chooser-0.2.5.orig/debian/compat +++ gnome-color-chooser-0.2.5/debian/compat @@ -0,0 +1 @@ +5 --- gnome-color-chooser-0.2.5.orig/debian/control +++ gnome-color-chooser-0.2.5/debian/control @@ -0,0 +1,24 @@ +Source: gnome-color-chooser +Section: gnome +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Werner Pantke +Homepage: http://gnomecc.sourceforge.net +Build-Depends: debhelper (>= 5), autotools-dev, gnome-common (>= 2.20.0), gettext, intltool (>= 0.35.5), libgtkmm-2.4-dev (>= 2.8.0), libglademm-2.4-dev (>= 2.6.0), libgnome2-dev (>= 2.16.0), libgnomeui-dev (>= 2.14.0), libxml2-dev (>= 2.6.0) +Standards-Version: 3.8.1 + +Package: gnome-color-chooser +Architecture: any +Depends: ${shlibs:Depends} +Recommends: gtk2-engines (>= 2.18.1) +Suggests: nautilus (>= 2.18.2) +Description: GTK+/GNOME desktop appearance customization tool + This is an application for customizing the appearance of the + GNOME desktop. + . + Features: + * change most important colors (e.g. background, window decoration, tooltips) + * change colors and sizes of GTK+ widgets + * colorize desktop icons + * configure installed GTK+ engines and let your current theme be drawn + by an installed GTK+ engine of your choice --- gnome-color-chooser-0.2.5.orig/debian/copyright +++ gnome-color-chooser-0.2.5/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Werner Pantke on +Tue, 15 May 2007 17:51:21 +0200. + +It was downloaded from http://gnomecc.sourceforge.net + +Upstream Author: + + Werner Pantke + +Copyright: + + Copyright (C) 2006-2009 Werner Pantke + + src/combobox.* is based on gtkmm's comboboxtext.* (LGPL), + Copyright (C) 2003 The gtkmm Development Team, see www.gtkmm.org + +License: + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +On Debian systems, the complete text of the GNU General Public License version +3 can be found in `/usr/share/common-licenses/GPL-3' + +The Debian packaging is +Copyright (C) 2007-2009 Werner Pantke +and is licensed under the GNU GPL version 3, see above. --- gnome-color-chooser-0.2.5.orig/debian/rules +++ gnome-color-chooser-0.2.5/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +#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 + +config.status: configure + dh_testdir + +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + rm -f build-stamp + rm -f config.sub config.guess + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_desktop + $(MAKE) DESTDIR=$(CURDIR)/debian/gnome-color-chooser install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs NEWS THANKS + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gnome-color-chooser-0.2.5.orig/debian/watch +++ gnome-color-chooser-0.2.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/gnomecc/gnome-color-chooser-(.*)\.tar\.gz