--- kerry-0.09.orig/debian/changelog +++ kerry-0.09/debian/changelog @@ -0,0 +1,6 @@ +kerry (0.09-0ubuntu1) dapper; urgency=low + + * Initial release. + * Created kubuntu_01_kerry.diff - install scripts to /usr/bin. + + -- Jonathan Patrick Davies Sun, 26 Mar 2006 15:51:20 +0200 --- kerry-0.09.orig/debian/compat +++ kerry-0.09/debian/compat @@ -0,0 +1 @@ +5 --- kerry-0.09.orig/debian/patches/kubuntu_01_kerry.diff +++ kerry-0.09/debian/patches/kubuntu_01_kerry.diff @@ -0,0 +1,11 @@ +--- kerry-0.09/src/Makefile.am 2006-03-07 20:20:38.000000000 +0100 ++++ kerry-0.09/src/Makefile.am 2006-03-26 20:59:02.000000000 +0200 +@@ -35,7 +35,7 @@ KDE_ICON = kerry + autostartdir = $(datadir)/autostart + autostart_DATA = kerry.autostart.desktop beagled.desktop + +-shutdowndir = $(prefix)/shutdown ++shutdowndir = $(prefix)/bin + shutdown_SCRIPTS = beagled-shutdown.sh + + kde_apps_DATA = kerry.desktop --- kerry-0.09.orig/debian/kerry.1.docbook +++ kerry-0.09/debian/kerry.1.docbook @@ -0,0 +1,109 @@ + + + + + + Jonathan Patrick + Davies + jpatrick@ubuntu.com + + + 2006 + Jonathan Patrick Davies + + + + 2006-03-26 + + + + kerry + 1 + + + kerry + a Beagle frontend for KDE + + + + kautoclick + + + + + + + + + + DESCRIPTION + + Kerry is a frontend for Beagle for the KDE desktop. + + + + OPTIONS + + All KDE and Qt + programs accept a some common command-line options. Kerry has no + application-specific options. + + + + Generic options: + + + Show help about options + + + + Show Qt specific options + + + + Show KDE specific options + + + + Show all options + + + + Show author information + + + , + Show version information + + + + Show license information + + + + Indicates end of options + + + + + + + COPYRIGHT + + This manual page was written by Jonathan Patrick Davies + jpatrick@ubuntu.com for the + Ubuntu system (but may be used by others). + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU General Public License, + Version 2 or any later version published by the Free Software Foundation. + + + On Debian systems, the complete text of the GNU General Public + License can be found in + /usr/share/common-licenses/GPL. + + + --- kerry-0.09.orig/debian/copyright +++ kerry-0.09/debian/copyright @@ -0,0 +1,35 @@ +This package was debianized by Jonathan Patrick Davies on +Sun, 26 Mar 2006 15:51:20 +0200. + +It was downloaded from http://www.kde-apps.org/content/show.php?content=36832 + +Upstream Authors: Stephan Binner + Debajyoti Bera + + +Copyright: + Copyright (C) 2005 Novell, Inc. + Copyright (C) 2005 Petri Damst�n + Copyright (C) 2005 Debajyoti Bera + Copyright (C) 1998 Kurt Granroth + Copyright (C) 2000 Peter Putzer + Copyright (C) 2005 Jaroslaw Staniek + +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 2 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, write to the + Free Software Foundation, Inc., + 51 Franklin Street, 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-2'. --- kerry-0.09.orig/debian/control +++ kerry-0.09/debian/control @@ -0,0 +1,17 @@ +Source: kerry +Section: kde +Priority: optional +Maintainer: Jonathan Patrick Davies +Build-Depends: debhelper (>= 5.0.0), kdelibs4-dev, libkonq4-dev, libqt3-mt-dev, automake1.9, beagle-dev (>= 0.2.3), docbook2x +Standards-Version: 3.6.2 + +Package: kerry +Architecture: any +Depends: ${shlibs:Depends}, beagle (>= 0.2.3) +Description: a KDE frontend for the Beagle desktop search daemon + Kerry is a KDE frontend for the Beagle desktop search daemon. + . + A program for indexing and searching user's data. At the moment, it can index + filesystems, chat logs, mail and data, RSS and other. + . + Homepage: http://en.opensuse.org/Kerry \ No newline at end of file --- kerry-0.09.orig/debian/rules +++ kerry-0.09/debian/rules @@ -0,0 +1,103 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +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) -f admin/Makefile.common cvs + #docbook-to-man debian/kerry.sgml > kerry.1 + CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-rpath + + docbook2x-man debian/kerry.1.docbook + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + rm -f kerry.1 + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + rm -rf po/*gmo + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/kerry. + $(MAKE) install DESTDIR=$(CURDIR)/debian/kerry + + +# 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 + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman kerry.1 + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + 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