From 9b2075d9b89fc628c447fbb98f43ef72e4a9c81d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 16:17:43 -0500 Subject: Initial import from old SVN repository Note that only the Debian and Ubuntu folders were preserved --- ubuntu/maverick/applications/kmymoney/debian/NEWS | 17 + .../applications/kmymoney/debian/README.source | 6 + .../applications/kmymoney/debian/cdbs/buildvars.mk | 86 ++++ .../kmymoney/debian/cdbs/debian-qt-kde.mk | 109 +++++ .../applications/kmymoney/debian/cdbs/kde.mk | 97 ++++ .../applications/kmymoney/debian/cdbs/team-members | 16 + .../applications/kmymoney/debian/cdbs/uploaders.mk | 29 ++ .../applications/kmymoney/debian/cdbs/versions.pl | 19 + .../applications/kmymoney/debian/changelog | 525 +++++++++++++++++++++ .../maverick/applications/kmymoney/debian/compat | 1 + .../maverick/applications/kmymoney/debian/control | 35 ++ .../applications/kmymoney/debian/copyright | 61 +++ .../debian/kmymoney2-common-trinity.install | 17 + .../kmymoney/debian/kmymoney2-trinity-dev.install | 3 + .../kmymoney/debian/kmymoney2-trinity.docs | 1 + .../kmymoney/debian/kmymoney2-trinity.install | 6 + .../applications/kmymoney/debian/kmymoney2.xpm | 48 ++ ubuntu/maverick/applications/kmymoney/debian/menu | 7 + ubuntu/maverick/applications/kmymoney/debian/rules | 31 ++ ubuntu/maverick/applications/kmymoney/debian/watch | 2 + 20 files changed, 1116 insertions(+) create mode 100644 ubuntu/maverick/applications/kmymoney/debian/NEWS create mode 100644 ubuntu/maverick/applications/kmymoney/debian/README.source create mode 100644 ubuntu/maverick/applications/kmymoney/debian/cdbs/buildvars.mk create mode 100644 ubuntu/maverick/applications/kmymoney/debian/cdbs/debian-qt-kde.mk create mode 100644 ubuntu/maverick/applications/kmymoney/debian/cdbs/kde.mk create mode 100644 ubuntu/maverick/applications/kmymoney/debian/cdbs/team-members create mode 100644 ubuntu/maverick/applications/kmymoney/debian/cdbs/uploaders.mk create mode 100644 ubuntu/maverick/applications/kmymoney/debian/cdbs/versions.pl create mode 100644 ubuntu/maverick/applications/kmymoney/debian/changelog create mode 100644 ubuntu/maverick/applications/kmymoney/debian/compat create mode 100644 ubuntu/maverick/applications/kmymoney/debian/control create mode 100644 ubuntu/maverick/applications/kmymoney/debian/copyright create mode 100644 ubuntu/maverick/applications/kmymoney/debian/kmymoney2-common-trinity.install create mode 100644 ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity-dev.install create mode 100644 ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.docs create mode 100644 ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.install create mode 100644 ubuntu/maverick/applications/kmymoney/debian/kmymoney2.xpm create mode 100644 ubuntu/maverick/applications/kmymoney/debian/menu create mode 100755 ubuntu/maverick/applications/kmymoney/debian/rules create mode 100644 ubuntu/maverick/applications/kmymoney/debian/watch (limited to 'ubuntu/maverick/applications/kmymoney') diff --git a/ubuntu/maverick/applications/kmymoney/debian/NEWS b/ubuntu/maverick/applications/kmymoney/debian/NEWS new file mode 100644 index 000000000..a10bb6f91 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/NEWS @@ -0,0 +1,17 @@ +kmymoney2 (0.8.7-1) unstable; urgency=low + + * Due to licencing restrictions Debian is not able to distribute kmymoney2 + with HBCI (online banking) enabled, however you are allowed and can + build your own with HBCI enabled! + + # apt-get build-dep kmymoney2 + # apt-get install libaqbanking16-dev + # apt-get -b source kmymoney2 + + For more information on this issue please refer to: + http://bugs.debian.org/434278 + + * Debian will endeavour to distribute kmymoney2 with HBCI enabled as + soon as licencing allows. + + -- Mark Purcell Sun, 22 Jul 2007 21:56:30 +0100 diff --git a/ubuntu/maverick/applications/kmymoney/debian/README.source b/ubuntu/maverick/applications/kmymoney/debian/README.source new file mode 100644 index 000000000..2a0f24655 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/README.source @@ -0,0 +1,6 @@ +This package uses quilt for upstream source code patch management. Please read +/usr/share/doc/quilt/README.source for more information how to apply, unapply, +add, modify or remove patches. + +Please note that /usr/share/doc/quilt/README.source is only available in quilt +version 0.46-4.1 or later. diff --git a/ubuntu/maverick/applications/kmymoney/debian/cdbs/buildvars.mk b/ubuntu/maverick/applications/kmymoney/debian/cdbs/buildvars.mk new file mode 100644 index 000000000..23d4709dc --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/cdbs/buildvars.mk @@ -0,0 +1,86 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2002,2003 Colin Walters +# Description: Defines some useful variables, but no rules +# +# 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, 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., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_buildvars +_cdbs_rules_buildvars = 1 + +CDBS_VERSION = something + +# Common useful variables +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) +DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') +DEB_ISNATIVE := $(shell dpkg-parsechangelog | egrep '^Version:' | perl -ne 'print if not /^Version:\s*.*-/;') + +# Split into arch/indep packages +ifneq ($(DEB_INDEP_PACKAGES),cdbs) +DEB_INDEP_PACKAGES := $(filter-out $(DONT_BUILD), $(strip $(shell $(_cdbs_scripts_path)/list-packages indep))) +DEB_ARCH_PACKAGES := $(filter-out $(DONT_BUILD), $(filter-out $(DEB_INDEP_PACKAGES),$(strip $(shell $(_cdbs_scripts_path)/list-packages same)))) +endif +# Split into normal and udeb packages +ifeq ($(DEB_UDEB_PACKAGES),) +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +DEB_UDEB_PACKAGES = $(filter-out $(DONT_BUILD),$(filter %-udeb, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +else +DEB_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES), $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) +endif +# Too much bother for now. If someone complains we'll fix it. +#DEB_ARCH_UDEB_PACKAGES = $(filter %-udeb, $(DEB_ARCH_PACKAGES)) +#DEB_INDEP_UDEB_PACKAGES = $(filter %-udeb, $(DEB_INDEP_PACKAGES)) +# A handy list of every package, udeb or not +DEB_ALL_PACKAGES = $(filter-out $(DONT_BUILD),$(DEB_PACKAGES) $(DEB_UDEB_PACKAGES)) +DEB_INDEP_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_INDEP_PACKAGES))) +DEB_ARCH_REGULAR_PACKAGES = $(filter-out $(DONT_BUILD), $(filter-out $(DEB_UDEB_PACKAGES),$(DEB_ARCH_PACKAGES))) + +DEB_DBG_PACKAGES = $(filter-out $(DONT_BUILD), $(filter %-dbg, $(DEB_ARCH_PACKAGES) $(DEB_INDEP_PACKAGES))) + +# Some support for srcdir != builddir builds. +# These are relative to the root of the package +DEB_SRCDIR ?= . +DEB_BUILDDIR ?= $(strip $(DEB_SRCDIR)) + +# Miscellaneous bits +DEB_ARCH = $(shell dpkg --print-architecture) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU) +DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) + +ifeq ($(words $(DEB_ALL_PACKAGES)),1) + DEB_DESTDIR = $(CURDIR)/debian/$(strip $(DEB_ALL_PACKAGES))/ +else + DEB_DESTDIR = $(CURDIR)/debian/tmp/ +endif + +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), cdbs (>= 0.4.23-1.1) + +endif diff --git a/ubuntu/maverick/applications/kmymoney/debian/cdbs/debian-qt-kde.mk b/ubuntu/maverick/applications/kmymoney/debian/cdbs/debian-qt-kde.mk new file mode 100644 index 000000000..47e83ef4a --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/cdbs/debian-qt-kde.mk @@ -0,0 +1,109 @@ +ifndef _cdbs_bootstrap +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class +endif + +ifndef _cdbs_class_debian-qt-kde +_cdbs_class_debian-qt-kde := 1 + +# Note: This _must_ be included before autotools.mk, or it won't work. +common-configure-arch common-configure-indep:: debian/stamp-cvs-make +debian/stamp-cvs-make: + cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; + touch debian/stamp-cvs-make + +include debian/cdbs/kde.mk$(_cdbs_makefile_suffix) +include debian/cdbs/uploaders.mk + +DEB_PATCHDIRS := debian/patches/common debian/patches + +DEB_KDE_ENABLE_FINAL := yes +DEB_INSTALL_DOCS_ALL := + +DEB_DH_MAKESHLIBS_ARGS_ALL := -V +DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib) + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb + ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) + else + cdbs_kde_enable_final = + endif +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +common-binary-indep:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_INDEP_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +common-binary-arch:: + ( set -e; \ + tmpf=`mktemp debian/versions.XXXXXX`; \ + perl debian/cdbs/versions.pl >$$tmpf; \ + for p in $(DEB_ARCH_PACKAGES); do \ + cat $$tmpf >>debian/$$p.substvars; \ + done; \ + rm -f $$tmpf ) + +clean:: + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -rf debian/shlibs-check + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi + if test -e debian/$(cdbs_curpkg).lintian; then \ + install -p -D -m644 debian/$(cdbs_curpkg).lintian \ + debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ + fi + if test -e debian/$(cdbs_curpkg).presubj; then \ + install -p -D -m644 debian/$(cdbs_curpkg).presubj \ + debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ + fi + +binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: + set -e; \ + for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en; find . -name index.docbook`; do \ + pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ + echo Building $$pkg HTML docs...; \ + mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/kde/HTML/en/$$pkg/index.docbook; \ + done + for pkg in $(DOC_HTML_PRUNE) ; do \ + rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/kde/HTML/en/$$pkg; \ + done + +clean:: + if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \ + cd $(DEB_SRCDIR); \ + find . -name Makefile.in -print | \ + xargs --no-run-if-empty rm -f; \ + rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \ + configure configure.files configure.in stamp-h.in \ + subdirs; \ + fi + rm -f debian/stamp-cvs-make + +endif diff --git a/ubuntu/maverick/applications/kmymoney/debian/cdbs/kde.mk b/ubuntu/maverick/applications/kmymoney/debian/cdbs/kde.mk new file mode 100644 index 000000000..5b6508f8c --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/cdbs/kde.mk @@ -0,0 +1,97 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Christopher L Cheney +# Description: A class for KDE packages; sets KDE environment variables, etc +# +# 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, 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., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_class_kde +_cdbs_class_kde := 1 + +# for dh_icons +CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +ifdef _cdbs_tarball_dir +DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) +else +DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) +endif + +include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) + +export kde_cgidir = \$${libdir}/cgi-bin +export kde_confdir = \$${sysconfdir}/trinity +export kde_htmldir = \$${datadir}/doc/kde/HTML + +ifeq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) +endif + +ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_final = + cdbs_kde_enable_debug = --enable-debug=yes +else + cdbs_kde_enable_debug = --disable-debug +endif + +ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) + cdbs_kde_enable_debug = --enable-debug=full +endif + +cdbs_configure_flags += --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin +DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include/kde" +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el + +$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: + if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi + +cleanbuilddir:: + -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) + +common-build-arch common-build-indep:: debian/stamp-kde-apidox +debian/stamp-kde-apidox: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) + touch $@ + +common-install-prehook-impl:: + mkdir -p po + -XGETTEXT=/usr/bin/kde-xgettext EXTRACTATTR=/opt/trinity/bin/extractattr sh $(DEB_SRCDIR)/admin/cvs.sh extract-messages + -for file in po/*pot; do \ + sed "s/charset=CHARSET/charset=UTF-8/" -i $$file; \ + done + +common-install-arch common-install-indep:: common-install-kde-apidox +common-install-kde-apidox:: + $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR)) + +clean:: + rm -f debian/stamp-kde-apidox + rm -rf po/*.pot + +# This is a convenience target for calling manually. It's not part of +# the build process. +buildprep: clean apply-patches + $(MAKE) -f admin/Makefile.common dist + debian/rules clean + +endif diff --git a/ubuntu/maverick/applications/kmymoney/debian/cdbs/team-members b/ubuntu/maverick/applications/kmymoney/debian/cdbs/team-members new file mode 100644 index 000000000..05761af6e --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/cdbs/team-members @@ -0,0 +1,16 @@ +Sune Vuorela +Ana Beatriz Guerrero Lopez +Fathi Boudra +Modestas Vainius +Josh Metzler +Isaac Clerencia +Adeodato Simó +Adeodato Simo +Christopher Martin +Daniel Schepler +Sarah Hobbs +Nacho Barrientos Arias +Ricardo Javier Cardenes Medina +Ricardo Cardenes +Armin Berres +Francesco Pedrini diff --git a/ubuntu/maverick/applications/kmymoney/debian/cdbs/uploaders.mk b/ubuntu/maverick/applications/kmymoney/debian/cdbs/uploaders.mk new file mode 100644 index 000000000..31adfe31e --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/cdbs/uploaders.mk @@ -0,0 +1,29 @@ + +MAINTAINER=Debian Qt/KDE Maintainers +UPLOADERS=$(shell grep -e +++ -e "^ -- " debian/changelog | grep -v "debian-qt-kde@lists.debian.org" | head -13 | /bin/sed 's/^\s*//;s/\s*$$//;s/^+++\? Changes by //;s/^+++\? //;s/-- //;s/:$$//;s/ <.*//' | sort -u | while read line ; do grep "$$line" debian/cdbs/team-members ; done | tr "\n" ", " | sed 's/,/, /g;s/, $$//') + + +debian/control.tmp: + @if [ ! -e debian/control.in ] ; then \ + echo "this package is not yet prepared for using automatic update of uploaders"; \ + echo "Please do so."; \ + exit 1; \ + fi + @sed 's/@@@UPLOADERS@@@/$(UPLOADERS)/;s#@@@MAINTAINER@@@#$(MAINTAINER)#' debian/control.in > debian/control.tmp + +check-uploaders: debian/control.tmp + @if ! diff -q debian/control debian/control.tmp ; then \ + echo "WARNING:: Control file differs from manually generated one" ; \ + echo "WARNING:: Please update it manually and check it afterwards" ; \ + echo "WARNING:: Uploaders are updated by debian/rules update-uploaders" ;\ + echo "WARNING:: If this is a binNMU, NMU or security upload, just ignore" ;\ + fi + + +clean:: + rm -f debian/control.tmp + +update-uploaders: debian/control.tmp + @mv -f debian/control.tmp debian/control + +makebuilddir:: check-uploaders diff --git a/ubuntu/maverick/applications/kmymoney/debian/cdbs/versions.pl b/ubuntu/maverick/applications/kmymoney/debian/cdbs/versions.pl new file mode 100644 index 000000000..9ce11d8a3 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/cdbs/versions.pl @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; +my ($version3, $version3_next); +my ($version2, $version2_next); + +($version3 = $version) =~ s/-[^-]+$//; +($version2 = $version3) =~ s/\.[^.]+$//; + +($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; +($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; + +print "KDE-Version3=$version3\n"; +print "KDE-Version2=$version2\n"; +print "KDE-Next-Version3=$version3_next\n"; +print "KDE-Next-Version2=$version2_next\n"; diff --git a/ubuntu/maverick/applications/kmymoney/debian/changelog b/ubuntu/maverick/applications/kmymoney/debian/changelog new file mode 100644 index 000000000..c5c1e9a62 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/changelog @@ -0,0 +1,525 @@ +kmymoney2-trinity (1.0.4-0ubuntu0) maverick; urgency=low + + * Trinity build + + -- Timothy Pearson Mon, 04 Jul 2010 17:25:00 -0600 + +kmymoney2 (1.0.4-0ubuntu1) lucid; urgency=low + + * New upstream bugfix release + + -- Jonathan Thomas Sun, 18 Apr 2010 15:20:40 -0400 + +kmymoney2 (1.0.3-0ubuntu1) lucid; urgency=low + + * New upstream release + * Switch to source format 3.0 for a smaller tarball to upload + + -- Jonathan Thomas Thu, 18 Feb 2010 13:09:45 -0500 + +kmymoney2 (1.0.2-1ubuntu1) lucid; urgency=low + + * Merge with Debian Testing, remaining change: + - Compile --without-arts since aRts is no longer around + + -- Jonathan Thomas Tue, 03 Nov 2009 12:51:50 -0500 + +kmymoney2 (1.0.2-1) unstable; urgency=low + + * New upstream release. + + -- Fathi Boudra Mon, 05 Oct 2009 10:01:13 +0200 + +kmymoney2 (1.0.2-0ubuntu1) karmic; urgency=low + + * Sync with Debian + * New upstream release (LP: #432725) + * Compile --without-arts since aRts is no longer around + + -- Jonathan Thomas Thu, 17 Sep 2009 19:45:56 -0400 + +kmymoney2 (1.0.0-1) unstable; urgency=low + + * New upstream release. (Closes: #542503) + - fix a crash when opening a custom report caused by an invalid chart type. + (Closes: #522354) + * Update debian/control: + - Cleanup build dependency. Remove cdbs, gs-common, html2ps and + libxml++2.6-dev. + - Add libsqlite3-dev build dependency. + - Bump Standards-Version from 3.8.0 to 3.8.3 (add debian/README.source). + * Update debian/copyright: + - Add Alvaro Soliverez. + - Add Qt3 SQLite3 Library copyright. + * Rename debian/docs to debian/kmymoney2.docs file. + * Update debian/kmymoney2.install: + - Add libsqlite3.so (Qt3 SQLite3 driver). + * Remove files: + - debian/kmymoney2.lintian-overrides + - debian/kmymoney2.postinst + - debian/kmymoney2.postrm + * Update debian/rules: + - Convert to dh usage. + - Add a workaround for libsqlite3.so installation. + + -- Fathi Boudra Sat, 22 Aug 2009 23:49:59 +0200 + +kmymoney2 (0.9.3-1) unstable; urgency=low + + * New upstream release. (Closes: #516980) + * Fix some lintian warnings: + - Build-depends on chrpath to remove RPATH. + - Add missing ${misc:Depends}. + * Update copyright. Some informations were wrong. + * Update installed files: add OFX plugin. (Closes: #517145) + * Cleanup lintian overrides. + * Add postinst and postrm scripts for update-menus call and dh_desktop + usage. + * Update rules: call dh_desktop. + + -- Fathi Boudra Sun, 08 Mar 2009 14:00:54 +0100 + +kmymoney2 (0.9.2-1) unstable; urgency=low + + * New upstream release + * Update lintian-overrides libkmm-mymoney5 + * Add Build-Depends: libxml++2.6-dev + + -- Mark Purcell Tue, 21 Oct 2008 22:49:57 +1100 + +kmymoney2 (0.9-3) unstable; urgency=low + + * Upgrade to Standards-Version: 3.8.0 - no changes necessary + * Remove unnecessary quilt Build-Depends: Fixes lintian:quilt-build- + dep-but-no-series-file + * Cleanup diff - Fixes lintian:patch-system-but-direct-changes-in-diff + * Add lintian-overrides - Fixes lintian:no-symbols-control-file + * Set debhelper compatibility level 7 + + -- Mark Purcell Tue, 09 Sep 2008 21:47:40 +1000 + +kmymoney2 (0.9-2) unstable; urgency=low + + * Add kmymoney-dev package to fix kmymoney2-plugin-aqbanking FTBFS. + (Closes: #482625) + + -- Fathi Boudra Sat, 24 May 2008 18:40:44 +0200 + +kmymoney2 (0.9-1) unstable; urgency=low + + * New upstream release. (Closes: #360022, #480487) + * Recommend kmymoney2-plugin-aqbanking. Thanks to Micha Lenk for his work. + (Closes: #434278) + * Split architecture independent data into kmymoney2-common package. + (Closes: #473054) + * Update copyright file: add KDChart copyright. + + -- Fathi Boudra Sat, 17 May 2008 08:55:20 +0200 + +kmymoney2 (0.8.9-1) unstable; urgency=low + + * New upstream release. (Closes: #472827) + * Remove patches merged upstream: + * 07_ofximport_ldflags + * 08_remove_deprecated_miniicon + * 10_fix_gcc4.3 + + -- Fathi Boudra Sat, 05 Apr 2008 10:43:03 +0200 + +kmymoney2 (0.8.8-2) unstable; urgency=low + + [ Ana Beatriz Guerrero Lopez ] + * Team upload to address FTBFS with GCC 4.3. + * Patch to fix FTBFS with GCC 4.3. (Closes: #455675) + + -- Debian KDE Extras Team Sun, 23 Mar 2008 18:52:44 +0100 + +kmymoney2 (0.8.8-1) unstable; urgency=low + + * New upstream release. (Closes: #451785, #434278, #455675, #460414) + + [Fathi Boudra] + * Bump compat to 6. + * Update my e-mail address. + * Bump debhelper to 6. + * Switch to quilt patch system. + * Replace automake1.9 build dependency by automake. + * Add libtool build dependency. + * Bump Standard-Version to 3.7.3. + * Use Homepage field. + * Add Vcs-Browser and Vcs-Svn fields. + * Update lintian override. + * Update menu section to latest Debian menu policy. + * Build with --as-needed linker flag. + * Add clean target. Useful for create-buildprep script. + * Add patches: + * Update admin directory. + * Update libtool.m4.in. + * Fix ofximport plugin LDFLAGS. + * Remove deprecated miniicon entry from desktop file. + + [Mark Purcell] + * Remove get-orig-source targets. sf.net sillyness. + + -- Fathi Boudra Sun, 23 Dec 2007 18:00:06 +0100 + +kmymoney2 (0.8.7-2) unstable; urgency=low + + * Don't build developer pdf docs, we didn't ship anyway + - FTBFS: Bus error in ps2pdf14 (Closes: #434676) + + -- Mark Purcell Wed, 25 Jul 2007 22:05:51 +0100 + +kmymoney2 (0.8.7-1) unstable; urgency=low + + * New upstream release + - Upstream changlog: Fixed #1723325 (Cannot quit the program) + - Cannot exit KMyMoney2 (Closes: #403939) + - Upstream changlog: Use dash as standard separator if no short date + - Date field separator displayed as letter a (Closes: #427122) + * Remove Build-Depends: libaqbanking16-dev, refer to NEWS.debian + - OpenSSL license violation (Closes: #423379) + * Document lack of online banking in NEWS.Debian + + -- Mark Purcell Sun, 22 Jul 2007 22:27:48 +0100 + +kmymoney2 (0.8.6-1) unstable; urgency=low + + * New upstream release + - Crashes when updating the amount of a scheduled transaction to 0.0 + (Closes: #412264) + - error while loading shared libraries: libofx.so.3 (Closes: #385773) + - ~/stripped.txt file created after updating currencies (Closes: #412267) + - Crashes when updating the amount of a scheduled transaction to 0.0 + (Closes: #412264) + * Update debian/rules get-orig-source target + * Update debian/watch + * Lintian cleanup: package-has-a-duplicate-build-relation gs-common, + gs-common + + -- Mark Purcell Sat, 10 Mar 2007 10:37:51 +0000 + +kmymoney2 (0.8.5-1+b1) unstable; urgency=low + + * Binary-only non-maintainer upload for i386; no source changes. + * Rebuild against libofx3 + + -- Debian/i386 Build Daemon Tue, 12 Sep 2006 01:39:33 -0700 + +kmymoney2 (0.8.5-1) unstable; urgency=low + + * New upstream release + * Remove 10_add_autconf2.60_support.diff, included upstream + * Remove 11_fix_bug_374881.diff, included upstream + + -- Mark Purcell Thu, 31 Aug 2006 22:43:04 +0100 + +kmymoney2 (0.8.4-5) unstable; urgency=low + + * Renamed dbug374881.diff to 10_fix_bug_374881.diff + * Add autoconf2.60 support patch + * Renamed override to kmymoney2.lintian-overrides and use it + * compat: bumped to 5 + * control: + * add myself in uploaders + * cleanup build-depends + * bumped standards version to current 3.7.2 + * dirs: removed, not needed + * rules: + * cleanup + * replace DEB_CONFIGURE_USER_FLAG by DEB_CONFIGURE_EXTRA_FLAG + * remove autools.mk, not needed + * remove --disable-shared (Closes: #378181, #383795) + + -- Fathi Boudra Tue, 27 Jun 2006 22:45:47 +0100 + +kmymoney2 (0.8.4-4) unstable; urgency=low + + * kmymoney2 - FTBFS: cd: /home/buildd: No such file or directory + (Closes: #374881) - Thanks /Sune + * DEB_CONFIGURE_USER_FLAGS = --disable-shared + - Fixes: non-dev-pkg-with-shlib-symlink package-name-doesnt-match- + sonames + * debian/compat 4 + + -- Mark Purcell Tue, 27 Jun 2006 22:07:26 +0100 + +kmymoney2 (0.8.4-3) unstable; urgency=low + + * export LDFLAGS=-lgwenhywfar -laqbanking -lqbanking -lkdeui + -- Fixes: FTBFS in sid (problem with kbanking) (Closes: #373707) + + -- Mark Purcell Wed, 21 Jun 2006 16:34:03 +0100 + +kmymoney2 (0.8.4-2) unstable; urgency=low + + * Build-Depends: libaqbanking16-dev | libaqbanking-dev + + -- Mark Purcell Wed, 24 May 2006 07:29:54 +0100 + +kmymoney2 (0.8.4-1) unstable; urgency=low + + * New upstream release + * Disable (Build-Depends: libaqbanking0-dev) for this release as waiting for + libaqbanking0-dev is taking too long. See #359883. + - Uninstallable in Sid (Closes: #360164) + + -- Mark Purcell Sat, 20 May 2006 23:21:37 +0100 + +kmymoney2 (0.8.3-2) unstable; urgency=low + + * Rebuild: Fixes: Uninstallable in Sid (Closes: #360164) + + -- Mark Purcell Fri, 31 Mar 2006 07:29:14 +0100 + +kmymoney2 (0.8.3-1) unstable; urgency=low + + * New upstream release + . Account tree collapses without user approval (Closes: #347698) + . qif import: crash in finishImport() (Closes: #329995) + . '???' symbols in russian locale (Closes: #311768) + . each account and category should be sum of subaccounts/subcategories + (Closes: #311782) + . [INTL: en_GB] [PATCH] Completes the en_GB.po translation (Closes: + #345581) + . [INTL:de] German PO file corrections (Closes: #314006) + . Account tree collapses without user approval (Closes: #347698) + . default geometry too large for screen (Closes: #345815) + * Update debian/control + + -- Mark Purcell Wed, 22 Feb 2006 18:11:14 +0000 + +kmymoney2 (0.8.2-4) unstable; urgency=low + + * Include debian/patches/configure.patch to attempt to resolve $HOME + issues + + -- Mark Purcell Fri, 3 Feb 2006 09:24:39 +1100 + +kmymoney2 (0.8.2-3) unstable; urgency=low + + * Really Build-Depend on cdbs + - kmymoney2_0.8.2-2(hppa/unstable): FTBFS: missing build-depends: cdbs + (Closes: #350737) + - FTBFS: /usr/share/cdbs/1/class/autotools.mk: No such file or + directory (Closes: #349252) + - kmymoney2_0.8-6 (unstable): fails to build (Closes: #332307) + * Add DEB_CONFIGURE_USER_FLAGS = --enable-kbanking --enable-ofxbanking + --enable-ofxplugin --enable-pdf-docs + - Can't import ofx files anymore (Closes: #343886) + + -- Mark Purcell Tue, 31 Jan 2006 23:54:30 +0000 + +kmymoney2 (0.8.2-2) unstable; urgency=low + + * Build Depends: cdbs + + -- Mark Purcell Tue, 24 Jan 2006 09:07:40 +0000 + +kmymoney2 (0.8.2-1) unstable; urgency=low + + * New Upstream Release + * Maintainer: Debian KDE Extras Team + * Use /usr/share/cdbs/1/class/kde.mk in debian/rules again + + -- Mark Purcell Tue, 17 Jan 2006 20:19:08 +0000 + +kmymoney2 (0.8.1-3) unstable; urgency=low + + * Switch to cdbs + * Remove build-depends libqt3-compat-headers (Closes: #338952) + + -- Mark Purcell Mon, 14 Nov 2005 07:07:45 +0000 + +kmymoney2 (0.8.1-2) unstable; urgency=low + + * configure --enable-kbanking + * Build-Depends: libaqbanking0-dev >= 1.5.99) + + -- Mark Purcell Mon, 7 Nov 2005 07:54:17 +0000 + +kmymoney2 (0.8.1-1) unstable; urgency=low + + * New upstream release + * Disable --kbanking for this upload + + -- Mark Purcell Sun, 6 Nov 2005 23:01:59 +0000 + +kmymoney2 (0.8-7) unstable; urgency=low + + * Add Build-Depends: libkbanking-dev + * debian/rules --enable-kbanking + - Please enable HBCI support in kmymoney2 (Closes: #331564) + * Add debian/watch + + -- Mark Purcell Sun, 9 Oct 2005 17:11:17 +0100 + +kmymoney2 (0.8-6) unstable; urgency=low + + * Rebuild for libofx + - Can you compile kmymoney2 against libofx2 instead of libofx1c2 + please ? (Closes: #326937) + * fix old-fsf-address-in-copyright-file + + -- Mark Purcell Tue, 6 Sep 2005 22:13:11 +0100 + +kmymoney2 (0.8-5) unstable; urgency=low + + * Remove AUTOMAKE=automake1.6 from debian/rules + + -- Mark Purcell Sun, 21 Aug 2005 21:34:34 +0100 + +kmymoney2 (0.8-4) unstable; urgency=low + + * Add Build-Depends: libofx-dev + + -- Mark Purcell Sun, 21 Aug 2005 16:57:04 +0100 + +kmymoney2 (0.8-3) unstable; urgency=low + + * Lntian cleanup: + * Rm config.log + * Rm kderemove + + -- Mark Purcell Fri, 19 Aug 2005 07:44:50 +0100 + +kmymoney2 (0.8-2) experimental; urgency=low + + * C++ migration + * Build-Depends: kdelibs4-dev (>= 4:3.4.2-1) + + -- Mark Purcell Fri, 19 Aug 2005 07:22:23 +0100 + +kmymoney2 (0.8-1) experimental; urgency=low + + * New upstream release + * Closes: #319314: New upstream version available + * Upload to experimental while c++ migration on + + -- Mark Purcell Sat, 13 Aug 2005 13:13:24 +0100 + +kmymoney2 (0.7.5-1) experimental; urgency=low + + * New upstream release + * New upstream version available (Closes: #319314) + * Remove Build-Depends: libofx-dev to upload to experimental + + -- Mark Purcell Wed, 10 Aug 2005 20:41:38 +0100 + +kmymoney2 (0.7.4-1) unstable; urgency=low + + * New upstream release + + -- Mark Purcell Wed, 20 Jul 2005 10:24:07 +1000 + +kmymoney2 (0.7.3-1) unstable; urgency=low + + * New upstream release + + -- Mark Purcell Sat, 9 Jul 2005 08:18:14 +0100 + +kmymoney2 (0.7.2-1) unstable; urgency=low + + * New upstream release + * Add Build-Depends: html2ps + * Add Build-Depends: gs-common + * debian/rules add dh_makeshlibs + + -- Mark Purcell Wed, 1 Jun 2005 21:35:30 +0100 + +kmymoney2 (0.7.0-2) unstable; urgency=low + + * Enable kbanking + + -- Mark Purcell Sun, 15 May 2005 19:23:32 +0100 + +kmymoney2 (0.7.0-1) unstable; urgency=low + + * New upstream release + * If people would like to see this package in Debian unstable quicker + (http://www.kde-apps.org/content/show.php?content=10180) + please do one of two things: + - Provide me with a sourceforge compatible debian/watch file and/or + - File a wishlist bug report at http://bugs.debian.org/kmymoney2 + * Add Build-Depends: libofx-dev + * Closes: #270028: it does not appear in the proper KDE menu section. + - Add Categories=Qt;KDE;Office to kmymoney2.destop + + -- Mark Purcell Sun, 15 May 2005 12:45:18 +0100 + +kmymoney2 (0.6.4-1) unstable; urgency=low + + * New upstream release + + -- Mark Purcell Thu, 4 Nov 2004 18:14:33 +1100 + +kmymoney2 (0.6.1-2) unstable; urgency=low + + * configure --mandir=\$${prefix}/share/man (Closes: Bug#267850) + + -- Mark Purcell Sat, 4 Sep 2004 20:37:10 +1000 + +kmymoney2 (0.6.1-0sarge1) testing-proposed-updates; urgency=high + + * Rebuild for sarge (KDE3.2) + * configure --mandir=\$${prefix}/share/man (Closes: Bug#267850) + * Remove debian/kmymoney2.1, its included upstream + * Remove depends-on-build-essential-package-without-using-version g++ + * man page doc/en/Makefile.in gzip -9 + + -- Mark Purcell Sat, 4 Sep 2004 19:10:26 +1000 + +kmymoney2 (0.6.1-1) unstable; urgency=low + + * New upstream release + * Closes: #248527: crashes during the loading of a files generated and + saved in a previous session. + * Closes: #225404: New categories doesn't show up in view + * Closes: #256211: New version available upstream + * New Maintainer (Closes: Bug#266933) + + -- Mark Purcell Sat, 21 Aug 2004 12:03:36 +1000 + +kmymoney2 (0.5.1-4) unstable; urgency=low + + * Test build for ITA + + -- Mark Purcell Sat, 21 Aug 2004 11:52:14 +1000 + +kmymoney2 (0.5.1-3) unstable; urgency=low + + * recompiled with newer libxml++ (closes: bug#228732) + * Removed automake from build-dependencies + * Removed xlibs fix + * Put quoted strings in the menu file + + -- Karolina Lindqvist Sat, 24 May 2003 22:20:19 +0200 + +kmymoney2 (0.5.1-2) unstable; urgency=low + + * 0-day NMU. + * Applied the patch from the BTS to fix the FTBFS (closes: bug#200365). + + -- Aurelien Jarno Sun, 14 Sep 2003 04:14:44 +0200 + +kmymoney2 (0.5.1-1) unstable; urgency=low + + * Adopted the package (closes: Bug#190069) + * New upstream release, (closes: #187050 and #189994) + * Fixed rules file for KDE 3.1.1, added pixmap, overrides and man page + * Should have build-depend on libxml2-dev and libxml++-dev + + -- Karolina Lindqvist Sat, 24 May 2003 22:20:19 +0200 + +kmymoney2 (0.4rel-1) unstable; urgency=low + + * New upstream release. + + -- martin f. krafft Sun, 8 Sep 2002 19:12:15 +0200 + +kmymoney2 (0.4pre2-1) unstable; urgency=low + + * Initial release. + + -- Martin F. Krafft Tue, 26 Mar 2002 14:47:31 +0100 + diff --git a/ubuntu/maverick/applications/kmymoney/debian/compat b/ubuntu/maverick/applications/kmymoney/debian/compat new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/compat @@ -0,0 +1 @@ +7 diff --git a/ubuntu/maverick/applications/kmymoney/debian/control b/ubuntu/maverick/applications/kmymoney/debian/control new file mode 100644 index 000000000..e2790dbf1 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/control @@ -0,0 +1,35 @@ +Source: kmymoney2-trinity +Section: kde +Priority: optional +Maintainer: Timothy Pearson +XSBC-Original-Maintainer: Debian KDE Extras Team +Uploaders: Mark Purcell , Fathi Boudra +Build-Depends: debhelper (>= 7.0.50~), cdbs, chrpath, automake, libtool, kdelibs4-trinity-dev, libofx-dev, libsqlite3-dev +Standards-Version: 3.8.4 + +Package: kmymoney2-trinity +Architecture: any +Depends: ${shlibs:Depends}, ${shlibs:Misc}, ${misc:Depends}, + kmymoney2-common-trinity (>= ${source:Version}) +Recommends: kmymoney2-plugin-aqbanking-trinity +Description: personal finance manager for TDE + KMyMoney is the Personal Finance Manager for TDE. It operates similar to + MS-Money and Quicken, supports different account types, categorisation of + expenses, QIF import/export, multiple currencies and initial online banking + support. + +Package: kmymoney2-common-trinity +Architecture: all +Depends: ${misc:Depends} +Recommends: kmymoney2-trinity (>= ${source:Version}) +Description: KMyMoney architecture independent files + This package contains architecture independent files needed for KMyMoney to + run properly. It also provides KMyMoney documentation. Therefore, unless you + have 'kmymoney2' package installed, you will hardly find this package useful. + +Package: kmymoney2-trinity-dev +Section: libdevel +Architecture: any +Depends: ${misc:Depends}, kmymoney2-trinity (= ${binary:Version}) +Description: KMyMoney development files + This package contains development files needed for KMyMoney plugins. diff --git a/ubuntu/maverick/applications/kmymoney/debian/copyright b/ubuntu/maverick/applications/kmymoney/debian/copyright new file mode 100644 index 000000000..6ba1a0edf --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/copyright @@ -0,0 +1,61 @@ +This package was debianized by: + + Martin F. Krafft on Tue, 26 Mar 2002 14:47:31 +0100 + +It was downloaded from: + + http://kmymoney2.sourceforge.net + +Upstream Authors: + + Thomas Baumgart + Michael Edwardes + Felix Rodriguez + Javier Campos Morales + Kevin Tambascio + John C + Arni Ingimundarson + Alvaro Soliverez + +Copyright: + + Copyright (C) 2000-2009 Thomas Baumgart + Copyright (C) 2009 Alvaro Soliverez + Copyright (C) 2000-2006 Michael Edwardes + Copyright (C) 2000-2006 Felix Rodriguez + Copyright (C) 2000-2006 Javier Campos Morales + Copyright (C) 2000-2006 Kevin Tambascio + Copyright (C) 2000-2006 John C + +Copyright for KDChart Library: + + Copyright (C) 2001-2003 Klarälvdalens Datakonsult AB. + + The KDChart Library 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. + +Copyright for Qt3 SQLite3 Library: + + Copyright (C) 1992-2005 Trolltech AS. All rights reserved. + Modified by Stefano Salvador + +KMyMoney 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-2' +and `/usr/share/common-licenses/GPL-3'. diff --git a/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-common-trinity.install b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-common-trinity.install new file mode 100644 index 000000000..f8c7e9a01 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-common-trinity.install @@ -0,0 +1,17 @@ +opt/trinity/share/apps/kmm_ofximport/kmm_ofximport.rc +opt/trinity/share/apps/kmymoney2/html/ +opt/trinity/share/apps/kmymoney2/icons/ +opt/trinity/share/apps/kmymoney2/kmymoney2ui.rc +opt/trinity/share/apps/kmymoney2/misc/financequote.pl +opt/trinity/share/apps/kmymoney2/pics/startlogo.png +opt/trinity/share/apps/kmymoney2/pics/titlelabel_background.png +opt/trinity/share/apps/kmymoney2/templates/ +opt/trinity/share/apps/kmymoney2/tips +opt/trinity/share/config.kcfg/kmymoney2.kcfg +opt/trinity/share/doc/ +opt/trinity/share/icons/ +opt/trinity/share/locale/ +opt/trinity/share/mimelnk/application/x-kmymoney2.desktop +opt/trinity/share/services/kmm_ofximport.desktop +opt/trinity/share/servicetypes/kmymoneyimporterplugin.desktop +opt/trinity/share/servicetypes/kmymoneyplugin.desktop diff --git a/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity-dev.install b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity-dev.install new file mode 100644 index 000000000..4c3b73990 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity-dev.install @@ -0,0 +1,3 @@ +opt/trinity/include/kde/kmymoney/* +opt/trinity/lib/lib*.la +opt/trinity/lib/lib*.so diff --git a/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.docs b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.docs new file mode 100644 index 000000000..cbc02b603 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.docs @@ -0,0 +1 @@ +README.Fileformats diff --git a/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.install b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.install new file mode 100644 index 000000000..ace2df368 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2-trinity.install @@ -0,0 +1,6 @@ +debian/kmymoney2.xpm opt/trinity/share/pixmaps/ +opt/trinity/bin/kmymoney* +opt/trinity/lib/kde3/kmm_ofximport.la +opt/trinity/lib/kde3/kmm_ofximport.so +opt/trinity/lib/lib*.so.* +opt/trinity/share/applications/kde/kmymoney2.desktop diff --git a/ubuntu/maverick/applications/kmymoney/debian/kmymoney2.xpm b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2.xpm new file mode 100644 index 000000000..8bf0321d5 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/kmymoney2.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char * kmymoney2_kmymoney2_xpm[] = { +"32 32 13 1", +" c None", +". c #FFFFFF", +"+ c #007f00", +"@ c #E5E5E5", +"# c #CCCCCC", +"$ c #B2B2B2", +"% c #666667", +"& c #333333", +"* c #7F7F7F", +"= c #999999", +"- c #000000", +"; c #4C4C4C", +"> c #191919", +" **%%%%%%%%;;;;&- ", +" %##########$$==;- ", +" *#..........@@@;*- ", +" %#...........@@;#*- ", +" %#.............;.#*- ", +" %#....======...%..#*- ", +" %#....======...%@..#*- ", +" %#.............%#@..#*- ", +" %#....====.....%;;;;;&&- ", +" = %#.=@........$$@@@$=*%%- ", +" =;%#@=&*.......$+>@.@@#$=%- ", +" $%#$#@%$.......$+&@.@@@@$=- ", +" %#....===*+++++++;$@##$- ", +" %#.....$+++++++++;%@@@$- ", +" %#....*++++++%+++&%@@@$- ", +" %#....++++;$+-@@$%@@@@$- ", +" %#....++++&++&===*=@@@$- ", +" %#....+++++++%%*@@@@@@$- ", +" %#....=+++++++++&=@@@@$- ", +" %#.....@@$+++++++>@@@#$- ", +" = %#.=@..@.@++&++++-@@@@$- ", +" =;%#@=;*+&;*=+;;++++>*@@#$- ", +" $%#$#@%$+++++++++++&=*#@@$- ", +" %#..$++++++++++&%**@##$- ", +" %#..@$+++++++%*$@#*###$& ", +" %#.@@.*=*+%&*******###$& ", +" %#@@@@*@$+&*@@@@##*###$& ", +" ;#.@@@==*+&%*******###$& ", +" %#@@@@@@#$*@@@#######$$& ", +" ;#@@@@@@@@@@#@########$& ", +" &#$$$$$$$$$$$$$$$$$$$$$& ", +" >&&&&&&&&&&&&&&&&>&&>&&> "}; diff --git a/ubuntu/maverick/applications/kmymoney/debian/menu b/ubuntu/maverick/applications/kmymoney/debian/menu new file mode 100644 index 000000000..3a6b25af8 --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/menu @@ -0,0 +1,7 @@ +?package(kmymoney2):\ + needs="x11"\ + section="Applications/Office"\ + hints="KDE"\ + title="KMyMoney"\ + icon="/opt/trinity/share/pixmaps/kmymoney2.xpm"\ + command="/opt/trinity/bin/kmymoney2" diff --git a/ubuntu/maverick/applications/kmymoney/debian/rules b/ubuntu/maverick/applications/kmymoney/debian/rules new file mode 100755 index 000000000..efb7a96ea --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include debian/cdbs/kde.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde +DEB_CONFIGURE_MANDIR := /opt/trinity/share/man +DEB_CONFIGURE_PREFIX := /opt/trinity +DEB_CONFIGURE_INFODIR := /opt/trinity/share/info + +cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + +DEB_CONFIGURE_EXTRA_FLAGS := --prefix=/opt/trinity --with-extra-libs=/opt/trinity/lib --with-extra-includes=/opt/trinity/include/kde --disable-sqlite3 + +LDFLAGS += -Wl,--as-needed + +post-patches:: debian/stamp-bootstrap + +debian/stamp-bootstrap: + ! [ -f /usr/share/libtool/ltmain.sh ] || \ + cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh + ! [ -f /usr/share/libtool/config/ltmain.sh ] || \ + cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + + make -f admin/Makefile.common cvs + touch debian/stamp-bootstrap + +clean:: + rm -f po/*.gmo diff --git a/ubuntu/maverick/applications/kmymoney/debian/watch b/ubuntu/maverick/applications/kmymoney/debian/watch new file mode 100644 index 000000000..b80efc65c --- /dev/null +++ b/ubuntu/maverick/applications/kmymoney/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/kmymoney2/kmymoney2-([\d].[\d].[\d])\.tar\.bz2 debian svn-upgrade -- cgit v1.2.3