--- tuxpaint-config-0.0.12.orig/src/tuxpaint-config.1 +++ tuxpaint-config-0.0.12/src/tuxpaint-config.1 @@ -29,14 +29,12 @@ Show the license (GNU GPL) under which Tux Paint is released. .SH OPTIONS - LANGUAGE -.l Much like Tux Paint itself, \fITux Paint Configuration Tool\fP has been translated into numerous languages. \fItuxpaint-config\fP will try its best to honor your \fIlocale\fP setting (i.e., the \fILANG\fP environment variable), if possible. .SH ENVIRONMENT -.l .PP .TP 8 .B HOME --- tuxpaint-config-0.0.12.orig/debian/changelog +++ tuxpaint-config-0.0.12/debian/changelog @@ -0,0 +1,62 @@ +tuxpaint-config (0.0.12-2) unstable; urgency=low + + * Remove redundant desktop file. (Closes: #498927) + + -- Ben Armstrong Fri, 16 Oct 2009 09:30:06 -0300 + +tuxpaint-config (0.0.12-1) unstable; urgency=low + + * New upstream release. + + -- Ben Armstrong Sun, 09 Aug 2009 12:20:30 -0300 + +tuxpaint-config (0.0.10-1) unstable; urgency=low + + * New upstream release. + * Install desktop file to opendesktop location. + + -- Ben Armstrong Sun, 08 Jun 2008 14:41:23 -0300 + +tuxpaint-config (0.0.8-1) unstable; urgency=low + + * New upstream release. + + -- Ben Armstrong Tue, 03 Jul 2007 22:12:27 -0300 + +tuxpaint-config (0.0.7+0.0.8rc1-1) unstable; urgency=low + + * New upstream release. + + -- Ben Armstrong Sat, 30 Jun 2007 17:46:26 -0300 + +tuxpaint-config (0.0.7-1) unstable; urgency=low + + * New upstream release. + + -- Ben Armstrong Sun, 22 Oct 2006 12:00:14 -0300 + +tuxpaint-config (0.0.6+0.0.7rc5-1) unstable; urgency=low + + * New upstream release. + + -- Ben Armstrong Sun, 15 Oct 2006 11:05:04 -0300 + +tuxpaint-config (0.0.6-2) unstable; urgency=low + + * Fixed X11 dependencies (thanks, Matt Kraai) (Closes: #356274) + + -- Ben Armstrong Sun, 2 Apr 2006 10:28:04 -0300 + +tuxpaint-config (0.0.6-1) unstable; urgency=low + + * New upstream release. + * Fix missing menu entry. + + -- Ben Armstrong Sat, 21 Jan 2006 19:06:41 -0400 + +tuxpaint-config (0.0.5-1) unstable; urgency=low + + * Initial Release. + + -- Ben Armstrong Thu, 7 Oct 2004 10:26:42 -0300 + --- tuxpaint-config-0.0.12.orig/debian/compat +++ tuxpaint-config-0.0.12/debian/compat @@ -0,0 +1 @@ +5 --- tuxpaint-config-0.0.12.orig/debian/copyright +++ tuxpaint-config-0.0.12/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Ben Armstrong on +Tue, 5 Oct 2004 11:40:24 -0300. + +It was downloaded from http://www.newbreedsoftware.com/tuxpaint/ + +Upstream Authors: + Torsten Giebl , + Jan Wynholds + Bill Kendrick + +Copyright: + +Copyright (c) 2004 by Torsten Giebl , +Jan Wynholds and Bill Kendrick . + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in /usr/share/common-licenses/GPL --- tuxpaint-config-0.0.12.orig/debian/control +++ tuxpaint-config-0.0.12/debian/control @@ -0,0 +1,17 @@ +Source: tuxpaint-config +Section: graphics +Priority: optional +Maintainer: Ben Armstrong +Build-Depends: debhelper (>= 5.0.0), libfltk1.1-dev, libxft-dev, libxinerama-dev, libpaper-dev +Standards-Version: 3.8.2 + +Package: tuxpaint-config +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: tuxpaint (= 1:0.9.21) +Conflicts: tuxpaint (<< 1:0.9.21) +Description: Configuration tool for Tux Paint + Tux Paint has a rich set of configuration options, controllable via + command-line options or configuration files. This configuration tool + provides a point-and-click interface for administrators to tailor Tux + Paint to suit the needs of their users. --- tuxpaint-config-0.0.12.orig/debian/dirs +++ tuxpaint-config-0.0.12/debian/dirs @@ -0,0 +1,5 @@ +usr/bin +usr/share/icons/hicolor/48x48/apps +usr/share/icons/hicolor/32x32/apps +usr/share/icons/hicolor/16x16/apps +usr/share/applications --- tuxpaint-config-0.0.12.orig/debian/menu +++ tuxpaint-config-0.0.12/debian/menu @@ -0,0 +1,2 @@ +?package(tuxpaint-config):needs="X11" section="Applications/Graphics"\ + title="tuxpaint-config" command="/usr/bin/tuxpaint-config" icon="/usr/share/pixmaps/tuxpaint-config.xpm" --- tuxpaint-config-0.0.12.orig/debian/rules +++ tuxpaint-config-0.0.12/debian/rules @@ -0,0 +1,97 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DH_ALWAYS_EXCLUDE=CVS + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) PREFIX=/usr CFLAGS="$(CFLAGS)" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tuxpaint-config. + $(MAKE) install \ + PREFIX=$(CURDIR)/debian/tuxpaint-config/usr \ + CONFDIR=$(CURDIR)/debian/tuxpaint/etc/tuxpaint \ + GNOME_PREFIX=$(CURDIR)/debian/tuxpaint-config/usr \ + KDE_PREFIX=$(CURDIR)/debian/tuxpaint-config/usr/share/applnk \ + KDE_ICON_PREFIX=$(CURDIR)/debian/tuxpaint-config/usr/share/icons \ + X11_ICON_PREFIX=$(CURDIR)/debian/tuxpaint-config/usr/share/pixmaps/ + # Cleanup after install + rm $(CURDIR)/debian/tuxpaint-config/usr/share/doc/tuxpaint-config/CHANGES.txt + rm $(CURDIR)/debian/tuxpaint-config/usr/share/doc/tuxpaint-config/COPYING.txt + # install desktop file to freedesktop default directory + install -m 664 $(CURDIR)/src/tuxpaint-config.desktop \ + $(CURDIR)/debian/tuxpaint-config/usr/share/applications + # remove redundant desktop file from old KDE location + rm $(CURDIR)/debian/tuxpaint-config/usr/share/applnk/Preferences/tuxpaint-config.desktop + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs docs/CHANGES.txt + dh_installdocs + dh_installexamples + dh_installman + dh_installmenu + 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 configure --- tuxpaint-config-0.0.12.orig/debian/docs +++ tuxpaint-config-0.0.12/debian/docs @@ -0,0 +1,3 @@ +docs/README.txt +docs/TODO.txt +docs/html/