diff -Nru current-debian/kdebase-runtime-4.1.3/debian/cdbs/control.mk current/kdebase-runtime-4.1.2/debian/cdbs/control.mk --- current-debian/kdebase-runtime-4.1.3/debian/cdbs/control.mk 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/cdbs/control.mk 1969-12-31 19:00:00.000000000 -0500 @@ -1,19 +0,0 @@ -include debian/cdbs/versions.mk -debian/control: debian/control.tmp - mv debian/control.tmp debian/control - -debian/control.tmp: update-versions - -update-versions: debian/control.in - sed "s/CDBS_MIN_VER/$(CDBS_MIN_VER)/;\ - s/QUILT_MIN_VER/$(QUILT_MIN_VER)/;\ - s/CMAKE_MIN_VER/$(CMAKE_MIN_VER)/;\ - s/KDELIBS_VERSION/$(KDELIBS_VERSION)/;\ - s/KDELIBS_UPSTREAM_VERSION/$(KDELIBS_UPSTREAM_VERSION)/;\ - s/KDELIBS_SOURCE_VERSION/$(KDELIBS_SOURCE_VERSION)/;\ - s/KDEPIMLIBS_VERSION/$(KDEPIMLIBS_VERSION)/;\ - s/KDEPIMLIBS_SOURCE_VERSION/$(KDEPIMLIBS_SOURCE_VERSION)/;\ - s/KDEPIMLIBS_UPSTREAM_VERSION/$(KDEPIMLIBS_UPSTREAM_VERSION)/;\ - " debian/control.in > debian/control.tmp - -.PHONY: update-versions diff -Nru current-debian/kdebase-runtime-4.1.3/debian/cdbs/dh_sameversiondeps current/kdebase-runtime-4.1.2/debian/cdbs/dh_sameversiondeps --- current-debian/kdebase-runtime-4.1.3/debian/cdbs/dh_sameversiondeps 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/cdbs/dh_sameversiondeps 1969-12-31 19:00:00.000000000 -0500 @@ -1,257 +0,0 @@ -#!/usr/bin/perl -w - -use strict; -use Dpkg::Control; -use Dpkg::Substvars; -use Dpkg::ErrorHandling; -use File::Copy; - -use Debian::Debhelper::Dh_Lib; - -my $namespace = "sameVersionDep"; -my @fields = qw(Depends Recommends Suggests Enhances Pre-Depends); -my $re_fields = join("|", @fields); -my $re_pkgname = qr/[a-z0-9][a-z0-9+.-]*/; -my $re_oursubstvar = qr/\$\{($namespace:(.*?))\}/; -my $re_splitsubstvar = qr/^($re_pkgname)(?::($re_pkgname))?(?:-($re_fields))?$/; - -# Global substvars file -my $g_substvars = new Dpkg::Substvars; -$g_substvars->parse("debian/substvars") if (-r "debian/substvars"); - -sub extract_package_names { - my $val = shift; - $val =~ s/\([^)]+\)//g; - $val =~ s/^\s+//; - $val =~ s/\s+$//; - return split(/\s*,\s*/, $val); -} - -sub Shlibsvars::new { - my ($cls, $package, $control, $substvars_file) = @_; - my $self = bless ( { - "package" => $package, - "control" => $control, - "file" => $substvars_file, - }, $cls); - $self->{substvars} = new Dpkg::Substvars; - if (-r $self->{file}) { - $self->{substvars}->parse($self->{file}); - } - return $self; -} - -sub Shlibsvars::get_fieldval { - my ($self, $field) = @_; - - my $pkg = $self->{control}->get_pkg_by_name($self->{package}); - return undef if (!defined $pkg || !exists $pkg->{$field}); - - # Turn of warnings for substvars runs - my $save_quiet = $Dpkg::ErrorHandling::quiet_warnings; - $Dpkg::ErrorHandling::quiet_warnings = 1; - - my $val = $pkg->{$field}; - $val = $self->{substvars}->substvars($val); - $val = $g_substvars->substvars($val); - - $Dpkg::ErrorHandling::quiet_warnings = $save_quiet; - return $val; -} - -sub Shlibsvars::extract_deps { - my ($self, $field, $deppkg) = @_; - - my $val = $self->get_fieldval($field); - return undef() unless defined $val; - - # Extract dependency fields we need - my @matched_deps; - for my $dep (split(/\s*,\s*/, $val)) { - if ($dep =~ /^\Q$deppkg\E(?:$|[\W])/) { - push @matched_deps, $dep; - } - } - return @matched_deps; -} - -sub Shlibsvars::get_dep_package_names { - my ($self, $field) = @_; - - my $val = $self->get_fieldval($field); - return undef() unless defined $val; - return extract_package_names($val); -} - -sub get_package_dpkg_status { - my $binpkgs = shift; - my $fields = shift; - $fields = [ "Source", "Version" ] unless defined $fields; - my $regexp_fields = join("|", @$fields); - my %status; - - my $pid = open(DPKG, "-|"); - error("cannot fork for dpkg-query --status") unless defined($pid); - if (!$pid) { - # Child process running dpkg --search and discarding errors - close STDERR; - open STDERR, ">", "/dev/null"; - $ENV{LC_ALL} = "C"; - exec("dpkg-query", "--status", "--", @$binpkgs) or error("cannot exec dpkg-query"); - } - my $curpkg; - while (defined($_ = )) { - if (m/^Package:\s*(.*)$/) { - $curpkg = $1; - $status{$curpkg} = {}; - } elsif (defined($curpkg)) { - if (m/^($regexp_fields):\s*(.*)$/) { - my $field = $1; - error("Dublicate field $field for the $curpkg package in the dpkg status file") - if (exists $status{$curpkg}{$field}); - $status{$curpkg}{$field} = $2; - } - } else { - error("Missing Package entry at $."); - } - } - close(DPKG); - - # Check if all packages were processed - for my $pkg (@$binpkgs) { - error("Package $pkg was not found in the dpkg status") unless exists $status{$pkg}; - } - return \%status; -} - -sub write_substvar($$$$) { - my ($pkgname, $varname, $value, $substvars) = @_; - my @contents; - my $varset = 0; - - my $file = (-r $substvars) ? $substvars : "debian/substvars"; - if (-r $file) { - open(FILE, "<$file") or die "Unable to open substvars file '$file' for reading\n"; - while () { - if (!$varset && /^\s*\Q$varname=\E/) { - push @contents, "$varname=$value\n"; - $varset = 1; - } else { - push @contents, $_; - } - } - close(FILE); - } else { - # Fallback to default - $file = $substvars; - } - - open(FILE, ">$file.tmp") or die "Unable to open substvars file '$file.tmp' for writing\n"; - for (@contents) { - print FILE $_; - } - if (!$varset) { - print FILE "$varname=$value", "\n"; - } - close(FILE); - - File::Copy::move("$file.tmp", "$file"); -} - -init(); - -my $control = new Dpkg::Control; -my %shlibsvars; - -foreach my $package (@{$dh{DOPACKAGES}}) { - my $pkg_substvars = sprintf("debian/%ssubstvars", pkgext($package)); - my $pkg = $control->get_pkg_by_name($package); - - for my $fieldname (@fields) { - if (exists $pkg->{$fieldname}) { - my $fieldval = $pkg->{$fieldname}; - my $pkgname = $pkg->{Package}; - - while ($fieldval =~ m/\G.*?$re_oursubstvar/gs) { - my $varname = $1; - my $varparams = $2; - if ($varparams =~ m/$re_splitsubstvar/) { - my $dep2add = $1; - my $scanpkg = $2; - $scanpkg = $dh{MAINPACKAGE} unless defined $scanpkg; - my $deptype = $3; - $deptype = $fieldname unless defined $deptype; - - if (!exists $shlibsvars{$scanpkg}) { - my $scan_substvars = sprintf("debian/%ssubstvars", pkgext($scanpkg)); - $shlibsvars{$scanpkg} = new Shlibsvars($scanpkg, $control, $scan_substvars); - } - - # Get dpkg status information about dep2add package - my $dep2add_status = get_package_dpkg_status( [ $dep2add ], [ "Source", "Version", $deptype ] ); - $dep2add_status = $dep2add_status->{$dep2add}; - - # Check validility of dep2add status - error("Could not retreive source package name for $dep2add package. Is it installed?") - unless exists $dep2add_status->{Source} && exists $dep2add_status->{Version}; - error("Package $dep2add has no $deptype field. This configuration is unsupported. ") - unless exists $dep2add_status->{$deptype}; - my @dep2add_deps = extract_package_names($dep2add_status->{$deptype}); - - # Get deptype packages of scanpkg - my $vars = $shlibsvars{$scanpkg}; - my @scan_deps = $vars->get_dep_package_names($deptype); - - # Intersect both _deps arrays to find common dependencies - my @commondeps; - { - my %_map; - map { $_map{$_} = 1; } @scan_deps; - map { push @commondeps, $_ if exists $_map{$_} } @dep2add_deps; - } - - # Get status information about common packages. They need to come from the - # same source package as dep2add package and their versions should match - my $depstatus = get_package_dpkg_status(\@commondeps, [ "Source", "Version" ]); - @commondeps = (); - while (my ($pkg, $status) = each(%$depstatus)) { - push @commondeps, $pkg - if (exists $status->{Source} && exists $status->{Version} && - ($status->{Source} eq $dep2add_status->{Source}) && - ($status->{Version} eq $dep2add_status->{Version})); - } - - # Ideally we should have got the list down to one. if not, combine - # version relationships - my @fulldeps; - if (!@commondeps) { - error("$0: no same version dependencies for '$varname' found (at $fieldname of the $package package)"); - } else { - for my $deppkg (@commondeps) { - my @deps = $vars->extract_deps($deptype, $deppkg); - map s/\b\Q$deppkg\E\b/$dep2add/g, @deps; - push @fulldeps, @deps; - } - - # Drop dupes - @fulldeps = sort @fulldeps; - my @uniqdeps; - my $_prevdep; - for my $dep (@fulldeps) { - my $tmp = "$dep"; - $tmp =~ s/\s//g; - push @uniqdeps, $dep if (!defined $_prevdep || $_prevdep ne $tmp); - $_prevdep = $tmp; - } - # Write substvar for the package - write_substvar($pkgname, $varname, join(", ", @uniqdeps), $pkg_substvars); - } - } else { - error("Invalid '$namespace' substvar syntax: $varparams"); - } - } - } - } -} - -exit 0 diff -Nru current-debian/kdebase-runtime-4.1.3/debian/cdbs/kde.mk current/kdebase-runtime-4.1.2/debian/cdbs/kde.mk --- current-debian/kdebase-runtime-4.1.3/debian/cdbs/kde.mk 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/cdbs/kde.mk 1969-12-31 19:00:00.000000000 -0500 @@ -1,81 +0,0 @@ -include /usr/share/cdbs/1/class/cmake.mk -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/rules/patchsys-quilt.mk -include /usr/share/cdbs/1/rules/utils.mk - -# Include default KDE 4 cmake configuration variables -include debian/cdbs/variables.mk -# Pass standard KDE 4 flags to cmake via appropriate CDBS variable -# (DEB_CMAKE_EXTRA_FLAGS) -DEB_CMAKE_EXTRA_FLAGS += $(DEB_CMAKE_KDE4_FLAGS) $(DEB_CMAKE_CUSTOM_FLAGS) - -DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el - -#DEB_CMAKE_PREFIX = /usr/lib/kde4 -DEB_DH_INSTALL_SOURCEDIR = debian/tmp -#DEB_DH_SHLIBDEPS_ARGS = -l/usr/lib/kde4/lib/ -DEB_KDE_ENABLE_FINAL ?= -#DEB_MAKE_ENVVARS += XDG_CONFIG_DIRS=/etc/xdg XDG_DATA_DIRS=/usr/share -#DEB_STRIP_EXCLUDE = so - -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 - -clean:: -ifndef THIS_SHOULD_GO_TO_UNSTABLE - #guard against experimental uploads to unstable - dpkg-parsechangelog | grep ^Distribution | grep -q 'experimental\|UNRELEASED' -endif - rm -rf debian/man/out - -rmdir debian/man - rm -f debian/stamp-man-pages - rm -f CMakeCache.txt - - -$(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 - if test -e debian/$(cdbs_curpkg).bugscript; then \ - install -p -D -m755 debian/$(cdbs_curpkg).bugscript \ - debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/script; \ - fi - if test -e debian/$(cdbs_curpkg).bugcontrol; then \ - install -p -D -m644 debian/$(cdbs_curpkg).bugcontrol \ - debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/control; \ - fi - -binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: - set -e; \ - for doc in `cd $(DEB_DESTDIR)/usr/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/usr/share/doc/kde/HTML/en/$$pkg; \ - cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \ - meinproc4 $(DEB_DESTDIR)/usr/share/doc/kde/HTML/en/$$pkg/index.docbook; \ - done - for pkg in $(DOC_HTML_PRUNE) ; do \ - rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/kde/HTML/en/$$pkg; \ - done - - -# Process "sameVersionDep:" substvars -DH_SAMEVERSIONDEPS=debian/cdbs/dh_sameversiondeps -common-binary-predeb-arch common-binary-predeb-indep:: - @if [ ! -x "$(DH_SAMEVERSIONDEPS)" ]; then chmod a+x "$(DH_SAMEVERSIONDEPS)"; fi - $(DH_SAMEVERSIONDEPS) $(if $(filter common-binary-predeb-arch,$@),-a,-i) diff -Nru current-debian/kdebase-runtime-4.1.3/debian/cdbs/variables.mk current/kdebase-runtime-4.1.2/debian/cdbs/variables.mk --- current-debian/kdebase-runtime-4.1.3/debian/cdbs/variables.mk 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/cdbs/variables.mk 1969-12-31 19:00:00.000000000 -0500 @@ -1,49 +0,0 @@ -# KDE 4 global configuration file installation directory -DEB_CONFIG_INSTALL_DIR ?= /usr/share/kde4/config - -# Standard Debian KDE 4 cmake flags -DEB_CMAKE_KDE4_FLAGS += \ - -DCMAKE_BUILD_TYPE=Debian \ - -DKDE4_ENABLE_FINAL=$(KDE4-ENABLE-FINAL) \ - -DKDE4_BUILD_TESTS=false \ - -DKDE_DISTRIBUTION_TEXT="Debian packages" \ - -DKDE_DEFAULT_HOME=.kde4 \ - -DCMAKE_SKIP_RPATH=true \ - -DKDE4_USE_ALWAYS_FULL_RPATH=false \ - -DCONFIG_INSTALL_DIR=$(DEB_CONFIG_INSTALL_DIR) \ - -DDATA_INSTALL_DIR=/usr/share/kde4/apps \ - -DHTML_INSTALL_DIR=/usr/share/doc/kde4/HTML \ - -DKCFG_INSTALL_DIR=/usr/share/kde4/config.kcfg \ - -DLIB_INSTALL_DIR=/usr/lib \ - -DSYSCONF_INSTALL_DIR=/etc - -# Support building with enable final (disabled by default) -DEB_KDE_ENABLE_FINAL ?= -KDE4-ENABLE-FINAL := false -ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - treat_me_gently_arches := arm m68k alpha ppc64 armel armeb - DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) - ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(treat_me_gently_arches))) - KDE4-ENABLE-FINAL := $(if $(DEB_KDE_ENABLE_FINAL),true,false) - endif -endif - -#### Default additional (custom) cmake flags #### -DEB_CMAKE_CUSTOM_FLAGS ?= - -# Set the one below to something else than 'yes' to disable linking -# with --as-needed (on by default) -DEB_KDE_LINK_WITH_AS_NEEDED ?= yes -ifneq (,$(findstring yes, $(DEB_KDE_LINK_WITH_AS_NEEDED))) - ifeq (,$(findstring no-as-needed, $(DEB_BUILD_OPTIONS))) - DEB_KDE_LINK_WITH_AS_NEEDED := yes - DEB_CMAKE_CUSTOM_FLAGS += \ - -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \ - -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \ - -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" - else - DEB_KDE_LINK_WITH_AS_NEEDED := no - endif -else - DEB_KDE_LINK_WITH_AS_NEEDED := no -endif diff -Nru current-debian/kdebase-runtime-4.1.3/debian/cdbs/versions.mk current/kdebase-runtime-4.1.2/debian/cdbs/versions.mk --- current-debian/kdebase-runtime-4.1.3/debian/cdbs/versions.mk 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/cdbs/versions.mk 1969-12-31 19:00:00.000000000 -0500 @@ -1,14 +0,0 @@ - -CDBS_MIN_VER:=0.4.52 -QUILT_MIN_VER:=0.40 -CMAKE_MIN_VER:=2.4.8 - - -KDELIBS_VERSION:=$(shell dpkg -l kdelibs5 | grep kdelibs5 | awk '{print $$3}') -KDELIBS_SOURCE_VERSION:=$(shell echo $(KDELIBS_VERSION) | sed 's/+b.*//') -KDELIBS_UPSTREAM_VERSION:=$(shell echo $(KDELIBS_VERSION) | sed 's/-.*//') - -KDEPIMLIBS_VERSION:=$(shell dpkg -l kdepimlibs5 | grep kdepimlibs5 | awk '{print $$3}') -KDEPIMLIBS_SOURCE_VERSION:=$(shell echo $(KDEPIMLIBS_VERSION) | sed 's/+b.*//') -KDEPIMLIBS_UPSTREAM_VERSION:=$(shell echo $(KDEPIMLIBS_VERSION) | sed 's/-.*//') - diff -Nru current-debian/kdebase-runtime-4.1.3/debian/changelog current/kdebase-runtime-4.1.2/debian/changelog --- current-debian/kdebase-runtime-4.1.3/debian/changelog 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/changelog 2008-11-07 10:55:54.000000000 -0500 @@ -1,9 +1,82 @@ -kdebase-runtime (4:4.1.3-1) experimental; urgency=low +kdebase-runtime (4:4.1.2-1ubuntu1) jaunty; urgency=low - * New upstream release - - few files missed, probably a outdated manual. + * Merge with Debian, remaining changes: + - helpcenter4 doesn't recommend on htdig + - Edit kde-icons-oxygen.install to not install scalable icons, + save disk space + - kde-base is not an alternative dep to kdebase-runtime-data-common in + kdebase-runtime-data + - Remove dependency from kdebase-runtime-bin-kde4 on pmount + - Keep khelpcenter transitional package with appropriate replaces + - Keep -kde4 package conflicts/replaces + - Remove: + - 01_kde4_information_menu.diff + - 02_ksvgtopng4.diff + - 03_ktrash4.diff + - Keep: + - kubuntu_01_nodisplay_knetattach.diff + - kubuntu_02_fix_dash_incompatibility.diff + - kubuntu_03_knetattach_use_sftp.diff + - kubuntu_04_kiosmb.diff + - kubuntu_05_knetattach_open_filebrowser.diff + - kubuntu_06_fix_knetattach_folder_icon.diff + - kubuntu_07_oxygenify_knetattach_icon.diff + - kubuntu_85_language_selector.diff + - .orig md5sum different + *Update KUBNTU-DEBIAN-DIFFERENCES + + -- Jonathan Thomas Fri, 07 Nov 2008 09:07:36 -0500 + +kdebase-runtime (4:4.1.2-0ubuntu6) intrepid; urgency=low + + * Fix typo in kubuntu_01_nodisplay_knetattach.diff (LP: #277156) + + -- Harald Sitter Wed, 15 Oct 2008 22:49:55 +0200 + +kdebase-runtime (4:4.1.2-0ubuntu5) intrepid; urgency=low + + * Replace kubuntu_01_onlyshow_knetattach_in_kde.diff with + kubuntu_01_nodisplay_knetattach.diff, if the user starts knetattach from + the menu there is no indication where the links will end up, which is + confusing. + * kubuntu_05_knetattach_open_filebrowser.diff open the default file browser + instead of the default web browser (LP: #271967) + * kubuntu_06_fix_knetattach_folder_icon.diff don't use non-existing icons. + * kubuntu_07_oxygenify_knetattach_icon.diff don't use crystal icons if an + Oxygen replacement is available (using folder-new since it seems more + appropriate considering kubuntu_01_nodisplay_knetattach.diff though). + + -- Harald Sitter Wed, 15 Oct 2008 02:06:39 +0200 + +kdebase-runtime (4:4.1.2-0ubuntu4) intrepid; urgency=low + + * Add kubuntu_04_kiosmb.diff from trunk, fixes smb access + + -- Jonathan Riddell Tue, 14 Oct 2008 10:59:43 +0100 + +kdebase-runtime (4:4.1.2-0ubuntu3) intrepid; urgency=low + + [ Ryan Kavanagh ] + * Make the Add Languages dropdown menu clear itself before listing the + newly installed languages to avoid duplicates (LP: 278620) + + [ Harald Sitter ] + * Add knotify4 manpage (LP: #278165) + * Add kubuntu_01_onlyshow_knetattach_in_kde.diff to only show knetattach + in KDE (LP: #277156) + * Add kubuntu_02_fix_dash_incompatibility.diff (LP: #241916) + * Add kubuntu_03_knetattach_use_sftp.diff to make knetattach use sftp by + default, since it is preferred and works by default on Kubuntu (LP: #133957) + + -- Harald Sitter Mon, 06 Oct 2008 02:22:16 +0200 + +kdebase-runtime (4:4.1.2-0ubuntu2) intrepid; urgency=low + + * Added Versioned conflicts, provides, and replaces for khelpcenter4 + * Added transitional package for khelpcenter, for upgrade purposes + * (LP: #271779) - -- Sune Vuorela Sat, 01 Nov 2008 11:57:12 +0100 + -- Sarah Hobbs Mon, 29 Sep 2008 11:41:29 +1000 kdebase-runtime (4:4.1.2-1) experimental; urgency=low @@ -19,6 +92,25 @@ -- Debian Qt/KDE Maintainers Sun, 28 Sep 2008 15:22:21 +0200 +kdebase-runtime (4:4.1.2-0ubuntu1) intrepid; urgency=low + + * New upstream release + + -- Harald Sitter Fri, 26 Sep 2008 15:05:23 +0200 + +kdebase-runtime (4:4.1.1-0ubuntu6) intrepid; urgency=low + + * kdebase-runtime replaces files from + kdelibs4-dev << 4:3.5.10-0ubuntu3 (LP: 272383) + + -- Harald Sitter Sat, 20 Sep 2008 14:57:57 +0200 + +kdebase-runtime (4:4.1.1-0ubuntu5) intrepid; urgency=low + + * Remove .svgz files from kde-icons-oxygen.install + + -- Jonathan Riddell Wed, 24 Sep 2008 13:32:29 +0100 + kdebase-runtime (4:4.1.1-2) experimental; urgency=low +++ Changes by Ana Beatriz Guerrero Lopez: @@ -33,6 +125,25 @@ -- Debian Qt/KDE Maintainers Wed, 10 Sep 2008 14:43:46 +0200 +kdebase-runtime (4:4.1.1-0ubuntu4) intrepid; urgency=low + + * Add ported version of kubuntu_85_language_selector.diff to + launch language-selector from System Settings + + -- Jonathan Riddell Mon, 08 Sep 2008 14:05:19 +0100 + +kdebase-runtime (4:4.1.1-0ubuntu3) intrepid; urgency=low + + * Remove: + - 01_kde4_information_menu.diff + - 02_ksvgtopng4.diff + - 03_ktrash4.diff + At least the latter patch caused problems (with the trash plasmoid) and + since we don't ship a KDE 3 desktop anymore these patches are obsolete + (LP: #264163) + + -- Harald Sitter Wed, 03 Sep 2008 09:59:06 +0200 + kdebase-runtime (4:4.1.1-1) experimental; urgency=low * New upstream release. @@ -46,6 +157,30 @@ -- Debian Qt/KDE Maintainers Tue, 02 Sep 2008 18:34:08 +0200 +kdebase-runtime (4:4.1.1-0ubuntu2) intrepid; urgency=low + + * Rebuild against kdelibs 4:4.1.1+really4.1.1 + + -- Harald Sitter Tue, 02 Sep 2008 03:50:50 +0200 + +kdebase-runtime (4:4.1.1-0ubuntu1) intrepid; urgency=low + + * New upstream release + + -- Harald Sitter Fri, 29 Aug 2008 02:03:16 +0200 + +kdebase-runtime (4:4.1.0-0ubuntu3) intrepid; urgency=low + + * Remove dependency from kdebase-runtime-bin-kde4 on pmount + + -- Jonathan Riddell Tue, 05 Aug 2008 11:33:35 +0100 + +kdebase-runtime (4:4.1.0-0ubuntu2) intrepid; urgency=low + + * switch to kde4.mk from cdbs + + -- Jonathan Riddell Fri, 01 Aug 2008 15:29:37 +0000 + kdebase-runtime (4:4.1.0-2) unstable; urgency=high +++ Changes by Pino Toscano: @@ -59,6 +194,19 @@ -- Debian Qt/KDE Maintainers Thu, 31 Jul 2008 10:09:25 +0200 +kdebase-runtime (4:4.1.0-0ubuntu1) intrepid; urgency=low + + [ Steve Stalcup ] + * New upstream release, 4.1 final + -updated kde-icons-oxygen.install file + -bumped build-deps on kdepimlibs5-dev to (>= 4:4.1.0) + + [ Harald Sitter ] + * Bump build-dep versions of libphonon-dev and libsoprano-dev + * Remove kdebase-data as alternativ dependency of kdebase-runtime-data + + -- Harald Sitter Sat, 26 Jul 2008 01:56:07 +0200 + kdebase-runtime (4:4.1.0-1) unstable; urgency=low * New upstream released. @@ -67,6 +215,13 @@ -- Ana Beatriz Guerrero Lopez Fri, 25 Jul 2008 23:49:44 +0200 +kdebase-runtime (4:4.0.98-0ubuntu2) intrepid; urgency=low + + * Edit kde-icons-oxygen.install to not install scalable icons, + save disk space + + -- Jonathan Riddell Mon, 21 Jul 2008 17:38:34 +0100 + kdebase-runtime (4:4.0.98-1) unstable; urgency=low * New upstream release, Release Candidate 1. @@ -90,6 +245,13 @@ -- Debian Qt/KDE Maintainers Mon, 14 Jul 2008 12:59:14 +0200 +kdebase-runtime (4:4.0.98-0ubuntu1) intrepid; urgency=low + + * New upstream release candidate release + * Bump Standards-Version to 3.8.0 + + -- Harald Sitter Sat, 12 Jul 2008 03:29:58 +0200 + kdebase-runtime (4:4.0.84+svn828328-1) unstable; urgency=low * New upstream development snapshot. @@ -97,6 +259,12 @@ -- Ana Beatriz Guerrero Lopez Sat, 05 Jul 2008 18:59:53 +0200 +kdebase-runtime (4:4.0.83-0ubuntu3) intrepid; urgency=low + + * Install kcm_phononxine to phonon-backend-xine + + -- Jonathan Riddell Mon, 30 Jun 2008 14:48:28 +0000 + kdebase-runtime (4:4.0.84-1) experimental; urgency=low * New upstream snapshot. @@ -104,6 +272,18 @@ -- Sune Vuorela Fri, 27 Jun 2008 20:54:53 +0200 +kdebase-runtime (4:4.0.83-0ubuntu2) intrepid; urgency=low + + * Don't recommend htdig + + -- Jonathan Riddell Wed, 25 Jun 2008 17:56:44 +0000 + +kdebase-runtime (4:4.0.83-0ubuntu1) intrepid; urgency=low + + * New upstream beta release + + -- Jonathan Riddell Thu, 19 Jun 2008 11:45:14 +0000 + kdebase-runtime (4:4.0.82+svn819867-1) experimental; urgency=low * New upstream development snapshot. @@ -130,6 +310,26 @@ -- Debian Qt/KDE Maintainers Sat, 14 Jun 2008 03:48:19 +0200 +kdebase-runtime (4:4.0.80-1ubuntu3) intrepid; urgency=low + + * Fix config install paths + + -- Jonathan Riddell Mon, 09 Jun 2008 16:08:33 +0100 + +kdebase-runtime (4:4.0.80-1ubuntu2) intrepid; urgency=low + + * Update kde.mk, use /usr/share/kde4/config for settings, mark + packages as Kubuntu not Debian + + -- Jonathan Riddell Mon, 09 Jun 2008 15:10:36 +0100 + +kdebase-runtime (4:4.0.80-1ubuntu1) intrepid; urgency=low + + * New upstream release, merge with Debian + * Remove 97_fix_target_link_libraries.diff + + -- Jonathan Riddell Tue, 27 May 2008 10:51:47 +0100 + kdebase-runtime (4:4.0.80-2) experimental; urgency=low +++ Changes by Modestas Vainius: @@ -298,6 +498,57 @@ -- Debian Qt/KDE Maintainers Sat, 05 Jan 2008 08:04:49 +0100 +kdebase-runtime (4:4.0.3-0ubuntu2) hardy; urgency=low + + * Removed kdebase-bin-kde3 conflict and it replacing + kdebase-bin (<< 4:3.96.0) + + -- Jonathan Aquilina Mon, 14 Apr 2008 16:13:25 +0200 + +kdebase-runtime (4:4.0.3-0ubuntu1) hardy; urgency=low + + * New upstream release + + -- Jonathan Riddell Fri, 28 Mar 2008 11:59:57 +0000 + +kdebase-runtime (4:4.0.2-0ubuntu2) hardy; urgency=low + + * Fix exec path in knetattach's desktop file (LP: #200925) + + -- Harald Sitter Sun, 23 Mar 2008 03:06:31 +0100 + +kdebase-runtime (4:4.0.2-0ubuntu1) hardy; urgency=low + + * New upstream release + + -- Jonathan Riddell Mon, 03 Mar 2008 11:37:30 +0000 + +kdebase-runtime (4:4.0.1-0ubuntu1) hardy; urgency=low + + * New upstream release + + -- Jonathan Riddell Thu, 31 Jan 2008 17:34:08 +0000 + +kdebase-runtime (4:4.0.0-0ubuntu2) hardy; urgency=low + + * set XDG_APPS_INSTALL_DIR=/usr/share/applications/kde4/ in kde.mk + + -- Jonathan Riddell Tue, 29 Jan 2008 13:30:51 +0000 + +kdebase-runtime (4:4.0.0-0ubuntu1) hardy; urgency=low + + * New upstream release + + -- Jonathan Riddell Sun, 06 Jan 2008 18:18:36 +0000 + +kdebase-runtime (4:3.98.0~svn755919-2ubuntu1) hardy; urgency=low + + * Merge with Debian, remaining change: our kde.mk and paths + * kdebase-runtime-data-common does not replace kdebase-data + * kdebase-runtime depends on dbus-x11 + + -- Jonathan Riddell Thu, 03 Jan 2008 13:30:55 +0000 + kdebase-runtime (4:3.98.0~svn755919-1) experimental; urgency=low * New svn snapshot release to revision 755919. @@ -334,6 +585,44 @@ -- Debian Qt/KDE Maintainers Thu, 27 Dec 2007 02:36:47 +0100 +kdebase-runtime (4:3.97.0-1ubuntu5) hardy; urgency=low + + * Merge with Debian + * Remove CMAKE_SKIP_RPATH from debian/cdbs/kde.mk due to our install + directories + + +++ Added by Terence Simpson + + * Really pass arguements to executibles from wrapper scripts + * Add PATH to wrapper scripts + + -- Richard A. Johnson Sun, 30 Dec 2007 23:20:44 -0600 + +kdebase-runtime (4:3.97.0-1ubuntu4) hardy; urgency=low + + * Fix Exec= entry in .desktop files + * Pass arguements to executibles from wrapper scripts + + -- Terence Simpson Wed, 12 Dec 2007 16:40:19 +0000 + +kdebase-runtime (4:3.97.0-1ubuntu3) hardy; urgency=low + + * Move wrapper script target in debian/rules + + -- Jonathan Riddell Sat, 08 Dec 2007 11:16:36 +0000 + +kdebase-runtime (4:3.97.0-1ubuntu2) hardy; urgency=low + + * Add epoch to kdepimlibs build-dep + + -- Jonathan Riddell Fri, 07 Dec 2007 11:30:09 +0000 + +kdebase-runtime (4:3.97.0-1ubuntu1) hardy; urgency=low + + * Merge with Debian for new upstream release + + -- Jonathan Riddell Thu, 06 Dec 2007 12:28:06 +0000 + kdebase-runtime (4:3.97.0-1) experimental; urgency=low * New upstream release: @@ -353,6 +642,17 @@ -- Ana Beatriz Guerrero Lopez Fri, 23 Nov 2007 18:51:07 +0100 +kdebase-runtime (4:3.96.0-1ubuntu1) hardy; urgency=low + + * Sync with Debian + * Use modified kde.mk + * Rename packages: + - khelpcenter -> khelpcenter-kde4 + - kinfocenter -> kinfocenter-kde4 + * Remove replaces/conflicts to kde 3 packages + + -- Jonathan Riddell Mon, 19 Nov 2007 13:12:03 +0000 + kdebase-runtime (4:3.96.0-1) experimental; urgency=low * New upstream release. diff -Nru current-debian/kdebase-runtime-4.1.3/debian/control current/kdebase-runtime-4.1.2/debian/control --- current-debian/kdebase-runtime-4.1.3/debian/control 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/control 2008-11-07 10:53:49.000000000 -0500 @@ -1,11 +1,11 @@ Source: kdebase-runtime Section: kde Priority: optional -Maintainer: Debian Qt/KDE Maintainers -Uploaders: Ana Beatriz Guerrero Lopez , Sune Vuorela , Fathi Boudra , - Armin Berres , Matthew Rosewarne , Modestas Vainius +Maintainer: Kubuntu Developers +XSBC-Original-Maintainer: Debian Qt/KDE Maintainers +Uploaders: Ana Beatriz Guerrero Lopez , Sune Vuorela , Fathi Boudra , Armin Berres , Matthew Rosewarne Build-Depends: cdbs (>= 0.4.51), debhelper (>= 6), quilt, cmake (>= 2.6.0), - kdepimlibs5-dev (>= 4:4.1.1), kdelibs5-dev (>= 4:4.1.1), + kdepimlibs5-dev (>= 4:4.1.2), libphonon-dev (>= 4:4.2.0), libclucene-dev, libsmbclient-dev, libsoprano-dev (>= 2.1), libstreamanalyzer-dev (>= 0.5.8), libstrigiqtdbusclient-dev (>= 0.5.8), libxcb1-dev, libxine-dev, libopenexr-dev, libbz2-dev, libx11-dev, @@ -18,7 +18,7 @@ Package: kdebase-runtime Section: kde Architecture: any -Replaces: kdebase-bin (<< 4:4.0.0-1), kdelibs5 (<< 4:4.0.81) +Replaces: kdebase-bin (<< 4:4.0.0-1), kdelibs5 (<< 4:4.0.81), kdelibs4-dev (<< 4:3.5.10-0ubuntu3) Conflicts: kdebluetooth (<< 1.0~beta7-1) Depends: ${shlibs:Depends}, kdebase-runtime-bin-kde4 (= ${binary:Version}), kdebase-runtime-data (>= ${source:Version}), @@ -37,7 +37,7 @@ Section: kde Architecture: any Depends: ${shlibs:Depends} -Recommends: hal | kfreebsd-gnu | hurd, pmount | kfreebsd-gnu | hurd +Recommends: hal | kfreebsd-gnu | hurd Conflicts: kdebase-bin-kde3 Replaces: kdebase-bin (<< 4:4.0.0-1), kdebase-bin-kde3 Description: core binaries for the KDE 4 base runtime module @@ -52,7 +52,7 @@ Package: kdebase-runtime-data Section: kde Architecture: all -Depends: kdebase-runtime-data-common (>= ${source:Version}) | kdebase-data (<< 4:4.0.0-1) +Depends: kdebase-runtime-data-common (>= ${source:Version}) Replaces: kdebase-data (<< 4:4.0.0-1), kdebase-bin (<= 4:3.5.8.dfsg.1-2), drkonqi, kdelibs5-data (<< 4:4.0.81) Conflicts: drkonqi Description: shared data files for the KDE 4 base runtime module @@ -80,9 +80,9 @@ Section: kde Architecture: any Depends: ${shlibs:Depends} -Recommends: htdig -Replaces: kdebase-runtime-data (<< 4:4.0.80-2), kdebase-runtime (<< 4:4.0.80-2) -Conflicts: khelpcenter +Replaces: kdebase-runtime-data (<< 4:4.0.80-2), kdebase-runtime (<< 4:4.0.80-2), khelpcenter +Conflicts: khelpcenter (<< 4:4.1.2), khelpcenter-kde4 +Provides: khelpcenter Description: Help Center for KDE 4 The KDE Help Center displays documentation on how to use the KDE 4 desktop and applications, as well as UNIX man and info pages. @@ -90,10 +90,22 @@ . This package is part of the KDE 4 base runtime module. +Package: khelpcenter +Section: kde +Architecture: any +Depends: khelpcenter4 +Description: metapackage for the help center for KDE4 + The KDE Help Center displays documentation on how to use the KDE 4 desktop and + applications, as well as UNIX man and info pages. + It can search through documentation using the 'htdig' package. + . + This is a metapackage to help with upgrades, and can be safely removed. + Package: kde-icons-oxygen Section: kde Architecture: all Replaces: kdebase-data (<= 4:4.0.0-1), libkdepim4 (<< 4:4.0.98) +Conflicts: libkdepim4 (<< 4:4.0.98) Suggests: kdebase (>= 4:4.1.0-1) Description: Oxygen icon theme for KDE 4 Oxygen is the standard icon theme for KDE 4. @@ -113,7 +125,7 @@ Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Provides: phonon-backend -Replaces: kdebase-runtime-data (<= 4:4.0.84+svn828328-1), kdebase-runtime (<= 4:4.0.84+svn828328-1) +Replaces: kdebase-runtime-data (<< 4:4.0.98-0ubuntu3), kdebase-runtime (<< 4:4.0.98-0ubuntu3) Description: Phonon Xine 1.1.x backend Phonon is the Qt 4 multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. diff -Nru current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime-bin-kde4.installgen current/kdebase-runtime-4.1.2/debian/kdebase-runtime-bin-kde4.installgen --- current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime-bin-kde4.installgen 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/kdebase-runtime-bin-kde4.installgen 2008-11-07 08:16:24.000000000 -0500 @@ -1,6 +1,8 @@ # Process exceptions first depends first +missing dst:khelpcenter + dst:usr/bin/kdebugdialog$ dst:usr/bin/kreadconfig$ dst:usr/bin/kstart$ diff -Nru current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime-data.install current/kdebase-runtime-4.1.2/debian/kdebase-runtime-data.install --- current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime-data.install 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/kdebase-runtime-data.install 2008-11-07 08:48:49.000000000 -0500 @@ -2,7 +2,7 @@ usr/share/kde4/config/icons.knsrc usr/share/kde4/config/khotnewstuff.knsrc usr/share/kde4/config/kshorturifilterrc -etc/xdg/menus/kde4-information.menu +etc/xdg/menus/kde-information.menu usr/share/applications/kde4/knetattach.desktop usr/share/autostart/nepomukserver.desktop usr/share/dbus-1/interfaces/org.kde.KTimeZoned.xml @@ -10,7 +10,7 @@ usr/share/dbus-1/interfaces/org.kde.nepomuk.ServiceControl.xml usr/share/dbus-1/interfaces/org.kde.nepomuk.ServiceManager.xml usr/share/dbus-1/services/org.kde.knotify.service -usr/share/desktop-directories/kde4-information.directory +usr/share/desktop-directories/kde-information.directory usr/share/doc/kde4/HTML/en/kcontrol/background/common usr/share/doc/kde4/HTML/en/kcontrol/background/index.cache.bz2 usr/share/doc/kde4/HTML/en/kcontrol/background/index.docbook @@ -75,6 +75,9 @@ usr/share/doc/kde4/HTML/en/kcontrol/kcmnotify/common usr/share/doc/kde4/HTML/en/kcontrol/kcmnotify/index.cache.bz2 usr/share/doc/kde4/HTML/en/kcontrol/kcmnotify/index.docbook +usr/share/doc/kde4/HTML/en/kcontrol/kcmsmserver/common +usr/share/doc/kde4/HTML/en/kcontrol/kcmsmserver/index.cache.bz2 +usr/share/doc/kde4/HTML/en/kcontrol/kcmsmserver/index.docbook usr/share/doc/kde4/HTML/en/kcontrol/kcmtaskbar/common usr/share/doc/kde4/HTML/en/kcontrol/kcmtaskbar/index.cache.bz2 usr/share/doc/kde4/HTML/en/kcontrol/kcmtaskbar/index.docbook diff -Nru current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime.install current/kdebase-runtime-4.1.2/debian/kdebase-runtime.install --- current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime.install 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/kdebase-runtime.install 2008-11-07 08:54:46.000000000 -0500 @@ -11,9 +11,9 @@ usr/bin/kmimetypefinder usr/bin/knotify4 usr/bin/kquitapp -usr/bin/ksvgtopng4 +usr/bin/ksvgtopng usr/bin/ktraderclient -usr/bin/ktrash4 +usr/bin/ktrash usr/bin/kuiserver usr/bin/nepomukserver usr/bin/nepomukservicestub diff -Nru current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime.manpages current/kdebase-runtime-4.1.2/debian/kdebase-runtime.manpages --- current-debian/kdebase-runtime-4.1.3/debian/kdebase-runtime.manpages 1969-12-31 19:00:00.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/kdebase-runtime.manpages 2008-11-07 08:16:24.000000000 -0500 @@ -0,0 +1 @@ +debian/man/knotify4.1 diff -Nru current-debian/kdebase-runtime-4.1.3/debian/kde-icons-oxygen.install current/kdebase-runtime-4.1.2/debian/kde-icons-oxygen.install --- current-debian/kdebase-runtime-4.1.3/debian/kde-icons-oxygen.install 2008-11-07 08:19:41.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/kde-icons-oxygen.install 2008-11-07 08:53:13.000000000 -0500 @@ -1,2 +1,9 @@ -usr/share/icons/oxygen/* usr/share/kde4/apps/kstyle/themes/oxygen.themerc +usr/share/icons/oxygen/128x128 +usr/share/icons/oxygen/16x16 +usr/share/icons/oxygen/22x22 +usr/share/icons/oxygen/32x32 +usr/share/icons/oxygen/48x48 +usr/share/icons/oxygen/64x64 +usr/share/icons/oxygen/8x8 +usr/share/icons/oxygen/index.theme diff -Nru current-debian/kdebase-runtime-4.1.3/debian/KUBUNTU-DEBIAN-DIFFERENCES current/kdebase-runtime-4.1.2/debian/KUBUNTU-DEBIAN-DIFFERENCES --- current-debian/kdebase-runtime-4.1.3/debian/KUBUNTU-DEBIAN-DIFFERENCES 1969-12-31 19:00:00.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/KUBUNTU-DEBIAN-DIFFERENCES 2008-11-07 09:12:00.000000000 -0500 @@ -0,0 +1,19 @@ + - helpcenter4 no recommend on htdig + - Edit kde-icons-oxygen.install to not install scalable icons, + save disk space + - kde-base is not an alternative dep to kdebase-runtime-data-common in + kdebase-runtime-data + - Remove dependency from kdebase-runtime-bin-kde4 on pmount + - Remove: + - 01_kde4_information_menu.diff + - 02_ksvgtopng4.diff + - 03_ktrash4.diff + - Keep: + - kubuntu_01_nodisplay_knetattach.diff + - kubuntu_02_fix_dash_incompatibility.diff + - kubuntu_03_knetattach_use_sftp.diff + - kubuntu_04_kiosmb.diff + - kubuntu_05_knetattach_open_filebrowser.diff + - kubuntu_06_fix_knetattach_folder_icon.diff + - kubuntu_07_oxygenify_knetattach_icon.diff + - kubuntu_85_language_selector.diff diff -Nru current-debian/kdebase-runtime-4.1.3/debian/man/knotify4.1 current/kdebase-runtime-4.1.2/debian/man/knotify4.1 --- current-debian/kdebase-runtime-4.1.3/debian/man/knotify4.1 1969-12-31 19:00:00.000000000 -0500 +++ current/kdebase-runtime-4.1.2/debian/man/knotify4.1 2008-11-07 08:16:24.000000000 -0500 @@ -0,0 +1,153 @@ +.\" This file was generated by kdemangen.pl +.TH KNOTIFY4 1 "Oct 2008" "K Desktop Environment" "KDE Notification Daemon" +.SH NAME +knotify4 +\- KDE Notification Daemon +.SH SYNOPSIS +knotify4 [Qt\-options] [KDE\-options] +.SH DESCRIPTION +KDE Notification Daemon +.SH OPTIONS +.SS Generic options: +.TP +.B \-\-help +Show help about options +.TP +.B \-\-help\-qt +Show Qt specific options +.TP +.B \-\-help\-kde +Show KDE specific options +.TP +.B \-\-help\-all +Show all options +.TP +.B \-\-author +Show author information +.TP +.B \-v, \-\-version +Show version information +.TP +.B \-\-license +Show license information +.TP +.B \-\- +End of options +.SS +.SS KDE options: +.TP +.B \-\-caption +Use 'caption' as name in the titlebar +.TP +.B \-\-icon +Use 'icon' as the application icon +.TP +.B \-\-config +Use alternative configuration file +.TP +.B \-\-nocrashhandler +Disable crash handler, to get core dumps +.TP +.B \-\-waitforwm +Waits for a WM_NET compatible windowmanager +.TP +.B \-\-style