diff options
Diffstat (limited to 'debian/_base/applications/office/koffice')
45 files changed, 20 insertions, 1045 deletions
diff --git a/debian/_base/applications/office/koffice/debian/cdbs/debian-tde.mk b/debian/_base/applications/office/koffice/debian/cdbs/debian-tde.mk deleted file mode 100644 index f36e3527c..000000000 --- a/debian/_base/applications/office/koffice/debian/cdbs/debian-tde.mk +++ /dev/null @@ -1,246 +0,0 @@ -# -*- mode: makefile; coding: utf-8 -*- -# Copyright © 2003 Christopher L Cheney <ccheney@debian.org> -# Copyright © 2019 TDE Team -# Description: A class for TDE packages; sets TDE 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. - -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 - -# for dh_icons -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) - -# 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: -ifndef _cdbs_class_cmake - cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in -ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" - cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh -endif -ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" - cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh -endif - $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; -endif - touch debian/stamp-cvs-make - -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 - -ifndef _cdbs_class_cmake -include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) -endif - -ifdef _cdbs_class_cmake -ifneq "$(wildcard /usr/bin/ninja)" "" -MAKE = ninja -v -DEB_MAKE_ENVVARS += DESTDIR=$(DEB_DESTDIR) -DEB_MAKE_INSTALL_TARGET = install -DEB_CMAKE_NORMAL_ARGS += -GNinja -endif -endif - -ifndef _cdbs_rules_patchsys_quilt -DEB_PATCHDIRS := debian/patches/common debian/patches -endif - -export kde_cgidir = \$${libdir}/cgi-bin -export kde_confdir = \$${sysconfdir}/trinity -export kde_htmldir = \$${datadir}/doc/tde/HTML - -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) - -DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin -DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include" -DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el - -# The default gzip compressor has been changed in dpkg >= 1.17.0. -deb_default_compress = $(shell LANG=C dpkg-deb --version | head -n1 | \ - sed -e "s|.*version ||" -e "s| .*||" | \ - xargs -r dpkg --compare-versions 1.17.0 lt \ - && echo xz || echo gzip) -ifeq ($(deb_default_compress),gzip) -DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ - && echo xz || echo bzip2) -endif - -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 - -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 - -DEB_BUILD_PARALLEL ?= true - -cdbs_configure_flags += \ - --with-qt-dir=/usr/share/qt3 \ - --disable-rpath \ - --with-xinerama \ - $(cdbs_kde_enable_final) \ - $(cdbs_kde_enable_debug) - - -# This is a convenience target for calling manually. -# It's not part of the build process. -buildprep: clean apply-patches -ifndef _cdbs_class_cmake - $(MAKE) -f admin/Makefile.common dist -endif - debian/rules clean - -.tdepkginfo: - echo "# TDE package information" >.tdepkginfo - dpkg-parsechangelog | sed -n "s|^Source: |Name: |p" >>.tdepkginfo - dpkg-parsechangelog | sed -n "s|^Version: |Version: |p" >>.tdepkginfo - date +"DateTime: %m/%d/%Y %H:%M" -u -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo - -post-patches:: .tdepkginfo - -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 ) - # update multi-arch path in install files - ls -d debian/* | \ - grep -E "(install|links)$$" | \ - while read a; do \ - [ -d $$a ] || [ -f $$a.arch ] || \ - ! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \ - sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \ - done - -clean:: - rm -rf debian/man/out - -rmdir debian/man - rm -f debian/stamp-man-pages - rm -rf debian/shlibs-check - # revert multi-arch path in install files - ls -d debian/* | \ - grep -E "(install|links)$$" | \ - while read a; do \ - [ ! -f $$a.arch ] || \ - mv $$a.arch $$a; \ - done - -$(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 - 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/tde/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/tde/HTML/en/$$pkg; \ - cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \ - /opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/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/tde/HTML/en/$$pkg; \ - done - -common-build-indep:: debian/stamp-kde-apidox -debian/stamp-kde-apidox: - $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) - touch $@ - -common-install-indep:: common-install-kde-apidox -common-install-kde-apidox:: - $(if $(DEB_KDE_APIDOX),+DESTDIR=$(DEB_DESTDIR) $(DEB_MAKE_INVOKE) install-apidox) - -cleanbuilddir:: - -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) - -clean:: -ifndef _cdbs_class_cmake - 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 -endif - rm -f .tdepkginfo - rm -f debian/stamp-kde-apidox - rm -f debian/stamp-cvs-make - -endif diff --git a/debian/_base/applications/office/koffice/debian/cdbs/versions.pl b/debian/_base/applications/office/koffice/debian/cdbs/versions.pl deleted file mode 100644 index 1b110f7af..000000000 --- a/debian/_base/applications/office/koffice/debian/cdbs/versions.pl +++ /dev/null @@ -1,19 +0,0 @@ -#!/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/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; -($version2 = $version3) =~ s/\.[^.]+$//; - -($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; -($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; - -print "TDE-Version3=$version3\n"; -print "TDE-Version2=$version2\n"; -print "TDE-Next-Version3=$version3_next\n"; -print "TDE-Next-Version2=$version2_next\n"; diff --git a/debian/_base/applications/office/koffice/debian/compat b/debian/_base/applications/office/koffice/debian/compat index ec635144f..f599e28b8 100644 --- a/debian/_base/applications/office/koffice/debian/compat +++ b/debian/_base/applications/office/koffice/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/debian/_base/applications/office/koffice/debian/control b/debian/_base/applications/office/koffice/debian/control index 257b2bce7..611ae5e6d 100644 --- a/debian/_base/applications/office/koffice/debian/control +++ b/debian/_base/applications/office/koffice/debian/control @@ -4,8 +4,8 @@ Priority: optional Maintainer: TDE Debian Team <team-debian@trinitydesktop.org> XSBC-Original-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Uploaders: Ana Beatriz Guerrero Lopez <ana@debian.org>, Ral Snchez Siles <rasasi78@gmail.com> -Build-Depends: cdbs (>= 0.4.52ubuntu18), debhelper (>= 9~), quilt, binutils (>= 2.14.90.0.7), recode, docbook-to-man, gawk, flex, tdelibs14-trinity-dev (>= 4:3.4.3), libaspell-dev, libfontconfig1-dev, libopenexr-dev, libpaper-dev, libreadline-dev | libreadline6-dev | libreadline5-dev, libtiff-dev, libwv2-dev (>= 0.2.2-4), libxml2-dev, libxslt1-dev, python-all-dev, ruby, ruby-dev, libwpd-dev, librevenge-dev | libwpd-dev (<< 0.10~) | libwpd8-dev, libpqxx-dev | libpqxx3-dev, default-libmysqlclient-dev | libmysqlclient-dev, sharutils, bzip2, libpoppler-tqt-dev, libexif-dev, libasound2-dev, libogg-dev, liblcms1-dev, automake, autoconf, libtool-bin | libtool (<< 2.4.2-1.11), libtool, libltdl-dev -Build-Depends-Indep: libtqtinterface-doc, graphviz, gsfonts-x11 +Build-Depends: tde-cdbs (>= 0.4.52ubuntu18), debhelper (>= 10~), quilt, binutils (>= 2.14.90.0.7), recode, docbook-to-man, gawk, flex, tdelibs14-trinity-dev (>= 4:3.4.3), libaspell-dev, libfontconfig1-dev, libopenexr-dev, libpaper-dev, libreadline-dev | libreadline6-dev | libreadline5-dev, libtiff-dev, libwv2-dev (>= 0.2.2-4), libxml2-dev, libxslt1-dev, python3-all-dev, dh-python, ruby, ruby-dev, libwpd-dev, librevenge-dev | libwpd-dev (<< 0.10~) | libwpd8-dev, libpqxx-dev | libpqxx3-dev, default-libmysqlclient-dev | libmysqlclient-dev, sharutils, bzip2, libpoppler-tqt-dev, libexif-dev, libasound2-dev, libogg-dev, liblcms1-dev, automake, autoconf, libtool-bin | libtool (<< 2.4.2-1.11), libtool, libltdl-dev +Build-Depends-Indep: graphviz, gsfonts-x11 Standards-Version: 3.8.4 Homepage: http://www.koffice.org @@ -303,7 +303,7 @@ Section: libs Replaces: koffice-libs-trinity (<< 4:14.0.0~) Breaks: koffice-libs-trinity (<< 4:14.0.0~) Depends: ${shlibs:Depends}, koffice-data-trinity (>> ${TDE-Version3}~), koffice-data-trinity (<< ${TDE-Next-Version3}~) -Recommends: latex-xft-fonts, ruby, python-all +Recommends: latex-xft-fonts, ruby, python3-all Suggests: wordnet, texlive-base Description: common libraries and binaries for the Trinity Office Suite [Trinity] This package provides the libraries and binaries that are shared amongst diff --git a/debian/_base/applications/office/koffice/debian/karbon-trinity.install b/debian/_base/applications/office/koffice/debian/karbon-trinity.install index a03e53a02..8b0b8b25c 100644 --- a/debian/_base/applications/office/koffice/debian/karbon-trinity.install +++ b/debian/_base/applications/office/koffice/debian/karbon-trinity.install @@ -57,6 +57,7 @@ debian/tmp/opt/trinity/share/icons/hicolor/22x22/apps/karbon.png debian/tmp/opt/trinity/share/icons/hicolor/32x32/apps/karbon.png debian/tmp/opt/trinity/share/icons/hicolor/48x48/apps/karbon.png debian/tmp/opt/trinity/share/icons/hicolor/scalable/apps/karbon.svgz +debian/tmp/opt/trinity/share/man/man1/karbon.1 debian/tmp/opt/trinity/share/services/karbon_ai_import.desktop debian/tmp/opt/trinity/share/services/karbondefaulttools.desktop debian/tmp/opt/trinity/share/services/karbon_eps_export.desktop diff --git a/debian/_base/applications/office/koffice/debian/karbon-trinity.manpages b/debian/_base/applications/office/koffice/debian/karbon-trinity.manpages deleted file mode 100644 index 8a212a2b2..000000000 --- a/debian/_base/applications/office/koffice/debian/karbon-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/karbon.1 diff --git a/debian/_base/applications/office/koffice/debian/karbon.1 b/debian/_base/applications/office/koffice/debian/karbon.1 deleted file mode 100644 index 6a4cbb8ef..000000000 --- a/debian/_base/applications/office/koffice/debian/karbon.1 +++ /dev/null @@ -1,44 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KARBON 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -karbon \- a vector graphics application for the Trinity Office Suite -.SH SYNOPSIS -.B karbon -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKarbon\fP is a vector graphics application. -.PP -Note that the Trinity Office Suite comes with two graphics applications \- -Kontour (which is vector-based) and Chalk (which is raster-based). -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the karbon-specific options. -For a full summary of options, run \fIkarbon \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH AUTHOR -Karbon was written by Rob Buis <buis@kde.org>, Lennart Kudling -<kudling@kde.org>, Tomislav Lukman <tomislav.lukman@ck.hinet.hr> and -Benoit Vautrin <benoit.vautrin@free.fr>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kchart-trinity.install b/debian/_base/applications/office/koffice/debian/kchart-trinity.install index c5d3596c2..a6a595a2b 100644 --- a/debian/_base/applications/office/koffice/debian/kchart-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kchart-trinity.install @@ -32,6 +32,7 @@ debian/tmp/opt/trinity/share/doc/tde/HTML/en/kchart/*.png debian/tmp/opt/trinity/share/icons/hicolor/16x16/apps/kchart.png debian/tmp/opt/trinity/share/icons/hicolor/32x32/apps/kchart.png debian/tmp/opt/trinity/share/icons/hicolor/48x48/apps/kchart.png +debian/tmp/opt/trinity/share/man/man1/kchart.1 debian/tmp/opt/trinity/share/services/kchart_bmp_export.desktop debian/tmp/opt/trinity/share/services/kchart_jpeg_export.desktop debian/tmp/opt/trinity/share/services/kchart_mng_export.desktop diff --git a/debian/_base/applications/office/koffice/debian/kchart-trinity.manpages b/debian/_base/applications/office/koffice/debian/kchart-trinity.manpages deleted file mode 100644 index 38c864763..000000000 --- a/debian/_base/applications/office/koffice/debian/kchart-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/kchart.1 diff --git a/debian/_base/applications/office/koffice/debian/kchart.1 b/debian/_base/applications/office/koffice/debian/kchart.1 deleted file mode 100644 index 367f2e7ab..000000000 --- a/debian/_base/applications/office/koffice/debian/kchart.1 +++ /dev/null @@ -1,53 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KCHART 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kchart \- a chart drawing program for the Trinity Office Suite -.SH SYNOPSIS -.B kchart -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKChart\fP is a chart drawing application. It can be used to embed charts -into KOffice documents. KChart is easy to use and highly configurable. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kchart-specific options. -For a full summary of options, run \fIkchart \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kchart/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kchart/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kchart/\fP. -.SH AUTHOR -KChart was written by Kalle Dalheimer <kalle@kde.org>, -Laurent Montel <lmontel@mandrakesoft.com>, Karl-Heinz Zimmer <khz@kde.org> and -Reginald Stadlbauer <reggie@kde.org>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kformula-trinity.install b/debian/_base/applications/office/koffice/debian/kformula-trinity.install index c97a73fa5..c73fd674a 100644 --- a/debian/_base/applications/office/koffice/debian/kformula-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kformula-trinity.install @@ -18,5 +18,6 @@ debian/tmp/opt/trinity/share/icons/hicolor/16x16/apps/kformula.png debian/tmp/opt/trinity/share/icons/hicolor/22x22/apps/kformula.png debian/tmp/opt/trinity/share/icons/hicolor/32x32/apps/kformula.png debian/tmp/opt/trinity/share/icons/hicolor/48x48/apps/kformula.png +debian/tmp/opt/trinity/share/man/man1/kformula.1 debian/tmp/opt/trinity/share/services/kformulapart.desktop debian/tmp/opt/trinity/share/services/kformula_svg_export.desktop diff --git a/debian/_base/applications/office/koffice/debian/kformula-trinity.lintian b/debian/_base/applications/office/koffice/debian/kformula-trinity.lintian index 25a8c006f..806f0020c 100644 --- a/debian/_base/applications/office/koffice/debian/kformula-trinity.lintian +++ b/debian/_base/applications/office/koffice/debian/kformula-trinity.lintian @@ -1,4 +1,2 @@ kformula-trinity: no-shlibs-control-file opt/trinity/lib/libtdeinit_kformula.so -kformula-trinity: postinst-must-call-ldconfig opt/trinity/lib/libtdeinit_kformula.so -kformula-trinity: postrm-should-call-ldconfig opt/trinity/lib/libtdeinit_kformula.so kformula-trinity: package-name-doesnt-match-sonames libtdeinit-kformula diff --git a/debian/_base/applications/office/koffice/debian/kformula-trinity.manpages b/debian/_base/applications/office/koffice/debian/kformula-trinity.manpages deleted file mode 100644 index 35c78eaa9..000000000 --- a/debian/_base/applications/office/koffice/debian/kformula-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/kformula.1 diff --git a/debian/_base/applications/office/koffice/debian/kformula.1 b/debian/_base/applications/office/koffice/debian/kformula.1 deleted file mode 100644 index ebbd55afb..000000000 --- a/debian/_base/applications/office/koffice/debian/kformula.1 +++ /dev/null @@ -1,75 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KFORMULA 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kformula \- a formula editor for the Trinity Office Suite -.SH SYNOPSIS -.B kformula -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKFormula\fP is an easy to use formula editor. It provides the basic -input facilities and the support functionality you come to expect of a -KOffice application. But there is more. Some of its most exciting -features are: -.PP -.RS -Easy Greek letter insertion -.PP -Intelligent cursor movement -.PP -Advanced syntax highlighting -.PP -Multi-level undo support -.PP -LaTeX export (copy and paste into a text editor) -.RE -.PP -KFormula uses the KOffice formula drawing library. If you have to deal -with many formulae you may wish to use a KFormula object embedded in -KWord or KSpread. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kformula-specific options. -For a full summary of options, run \fIkformula \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -.BR kword (1), -.BR kspread (1). -.PP -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kformula/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kformula/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kformula/\fP. -.SH AUTHOR -KFormula was written by Andrea Rizzi <rizzi@kde.org>, -Stephan Kulow <coolo@kde.org>, Ulrich Kuettler <ulrich.kuettler@gmx.de>, -Heinrich Kuettler <heinrich.kuettler@gmx.de> and -Claus O. Wilke <wilke@caltech.edu>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kivio-trinity.install b/debian/_base/applications/office/koffice/debian/kivio-trinity.install index 289580d09..b1fa9d81d 100644 --- a/debian/_base/applications/office/koffice/debian/kivio-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kivio-trinity.install @@ -19,3 +19,4 @@ debian/tmp/opt/trinity/lib/trinity/straight_connector.la debian/tmp/opt/trinity/lib/trinity/straight_connector.so debian/tmp/opt/trinity/lib/libtdeinit_kivio.so debian/tmp/opt/trinity/lib/libkiviocommon.so.* +debian/tmp/opt/trinity/share/man/man1/kivio.1 diff --git a/debian/_base/applications/office/koffice/debian/kivio-trinity.manpages b/debian/_base/applications/office/koffice/debian/kivio-trinity.manpages deleted file mode 100644 index 1f348c0ca..000000000 --- a/debian/_base/applications/office/koffice/debian/kivio-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/kivio.1 diff --git a/debian/_base/applications/office/koffice/debian/kivio.1 b/debian/_base/applications/office/koffice/debian/kivio.1 deleted file mode 100644 index b6557f54f..000000000 --- a/debian/_base/applications/office/koffice/debian/kivio.1 +++ /dev/null @@ -1,47 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KIVIO 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kivio \- a flowcharting program for the Trinity Office Suite -.SH SYNOPSIS -.B kivio -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKivio\fP is a flowcharting program that offers basic flowcharting -abilities, but with a twist. Objects are scriptable, and a backend plugin -system offers the ability to make objects do just about anything. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kivio-specific options. -For a full summary of options, run \fIkivio \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -Some documentation from the program author -is available in \fI/usr/share/doc/kivio/\fP. -.SH AUTHOR -Kivio was written by Dave Marotti <lndshark@speakeasy.net>, -Max Judin <max@thekompany.com>, Dmitry Poplavsky <dima@kde.org>, -Peter Simonsson <psn@linux.se>, Ian Reinhart Geiser <geiseri@kde.org>, -Laurent Montel <montel@kde.org> and theKompany.com <info@thekompany.com>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/koconverter.1 b/debian/_base/applications/office/koffice/debian/koconverter.1 deleted file mode 100644 index 07529ada9..000000000 --- a/debian/_base/applications/office/koffice/debian/koconverter.1 +++ /dev/null @@ -1,58 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KOCONVERTER 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -koconverter \- convert between office suite file formats -.SH SYNOPSIS -.B koconverter -[ \fIgeneric-options\fP ] -[ \fB\-\-mimetype\fP \fImime\fP ] -\fIinput\fP \fIoutput\fP -.SH DESCRIPTION -\fBKOConverter\fP is the KOffice file format converter. It uses the -KOffice import and export filters to convert from any file format -that is understood by KOffice to any other. -.PP -This tool is part of the Trinity Office Suite. -.SH OPTIONS -Below are the koconverter-specific options. For a full summary of options, -run \fIkoconverter \-\-help\fP. -.TP -\fB\-\-mimetype\fP \fImime\fP -Use \fImime\fP as the mime type for the output file. This option should be -used when the desired type of output file cannot be determined from its -name alone. -.SH EXAMPLES -The following line will convert an Excel spreadsheet to a native KSpread -file. -.PP -.RS -\fIexample$\fP koconverter file.xls file.ksp -.RE -.PP -The following line will convert an Excel spreadsheet to a plain text -file. Note that this conversion is done internally by first importing -to a KSpread spreadsheet and then exporting as plain text. -.PP -.RS -\fIexample$\fP koconverter file.xls file.txt -.RE -.SH AUTHOR -KOConverter was written by David Faure <faure@kde.org>. -.br -This manual page was written by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.install b/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.install index 4be4f26eb..317098e2f 100644 --- a/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.install +++ b/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.install @@ -51,3 +51,5 @@ debian/tmp/opt/trinity/lib/libkstore.so.* debian/tmp/opt/trinity/lib/libkwmailmerge_interface.so.* debian/tmp/opt/trinity/lib/libkwmf.so.* debian/tmp/opt/trinity/lib/libkwordexportfilters.so.* +debian/tmp/opt/trinity/share/man/man1/koconverter.1 +debian/tmp/opt/trinity/share/man/man1/koscript.1 diff --git a/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.manpages b/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.manpages deleted file mode 100644 index 52c63b5d7..000000000 --- a/debian/_base/applications/office/koffice/debian/koffice-libs-trinity.manpages +++ /dev/null @@ -1,2 +0,0 @@ -debian/koconverter.1 -debian/koscript.1 diff --git a/debian/_base/applications/office/koffice/debian/koscript.1 b/debian/_base/applications/office/koffice/debian/koscript.1 deleted file mode 100644 index 419c52df0..000000000 --- a/debian/_base/applications/office/koffice/debian/koscript.1 +++ /dev/null @@ -1,39 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KOSCRIPT 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -koscript \- a script interpreter for the Trinity Office Suite -.SH SYNOPSIS -.B koscript -[ \fIgeneric-options\fP ] -\fIscript\fP [ \fB\-\-\fP \fIscript-options\fP ] -.SH DESCRIPTION -\fBKOScript\fP is the KOffice script interpreter. It is used to run the -given KOffice script. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the koscript-specific options. For a full summary of options, -run \fIkoscript \-\-help\fP. -.TP -\fB\-\-\fP \fIscript-options\fP -Pass \fIscript-options\fP as options to the script. -.SH AUTHOR -KOScript was written by Torben Weis <weis@kde.org>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/koshell-trinity.install b/debian/_base/applications/office/koffice/debian/koshell-trinity.install index 4b63bd352..dd3561570 100644 --- a/debian/_base/applications/office/koffice/debian/koshell-trinity.install +++ b/debian/_base/applications/office/koffice/debian/koshell-trinity.install @@ -17,3 +17,4 @@ debian/tmp/opt/trinity/share/icons/hicolor/32x32/apps/koshell.png debian/tmp/opt/trinity/share/icons/hicolor/48x48/apps/koshell.png debian/tmp/opt/trinity/share/icons/hicolor/64x64/apps/koshell.png debian/tmp/opt/trinity/share/icons/hicolor/scalable/apps/koshell.svgz +debian/tmp/opt/trinity/share/man/man1/koshell.1 diff --git a/debian/_base/applications/office/koffice/debian/koshell-trinity.lintian b/debian/_base/applications/office/koffice/debian/koshell-trinity.lintian index c77411ba2..888cebb0a 100644 --- a/debian/_base/applications/office/koffice/debian/koshell-trinity.lintian +++ b/debian/_base/applications/office/koffice/debian/koshell-trinity.lintian @@ -1,4 +1,2 @@ koshell-trinity: no-shlibs-control-file opt/trinity/lib/libtdeinit_koshell.so -koshell-trinity: postinst-must-call-ldconfig opt/trinity/lib/libtdeinit_koshell.so -koshell-trinity: postrm-should-call-ldconfig opt/trinity/lib/libtdeinit_koshell.so koshell-trinity: package-name-doesnt-match-sonames libtdeinit-koshell diff --git a/debian/_base/applications/office/koffice/debian/koshell-trinity.manpages b/debian/_base/applications/office/koffice/debian/koshell-trinity.manpages deleted file mode 100644 index fc332a5cc..000000000 --- a/debian/_base/applications/office/koffice/debian/koshell-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/koshell.1 diff --git a/debian/_base/applications/office/koffice/debian/koshell.1 b/debian/_base/applications/office/koffice/debian/koshell.1 deleted file mode 100644 index d1dc76870..000000000 --- a/debian/_base/applications/office/koffice/debian/koshell.1 +++ /dev/null @@ -1,36 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KOSHELL 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -koshell \- the Trinity Office Suite workspace -.SH SYNOPSIS -.B koshell -.RI "[ " generic-options " ]" -.SH DESCRIPTION -\fBKOShell\fP (the KOffice workspace) is a desktop with easy one-click -launchers for KOffice applications. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -For a full summary of options, run \fIkoshell \-\-help\fP. -.SH AUTHOR -KOShell was written by Torben Weis <weis@kde.org>, Simon Hausmann -<hausmann@kde.org>, David Faure <faure@kde.org> and Sven Lüppken -<sven@kde.org>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kplato-trinity.lintian b/debian/_base/applications/office/koffice/debian/kplato-trinity.lintian index 74f77679d..4e0bf33b8 100644 --- a/debian/_base/applications/office/koffice/debian/kplato-trinity.lintian +++ b/debian/_base/applications/office/koffice/debian/kplato-trinity.lintian @@ -1,4 +1,2 @@ kplato-trinity: no-shlibs-control-file opt/trinity/lib/libtdeinit_kplato.so -kplato-trinity: postinst-must-call-ldconfig opt/trinity/lib/libtdeinit_kplato.so -kplato-trinity: postrm-should-call-ldconfig opt/trinity/lib/libtdeinit_kplato.so kplato-trinity: package-name-doesnt-match-sonames libtdeinit-kplato diff --git a/debian/_base/applications/office/koffice/debian/kprconverter.pl.1 b/debian/_base/applications/office/koffice/debian/kprconverter.pl.1 deleted file mode 100644 index 635cc9556..000000000 --- a/debian/_base/applications/office/koffice/debian/kprconverter.pl.1 +++ /dev/null @@ -1,45 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KPRCONVERTER.PL 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kprconverter.pl \- converts a KPresenter document from old to new format -.SH SYNOPSIS -.B kprconverter.pl -.I old-XML new-XML -.SH DESCRIPTION -This Perl script converts the XML data within a KPresenter document from the -old format (v1) to the new format (v2), which is necessary due to the new -text object. It reads the old XML data from \fIold-XML\fP and writes new -converted XML data to \fInew-XML\fP. -.PP -The XML data stored in a KPresenter document can be accessed by passing -the \fB.kpr\fP document through gunzip. -.PP -This utility is part of the Trinity Office Suite. -.SH NOTES -Be aware that \fIold-XML\fP should not be the -original \fB.kpr\fP document, but should -instead be just the extracted XML data. -.PP -This script is automatically called by KPresenter when an old format -document is opened. Ordinary users should not need to run this script -themselves. -.SH SEE ALSO -.BR kpresenter (1). -.SH AUTHOR -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kpresenter-trinity.install b/debian/_base/applications/office/koffice/debian/kpresenter-trinity.install index 5aada1cab..44d61cc4c 100644 --- a/debian/_base/applications/office/koffice/debian/kpresenter-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kpresenter-trinity.install @@ -27,3 +27,5 @@ debian/tmp/opt/trinity/lib/trinity/libooimpressimport.so debian/tmp/opt/trinity/lib/libtdeinit_kpresenter.so debian/tmp/opt/trinity/lib/libkpresenterimageexport.so.* debian/tmp/opt/trinity/lib/libkpresenterprivate.so.* +debian/tmp/opt/trinity/share/man/man1/kpresenter.1 +debian/tmp/opt/trinity/share/man/man1/kprconverter.pl.1 diff --git a/debian/_base/applications/office/koffice/debian/kpresenter-trinity.manpages b/debian/_base/applications/office/koffice/debian/kpresenter-trinity.manpages deleted file mode 100644 index 3357e6954..000000000 --- a/debian/_base/applications/office/koffice/debian/kpresenter-trinity.manpages +++ /dev/null @@ -1,2 +0,0 @@ -debian/kpresenter.1 -debian/kprconverter.pl.1 diff --git a/debian/_base/applications/office/koffice/debian/kpresenter.1 b/debian/_base/applications/office/koffice/debian/kpresenter.1 deleted file mode 100644 index 08eddd41e..000000000 --- a/debian/_base/applications/office/koffice/debian/kpresenter.1 +++ /dev/null @@ -1,56 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KPRESENTER 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kpresenter \- a presentation program for the Trinity Office Suite -.SH SYNOPSIS -.B kpresenter -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKPresenter\fP is a fully-featured presentation program. Presentations can -be edited directly within KPresenter, and many advanced features for -screen presentations are available. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kpresenter-specific options. -For a full summary of options, run \fIkpresenter \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kpresenter/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kpresenter/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kpresenter/\fP. -.SH AUTHOR -KPresenter was written by Reginald Stadlbauer <reggie@kde.org>, -Werner Trobin <trobin@kde.org>, David Faure <dfaure@kde.org>, -Toshitaka Fujioka <fujioka@kde.org>, Lukas Tinkl <lukas@kde.org>, -Laurent Montel <montel@kde.org>, Thorsten Zachmann <t.zachmann@zagge.de> and -Ariya Hidayat <ariya@kde.org>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kspread-trinity.install b/debian/_base/applications/office/koffice/debian/kspread-trinity.install index ee708351b..915f71c19 100644 --- a/debian/_base/applications/office/koffice/debian/kspread-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kspread-trinity.install @@ -49,6 +49,7 @@ debian/tmp/opt/trinity/share/icons/hicolor/16x16/apps/kspread.png debian/tmp/opt/trinity/share/icons/hicolor/22x22/apps/kspread.png debian/tmp/opt/trinity/share/icons/hicolor/32x32/apps/kspread.png debian/tmp/opt/trinity/share/icons/hicolor/48x48/apps/kspread.png +debian/tmp/opt/trinity/share/man/man1/kspread.1 debian/tmp/opt/trinity/share/services/kspread_applixspread_import.desktop debian/tmp/opt/trinity/share/services/kspread_csv_export.desktop debian/tmp/opt/trinity/share/services/kspread_csv_import.desktop diff --git a/debian/_base/applications/office/koffice/debian/kspread-trinity.manpages b/debian/_base/applications/office/koffice/debian/kspread-trinity.manpages deleted file mode 100644 index 833228aec..000000000 --- a/debian/_base/applications/office/koffice/debian/kspread-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/kspread.1 diff --git a/debian/_base/applications/office/koffice/debian/kspread.1 b/debian/_base/applications/office/koffice/debian/kspread.1 deleted file mode 100644 index 0cf7e8861..000000000 --- a/debian/_base/applications/office/koffice/debian/kspread.1 +++ /dev/null @@ -1,55 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KSPREAD 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kspread \- a spreadsheet for the Trinity Office Suite -.SH SYNOPSIS -.B kspread -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKSpread\fP is a powerful spreadsheet application. It is scriptable and -provides both table-oriented sheets and support for complex mathematical -formulae and statistics. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kspread-specific options. -For a full summary of options, run \fIkspread \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -.BR kformula (1). -.PP -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kspread/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kspread/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kspread/\fP. -.SH AUTHOR -KSpread was written by Torben Weis <weis@kde.org>, Laurent Montel -<montell@club-internet.fr>, David Faure <faure@kde.org> and many others. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.install b/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.install index 1ce19b21c..4fb9550bd 100644 --- a/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.install @@ -8,5 +8,6 @@ debian/tmp/opt/trinity/share/apps/thesaurus debian/tmp/opt/trinity/share/doc/tde/HTML/en/thesaurus/*.bz2 debian/tmp/opt/trinity/share/doc/tde/HTML/en/thesaurus/common debian/tmp/opt/trinity/share/doc/tde/HTML/en/thesaurus/*.docbook +debian/tmp/opt/trinity/share/man/man1/kthesaurus.1 debian/tmp/opt/trinity/share/services/thesaurustool.desktop debian/kthesaurus.xpm opt/trinity/share/pixmaps diff --git a/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.lintian b/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.lintian index 252102b05..f4a3b06c2 100644 --- a/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.lintian +++ b/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.lintian @@ -1,5 +1,2 @@ kthesaurus-trinity: no-shlibs-control-file opt/trinity/lib/libtdeinit_kthesaurus.so -kthesaurus-trinity: postinst-must-call-ldconfig opt/trinity/lib/libtdeinit_kthesaurus.so -kthesaurus-trinity: postrm-should-call-ldconfig opt/trinity/lib/libtdeinit_kthesaurus.so kthesaurus-trinity: package-name-doesnt-match-sonames libtdeinit-kthesaurus - diff --git a/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.manpages b/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.manpages deleted file mode 100644 index 4fb6feb79..000000000 --- a/debian/_base/applications/office/koffice/debian/kthesaurus-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/kthesaurus.1 diff --git a/debian/_base/applications/office/koffice/debian/kthesaurus.1 b/debian/_base/applications/office/koffice/debian/kthesaurus.1 deleted file mode 100644 index 32f929bb8..000000000 --- a/debian/_base/applications/office/koffice/debian/kthesaurus.1 +++ /dev/null @@ -1,52 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KTHESAURUS 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kthesaurus \- a thesaurus for the Trinity Office Suite -.SH SYNOPSIS -.B kthesaurus -[ \fIgeneric-options\fP ] [ \fIterm\fP ] -.SH DESCRIPTION -\fBKThesaurus\fP is a thesaurus tool. It lists words related to a search -term and offers a user interface to WordNet, an online lexical reference -system. -.PP -Only the English language is supported. -.PP -A term to search for may be optionally specified on the command-line. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -For a full summary of options, run \fIkthesaurus \-\-help\fP. -.SH SEE ALSO -.BR kword (1). -.PP -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/thesaurus/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/thesaurus/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/thesaurus/\fP. -.SH AUTHOR -KThesaurus was written by Daniel Naber <daniel.naber@t-online.de>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kudesigner.1 b/debian/_base/applications/office/koffice/debian/kudesigner.1 deleted file mode 100644 index bb08bb355..000000000 --- a/debian/_base/applications/office/koffice/debian/kudesigner.1 +++ /dev/null @@ -1,61 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KUDESIGNER 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kudesigner \- a report template designer for Kugar -.SH SYNOPSIS -.B kudesigner -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKuDesigner\fP is a tool for creating report templates to use with -Kugar, the business report maker for KOffice. Templates (which describe -the layout of the data within a report) can be created in a visual -drag-and-drop manner and then saved to file. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kudesigner-specific options. -For a full summary of options, run \fIkudesigner \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -.BR kugar (1). -.PP -Full user documentation for Kugar is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kugar/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kugar/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kugar/\fP. -.SH AUTHOR -KuDesigner was written by Alexander Dymo <cloudtemple@mksat.net> and -Joseph Wenninger <jowenn@jowenn.at>. -.br -Kugar was written by Keith Davis (Mutiny Bay Software) -<info@mutinybaysoftware.com>, Phil Thompson <phil@river-bank.demon.co.uk>, -Alexander Dymo <cloudtemple@mksat.net>, Joseph Wenninger <jowenn@jowenn.at> -and Joris Marcillac <joris@marcillac.com>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kugar-trinity.install b/debian/_base/applications/office/koffice/debian/kugar-trinity.install index 0cda2bece..b1b014203 100644 --- a/debian/_base/applications/office/koffice/debian/kugar-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kugar-trinity.install @@ -32,5 +32,7 @@ debian/tmp/opt/trinity/share/icons/hicolor/32x32/apps/kugar.png debian/tmp/opt/trinity/share/icons/hicolor/48x48/apps/kugar.png debian/tmp/opt/trinity/share/icons/locolor/16x16/apps/kudesigner.png debian/tmp/opt/trinity/share/icons/locolor/32x32/apps/kudesigner.png +debian/tmp/opt/trinity/share/man/man1/kugar.1 +debian/tmp/opt/trinity/share/man/man1/kudesigner.1 debian/tmp/opt/trinity/share/services/kugar_kugar_import.desktop debian/tmp/opt/trinity/share/services/kugarpart.desktop diff --git a/debian/_base/applications/office/koffice/debian/kugar-trinity.manpages b/debian/_base/applications/office/koffice/debian/kugar-trinity.manpages deleted file mode 100644 index 2a72a7d1b..000000000 --- a/debian/_base/applications/office/koffice/debian/kugar-trinity.manpages +++ /dev/null @@ -1,2 +0,0 @@ -debian/kugar.1 -debian/kudesigner.1 diff --git a/debian/_base/applications/office/koffice/debian/kugar.1 b/debian/_base/applications/office/koffice/debian/kugar.1 deleted file mode 100644 index 134747aa2..000000000 --- a/debian/_base/applications/office/koffice/debian/kugar.1 +++ /dev/null @@ -1,70 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KUGAR 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kugar \- a business report maker for the Trinity Office Suite -.SH SYNOPSIS -.B kugar -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIxml-data-file\fP ... ] -.SH DESCRIPTION -\fBKugar\fP is a tool for generating business quality reports that can -be viewed and printed. It includes a standalone report viewer and a -KPart report viewer. The latter means that any TDE application can -embed the report viewing functionality and that reports can be viewed -using the Konqueror browser. -.PP -Kugar will create a report for the data stored in the data file -\fIxml-data-file\fP. Data files typically end in \fB.kud\fP. -Note that simply clicking on a data file in Konqueror will cause Kugar -to create a report. -.PP -The data will be displayed according to the layout described in a template -file. This template file is generally named in the data file. -Template files typically end in \fB.kut\fP. See -.BR kudesigner (1) -for a tool for creating template files. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kugar-specific options. -For a full summary of options, run \fIkugar \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -.BR kudesigner (1). -.PP -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kugar/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kugar/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kugar/\fP. -.SH AUTHOR -Kugar was written by Keith Davis (Mutiny Bay Software) -<info@mutinybaysoftware.com>, Phil Thompson <phil@river-bank.demon.co.uk>, -Alexander Dymo <cloudtemple@mksat.net>, Joseph Wenninger <jowenn@jowenn.at> -and Joris Marcillac <joris@marcillac.com>. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/kword-trinity.install b/debian/_base/applications/office/koffice/debian/kword-trinity.install index dfeb77b97..29ea06866 100644 --- a/debian/_base/applications/office/koffice/debian/kword-trinity.install +++ b/debian/_base/applications/office/koffice/debian/kword-trinity.install @@ -69,3 +69,4 @@ debian/tmp/opt/trinity/lib/trinity/libwpimport.la debian/tmp/opt/trinity/lib/trinity/libwpimport.so debian/tmp/opt/trinity/lib/libtdeinit_kword.so debian/tmp/opt/trinity/lib/libkwordprivate.so.* +debian/tmp/opt/trinity/share/man/man1/kword.1 diff --git a/debian/_base/applications/office/koffice/debian/kword-trinity.manpages b/debian/_base/applications/office/koffice/debian/kword-trinity.manpages deleted file mode 100644 index a9bf36729..000000000 --- a/debian/_base/applications/office/koffice/debian/kword-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/kword.1 diff --git a/debian/_base/applications/office/koffice/debian/kword.1 b/debian/_base/applications/office/koffice/debian/kword.1 deleted file mode 100644 index e55e7f5f3..000000000 --- a/debian/_base/applications/office/koffice/debian/kword.1 +++ /dev/null @@ -1,60 +0,0 @@ -.\" Hey, EMACS: -*- nroff -*- -.\" First parameter, NAME, should be all caps -.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection -.\" other parameters are allowed: see man(7), man(1) -.TH KWORD 1 "May 9, 2003" -.\" Please adjust this date whenever revising the manpage. -.\" -.\" Some roff macros, for reference: -.\" .nh disable hyphenation -.\" .hy enable hyphenation -.\" .ad l left justify -.\" .ad b justify to both left and right margins -.\" .nf disable filling -.\" .fi enable filling -.\" .br insert line break -.\" .sp <n> insert n+1 empty lines -.\" for manpage-specific macros, see man(7) -.SH NAME -kword \- a word processor for the Trinity Office Suite -.SH SYNOPSIS -.B kword -[ \fIgeneric-options\fP ] -[ \fB\-\-print\fP ] -[ \fIfile\fP ... ] -.SH DESCRIPTION -\fBKWord\fP is a FrameMaker-like word processing and desktop publishing -application. KWord is capable of creating demanding and professional -looking documents. It can be used for desktop publishing, but also for -"normal" word processing, like writing letters, reports and so on. -.PP -This application is part of the Trinity Office Suite. -.SH OPTIONS -Below are the kword-specific options. -For a full summary of options, run \fIkword \-\-help\fP. -.TP -\fB\-\-print\fP -Print the given file(s) and exit. -.SH SEE ALSO -.BR kformula (1), -.BR kthesaurus (1). -.PP -Full user documentation is available through the TDE Help Centre. -You can also enter the URL -\fIhelp:/kword/\fP -directly into konqueror or you can run -`\fIkhelpcenter help:/kword/\fP' -from the command-line. -.PP -If the TDE Help Centre is not installed then you can install the package -\fIkoffice-doc-html\fP and read this documentation in HTML format from -\fI/usr/share/doc/tde/HTML/en/kword/\fP. -.SH AUTHOR -KWord was written by Reginald Stadlbauer <reggie@kde.org>, Torben Weis -<weis@kde.org>, David Faure <dfaure@kde.org>, Thomas Zander -<zander@kde.org>, Shaheed Haque <srhaque@iee.org>, -Laurent Montel <lmontel@mandrakesoft.com>, Sven Lüppken <sven@kde.org> -and many others. -.br -This manual page was prepared by Ben Burton <bab@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/debian/_base/applications/office/koffice/debian/rules b/debian/_base/applications/office/koffice/debian/rules index 397783a27..6abc7fbcf 100755 --- a/debian/_base/applications/office/koffice/debian/rules +++ b/debian/_base/applications/office/koffice/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk -include debian/cdbs/debian-tde.mk +-include /usr/share/cdbs/1/class/tde.mk DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/tde DEB_CONFIGURE_MANDIR := /opt/trinity/share/man @@ -27,7 +27,7 @@ DEB_INSTALL_CHANGELOGS_kugar-trinity := kugar/CHANGES DEB_INSTALL_CHANGELOGS_kword-trinity := kword/CHANGES DEB_INSTALL_CHANGELOGS_koffice-libs-trinity := lib/CHANGES -DEB_COMPRESS_EXCLUDE := .ksp .kwd .kwt .docbook +DEB_COMPRESS_EXCLUDE_ALL += .ksp .kwd .kwt .docbook install/chalk-data-trinity:: install -m 755 -d debian/chalk-data-trinity/opt/trinity/share/apps/chalk/profiles/ |
