kannasaver (1.1.1-4.1) debian-dir only changes

Summary

 debian/changelog        |   33 ++++++++++++++++
 debian/compat           |    1 
 debian/control          |   21 ++++++++++
 debian/copyright        |   44 ++++++++++++++++++++++
 debian/kannasaver.kss.6 |   47 ++++++++++++++++++++++++
 debian/rules            |   94 ++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 240 insertions(+)

    
download this patch

Patch contents

--- kannasaver-1.1.1.orig/debian/kannasaver.kss.6
+++ kannasaver-1.1.1/debian/kannasaver.kss.6
@@ -0,0 +1,47 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.TH KANNASAVER.KSS 6 "November 04, 2005"
+.SH NAME
+kannasaver.kss - Japanese character screensaver
+.SH SYNOPSIS
+.B kannasaver.kss
+.I [Qt-options] [KDE-options] [options]
+.SH DESCRIPTION
+Kannasaver is a screensaver that displays random characters from the Japanese syllabary, ideally causing them to stick in your memory after  you've viewed them a number of times.
+.PP
+.SH OPTIONS
+.B \-\-setup
+Setup screen saver
+.TP
+.B \-\-window-id wid
+Run in the specified XWindow
+.TP
+.B \-\-root
+Run in the root XWindow
+.TP
+.B \-\-demo
+Start screen saver in demo mode [default]
+.TP
+.B \-\-help
+Show summary of options.
+.TP
+.B \-\-help\-qt
+Show QT-related options.
+.TP
+.B \-\-help\-kde
+Show KDE-related options.
+.TP
+.B \-\-help\-all
+Show all commandline options.
+.TP
+.B \-\-author
+Display information on kannasaver's author.
+.TP
+.B \-\-license
+Output a full copy of kannasaver's software license
+.TP
+.B \-v, \-\-version
+Print version number and exit.
+.TP
+.SH AUTHOR
+kannasaver.kss was written by Mathias Homann <Mathias.Homann@eregion.de>.
+This manual page was written by Ryan Schultz <schultz.ryan@gmail.com>.
--- kannasaver-1.1.1.orig/debian/changelog
+++ kannasaver-1.1.1/debian/changelog
@@ -0,0 +1,33 @@
+kannasaver (1.1.1-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix compatibility with GCC 4.3 (Closes: #461701)
+
+ -- Moritz Muehlenhoff <jmm@debian.org>  Wed, 19 Mar 2008 22:59:32 +0100
+
+kannasaver (1.1.1-4) unstable; urgency=low
+
+  * Forgot to relibtoolize after adding AM_MAINTAINER_MODE appropriately.
+
+ -- Ryan Schultz <schultz.ryan@gmail.com>  Thu,  4 Dec 2005 10:33:13 -0500
+
+kannasaver (1.1.1-3) unstable; urgency=low
+
+  * Relibtoolize to preempt a libfreetype transition.
+  * Minor typo fix in manpage.
+
+ -- Ryan Schultz <schultz.ryan@gmail.com>  Thu,  1 Dec 2005 12:33:43 -0500
+
+kannasaver (1.1.1-2) unstable; urgency=low
+
+  * Downgrade ttf-mikachan to Suggests.
+
+ -- Ryan Schultz <schultz.ryan@gmail.com>  Thu, 17 Nov 2005 17:54:40 -0500
+
+kannasaver (1.1.1-1) unstable; urgency=low
+
+  * Initial release Closes: #337174
+  * Upstream source cleaned up and repackaged.
+
+ -- Ryan Schultz <schultz.ryan@gmail.com>  Tue,  1 Nov 2005 22:27:28 -0500
+
--- kannasaver-1.1.1.orig/debian/control
+++ kannasaver-1.1.1/debian/control
@@ -0,0 +1,21 @@
+Source: kannasaver
+Section: kde
+Priority: optional
+Maintainer: Ryan Schultz <schultz.ryan@gmail.com>
+Build-Depends: debhelper (>= 4.0.0), autotools-dev, kdelibs4-dev
+Standards-Version: 3.6.2
+
+Package: kannasaver
+Architecture: any
+Depends: ${shlibs:Depends}
+Recommends: ttf-arphic-uming
+Suggests: ttf-mikachan
+Description: Japanese character screensaver
+ Kannasaver is a screensaver that displays random characters from the
+ Japanese syllabary, ideally causing them to stick in your memory after
+ you've viewed them a number of times. Kannasaver can be configured to 
+ display basic, extended, and compound characters from hiragana, katakana,
+ or both simultaneously.
+ .
+ You should install a font with Japanese character support before using 
+ Kannasaver.
--- kannasaver-1.1.1.orig/debian/rules
+++ kannasaver-1.1.1/debian/rules
@@ -0,0 +1,94 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+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 admin/config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess admin/config.guess
+endif
+
+	# Add here commands to configure the package.
+	CFLAGS="$(CFLAGS) -Wl,-z,defs" CXXFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure \
+		   --host=$(DEB_HOST_GNU_TYPE) \
+		   --build=$(DEB_BUILD_GNU_TYPE) \
+		   --prefix=/usr --mandir=\$${prefix}/share/man \
+		   --disable-rpath
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE) LIB_QT=""
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || make distclean
+
+	dh_clean config.status config.log
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+
+	# Add here commands to install the package into debian/kannasaver.
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/kannasaver
+
+	# Put docs where they need to be.
+	mkdir -p $(CURDIR)/debian/kannasaver/usr/share/doc/kde
+	mv $(CURDIR)/debian/kannasaver/usr/share/doc/HTML \
+		$(CURDIR)/debian/kannasaver/usr/share/doc/kde/HTML
+
+# 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 ChangeLog
+	dh_installdocs
+	dh_installman debian/kannasaver.kss.6
+	dh_link
+	dh_strip
+	dh_compress -Xindex.docbook
+	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 
--- kannasaver-1.1.1.orig/debian/copyright
+++ kannasaver-1.1.1/debian/copyright
@@ -0,0 +1,44 @@
+This package was debianized by Ryan Schultz <schultz.ryan@gmail.com> on
+Tue,  1 Nov 2005 22:27:28 -0500.
+
+It was downloaded from http://www.kde-apps.org
+
+Copyright Holder: Copyright (C) 2004 by Mathias Homann 
+<Mathias.Homann@eregion.de>
+
+
+License:
+
+   This package 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 2 of the License, or
+   (at your option) any later version.
+
+   This package 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 package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+This package has been modified from the original upstream source, removing
+CVS directories and automake cache files.
+
+Permission from the author has been granted for the GFDL->GPL relicensing
+in the source.
+
+"""
+From: Mathias Homann <Mathias.Homann@eregion.de>
+> KDevelop defaults to licensing all docs under the FDL, I guess. The
+> notice is on line 70 of ksudoku/doc/en/index.docbook. You can
+> probably just: -  <legalnotice>&FDLNotice;</legalnotice>
+> + <legalnotice>&GPLNotice;</legalnotice>
+
+looks like it... do that. i'll adjust my sources accordingly.
+"""
+
--- kannasaver-1.1.1.orig/debian/compat
+++ kannasaver-1.1.1/debian/compat
@@ -0,0 +1 @@
+4