--- kanjisaver-0.9.10.orig/debian/copyright +++ kanjisaver-0.9.10/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Ryan Schultz on +Sat, 12 Nov 2005 14:50:35 -0500. + +It was downloaded from http://rschultz.ath.cx/ + +Copyright Holder: (C) 2005 Ryan Schultz + +Kanji translations and readings from Kanjidic (http://www.csse.monash.edu.au/~jwb/kanjidic.html). + +Font selecting code from Kannasaver by Mathias Homann . + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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'. + --- kanjisaver-0.9.10.orig/debian/changelog +++ kanjisaver-0.9.10/debian/changelog @@ -0,0 +1,46 @@ +kanjisaver (0.9.10-1ubuntu1) jaunty; urgency=low + + * debian/rules: added --without-arts parameter to configure script call to + rebuild without arts support (LP: #320915) + + -- Fabrice Coutadeur Thu, 16 Apr 2009 20:38:43 +0000 + +kanjisaver (0.9.10-1) unstable; urgency=low + + * New upstream release + * Fix typo. Closes: #363996 + + -- Ryan Schultz Wed, 12 Jul 2006 12:25:45 -0400 + +kanjisaver (0.9.9-1) unstable; urgency=low + + * New upstream release + + -- Ryan Schultz Tue, 13 Dec 2005 19:35:14 -0500 + +kanjisaver (0.9.8.1-1) unstable; urgency=low + + * New upstream release (libtool fixes). + + -- Ryan Schultz Fri, 2 Dec 2005 15:34:51 -0500 + +kanjisaver (0.9.8-1) unstable; urgency=low + + * New upstream release. + + -- Ryan Schultz Tue, 22 Nov 2005 17:28:54 -0500 + +kanjisaver (0.9.7-1) unstable; urgency=low + + * New upstream release. + * Build-Depends fixed and rules file cleaned up. + * Downgrade ttf-mikachan to Suggests. + + -- Ryan Schultz Tue, 15 Nov 2005 17:34:28 -0500 + +kanjisaver (0.9.0-1) unstable; urgency=low + + * Initial release Closes: #338793 + + -- Ryan Schultz Sat, 12 Nov 2005 14:50:35 -0500 + --- kanjisaver-0.9.10.orig/debian/control +++ kanjisaver-0.9.10/debian/control @@ -0,0 +1,21 @@ +Source: kanjisaver +Section: kde +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Ryan Schultz +Build-Depends: debhelper (>= 4.0.0), autotools-dev, kdelibs4-dev +Standards-Version: 3.6.2 + +Package: kanjisaver +Architecture: any +Depends: ${shlibs:Depends} +Recommends: ttf-arphic-uming +Suggests: ttf-mikachan, kannasaver +Description: Japanese kanji screensaver + Kanjisaver is a screensaver that displays characters from a set of those + commonly found on the JLPT, the Japanese Language Proficiency Test. It can + also display the on and kun readings of the kanji as well as their + English meaning. + . + You should install a font with Japanese character support before using + Kanjisaver. --- kanjisaver-0.9.10.orig/debian/compat +++ kanjisaver-0.9.10/debian/compat @@ -0,0 +1 @@ +4 --- kanjisaver-0.9.10.orig/debian/rules +++ kanjisaver-0.9.10/debian/rules @@ -0,0 +1,85 @@ +#!/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 \ + --without-arts + +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 clean + + dh_clean config.status config.log admin/config.sub admin/config.guess + +install: build + dh_testdir + dh_testroot + dh_clean -k + + # Add here commands to install the package into debian/kanjisaver. + $(MAKE) install DESTDIR=$(CURDIR)/debian/kanjisaver + +# 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_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 --- kanjisaver-0.9.10.orig/debian/watch +++ kanjisaver-0.9.10/debian/watch @@ -0,0 +1,8 @@ +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# +http://rschultz.ath.cx/code.php /code/kanjisaver-(.*)\.tar\.gz \ +debian uupdate --- kanjisaver-0.9.10.orig/debian/docs +++ kanjisaver-0.9.10/debian/docs @@ -0,0 +1 @@ +README