gkrellkam (2.0.0-1.1) debian-dir only changes

Summary

 debian/changelog |   97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/control   |   21 +++++++++++
 debian/copyright |   13 +++++++
 debian/dirs      |    1 
 debian/docs      |    2 +
 debian/rules     |   82 ++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 216 insertions(+)

    
download this patch

Patch contents

--- gkrellkam-2.0.0.orig/debian/rules
+++ gkrellkam-2.0.0/debian/rules
@@ -0,0 +1,82 @@
+#!/usr/bin/make -f
+# 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
+
+# This is the debhelper compatability version to use.
+export DH_COMPAT=3
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+build: configure-stamp build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+
+	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/gkrellkam.
+	install -m 755 gkrellkam.so \
+                   $(CURDIR)/debian/gkrellkam/usr/lib/gkrellm2/plugins
+
+# 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_installdebconf	
+	dh_installdocs
+	dh_installexamples example.list
+	dh_installmenu
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_installinit
+	dh_installcron
+	dh_installman gkrellkam-list.5
+	dh_installinfo
+#	dh_undocumented
+	dh_installchangelogs Changelog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+#	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
--- gkrellkam-2.0.0.orig/debian/control
+++ gkrellkam-2.0.0/debian/control
@@ -0,0 +1,21 @@
+Source: gkrellkam
+Section: x11
+Priority: optional
+Maintainer: paul cannon <pik@debian.org>
+Build-Depends: debhelper (>> 3.0.0), gkrellm (>= 2.0.0), libgtk2.0-dev, libglib2.0-dev
+Standards-Version: 3.5.8
+
+Package: gkrellkam
+Architecture: any
+Depends: gkrellm (>= 2.0.0), ${shlibs:Depends}
+Recommends: wget
+Description: GKrellM plugin that displays a periodically updating image
+ GKrellKam is basically wmGrabImage in a GKrellM panel, except that it
+ is more flexible (you can specify a local or remote image, or a list of
+ local or remote images, or a script that outputs the right image, etc).
+ The image (any format or size) is resized to a thumbnail and placed in
+ a GKrellM panel, where it is updated periodically. Multiple images are
+ rotated.
+ .
+ This plugin is useful for keeping track of webcams, weather maps, or
+ any other kind of changing image information.
--- gkrellkam-2.0.0.orig/debian/changelog
+++ gkrellkam-2.0.0/debian/changelog
@@ -0,0 +1,97 @@
+gkrellkam (2.0.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "ftbfs with GCC-4.7": apply patch from Paul Tagliamonte (remove stray
+    "-Wl"). Closes: #667178
+
+ -- gregor herrmann <gregoa@debian.org>  Sun, 22 Apr 2012 14:56:34 +0200
+
+gkrellkam (2.0.0-1) unstable; urgency=low
+
+  * New upstream release- rewritten for gkrellm2. I had planned a
+    gkrellkam2 package for this, but it seems the old gkrellm is
+    now defunct, and the gkrellm package is really gkrellm2.
+    Whatever. (closes: #176116- gkrellkam is incompatible with
+    gkrellm)
+
+ -- paul cannon <pik@debian.org>  Fri, 10 Jan 2003 13:10:45 -0700
+
+gkrellkam (0.3.4-2) unstable; urgency=low
+
+  * Changed Build-Depends from gdk-imlib-dev to gdk-imlib1-dev
+    as per its maintainer's request
+
+ -- paul cannon <pik@debian.org>  Mon,  9 Sep 2002 18:23:17 -0600
+
+gkrellkam (0.3.4-1) unstable; urgency=low
+
+  * New upstream release
+  * No more need for a sponsor. Thanks, An!
+
+ -- paul cannon <pik@debian.org>  Tue, 19 Mar 2002 19:26:49 -0700
+
+gkrellkam (0.3.2-1) unstable; urgency=low
+
+  * New upstream release
+       (closes: Bug#128179- Segfault when wget fails)
+
+ -- paul cannon <paul@cannon.cs.usu.edu>  Mon,  7 Jan 2002 15:58:14 -0700
+
+gkrellkam (0.3.1-1) unstable; urgency=low
+
+  * New upstream release
+  * Fixed divide by zero problem
+       (closes: Bug#123786- Crash with select images from random
+        turned on)
+  * s/weathermaps/weather maps/ in description
+       (closes: Bug#124674- Spelling error in description)
+  * Self-contained image viewer is used by default
+       (closes: Bug#117979- gkrellkam lacks a Recommends or Suggested
+        dependency on eeyes)
+  * Added functionality to the internal viewer- now you can resize it,
+    save the image, etc
+  * Recognizes a "refresh" tag in lists
+       (closes: Bug#113246- would be nice if gkrellkam would download
+        images and cycle display at different rate)
+  * Manages temporary files sanely
+
+ -- paul cannon <paul@cannon.cs.usu.edu>  Wed, 19 Dec 2001 14:46:51 -0700
+
+gkrellkam (0.2.5-1) unstable; urgency=low
+
+  * New upstream release
+  * Now cleans out /tmp/krellkam* files left over from the last
+    time gkrellm died (there's no way to delete them at the time)
+  * Compiled for new GkrellM (>1.2.0)
+
+ -- paul cannon <paul@cannon.cs.usu.edu>  Fri, 26 Oct 2001 20:47:38 -0600
+
+gkrellkam (0.2.4-1) unstable; urgency=low
+
+  * New upstream release
+  * No longer uses any lockfiles (closes: Bug#111622)
+  * Packaging done by upstream author (in NM queue! :)
+
+ -- paul cannon <paul@cannon.cs.usu.edu>  Tue, 11 Sep 2001 14:44:55 -0600
+
+gkrellkam (0.2.0c-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- An Thi-Nguyen Le <anle@debian.org>  Sat, 30 Jun 2001 14:55:43 -0500
+
+gkrellkam (0.2.0-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- An Thi-Nguyen Le <anle@debian.org>  Fri, 22 Jun 2001 01:36:08 -0500
+
+gkrellkam (0.1.1d-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- An Thi-Nguyen Le <anle@debian.org>  Tue, 19 Jun 2001 18:52:27 -0500
+
+Local variables:
+mode: debian-changelog
+End:
--- gkrellkam-2.0.0.orig/debian/dirs
+++ gkrellkam-2.0.0/debian/dirs
@@ -0,0 +1 @@
+usr/lib/gkrellm2/plugins
--- gkrellkam-2.0.0.orig/debian/copyright
+++ gkrellkam-2.0.0/debian/copyright
@@ -0,0 +1,13 @@
+This package was debianized by paul cannon <paul@cannon.cs.usu.edu> on
+Tue, 11 Sep 2001 16:42:27 -0600.
+
+The original source can be downloaded from http://gkrellkam.sf.net/
+
+Copyright:
+
+This software is copyright (c) 2001 by paul cannon.
+
+You are free to distribute this software under the terms of the GNU General
+Public License.
+On Debian systems, the complete text of the GNU General Public Licence can 
+be found in the /usr/share/common-licenses/GPL file.
--- gkrellkam-2.0.0.orig/debian/docs
+++ gkrellkam-2.0.0/debian/docs
@@ -0,0 +1,2 @@
+README
+Todo