--- kdeedu-kde4-3.97.0.orig/debian/cdbs/cmake.mk +++ kdeedu-kde4-3.97.0/debian/cdbs/cmake.mk @@ -0,0 +1,60 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright (C) 2006 Peter Rockai +# Copyright (C) 2006 Fathi Boudra +# Description: A class for cmake packages +# +# 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_cmake +_cdbs_class_cmake := 1 + +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 + +DEB_MAKE_INSTALL_TARGET = install DESTDIR=$(DEB_DESTDIR) +DEB_CMAKE_PREFIX =/usr + +# Overriden from makefile-vars.mk +# We pass CFLAGS and friends to ./configure, so no need to pass them to make +DEB_MAKE_INVOKE = $(DEB_MAKE_ENVVARS) $(MAKE) -C $(DEB_BUILDDIR) + +include $(_cdbs_class_path)/makefile.mk$(_cdbs_makefile_suffix) + +common-configure-arch common-configure-indep:: common-configure-impl +common-configure-impl:: $(DEB_BUILDDIR)/CMakeCache.txt +$(DEB_BUILDDIR)/CMakeCache.txt: + cd $(DEB_BUILDDIR) && cmake $(CURDIR)/$(DEB_SRCDIR) \ + -DCMAKE_INSTALL_PREFIX="$(DEB_CMAKE_PREFIX)" \ + $(DEB_CMAKE_EXTRA_FLAGS) -DCMAKE_CXX_FLAGS="$(CXXFLAGS)" \ + -DCMAKE_C_FLAGS="$(CFLAGS)" -DCMAKE_VERBOSE_MAKEFILE=ON + mkdir -p $(DEB_DESTDIR) + +cleanbuilddir:: + -if test "$(DEB_BUILDDIR)" != "$(DEB_SRCDIR)"; then rm -rf $(DEB_BUILDDIR); fi + +endif + --- kdeedu-kde4-3.97.0.orig/debian/cdbs/utils.mk +++ kdeedu-kde4-3.97.0/debian/cdbs/utils.mk @@ -0,0 +1,49 @@ +# -*- mode: makefile; coding: utf-8 -*- +# Copyright © 2003 Colin Walters +# Description: Defines various random rules, including a list-missing rule +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2, or (at +# your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +# 02111-1307 USA. + +_cdbs_scripts_path ?= /usr/lib/cdbs +_cdbs_rules_path ?= /usr/share/cdbs/1/rules +_cdbs_class_path ?= /usr/share/cdbs/1/class + +ifndef _cdbs_rules_utils +_cdbs_rules_utils = 1 + +include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) + +DEB_PHONY_RULES += list-missing + +list-missing: + @if test -d debian/tmp; then \ + (cd debian/tmp && find . -type f -o -type l | grep -v '/DEBIAN/' | sort) > debian/cdbs-install-list; \ + (for package in $(DEB_ALL_PACKAGES); do \ + (cd debian/$$package && find . -type f -o -type l); \ + done) | sort -u > debian/cdbs-package-list; \ + if test -e debian/not-installed ;\ + then grep -v '^#' debian/not-installed >> debian/cdbs-package-list ; \ + sort -u debian/cdbs-package-list.tmp ; mv debian/cdbs-package-list.tmp debian/cdbs-package-list ; \ + fi ;\ + diff -u debian/cdbs-install-list debian/cdbs-package-list | sed '1,2d' | egrep '^-' || true; \ + else \ + echo "All files were installed into debian/$(DEB_SOURCE_PACKAGE)."; \ + fi + +clean:: + rm -f debian/cdbs-install-list debian/cdbs-package-list + +endif --- kdeedu-kde4-3.97.0.orig/debian/cdbs/kde.mk +++ kdeedu-kde4-3.97.0/debian/cdbs/kde.mk @@ -0,0 +1,79 @@ +# until bug 377524 resolved. +include debian/cdbs/cmake.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +# until bug #423394 resolved. +include debian/cdbs/utils.mk + +DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el +DEB_CMAKE_EXTRA_FLAGS += \ + $(DEB_CMAKE_DEBUG_FLAGS) \ + $(KDE4-ENABLE-FINAL) \ + -DKDE4_BUILD_TESTS=true \ + -DKDE_DISTRIBUTION_TEXT="Kubuntu packages" \ + -DCONFIG_INSTALL_DIR=$(DEB_CMAKE_PREFIX)/etc/kde4 \ + -DDATA_INSTALL_DIR=$(DEB_CMAKE_PREFIX)/share/kde4/apps \ + -DHTML_INSTALL_DIR=$(DEB_CMAKE_PREFIX)/share/doc/kde4/HTML \ + -DKCFG_INSTALL_DIR=$(DEB_CMAKE_PREFIX)/share/kde4/config.kcfg \ + -DLIB_INSTALL_DIR=$(DEB_CMAKE_PREFIX)/lib \ + -DSYSCONF_INSTALL_DIR=$(DEB_CMAKE_PREFIX)/etc + +DEB_CMAKE_PREFIX = /usr/lib/kde4 +DEB_DH_INSTALL_ARGS = --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 + +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))) + KDE4-ENABLE-FINAL = $(if $(DEB_KDE_ENABLE_FINAL),-DKDE4_ENABLE_FINAL=true,) + else + KDE4-ENABLE-FINAL = + endif +endif + +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + #no optimizations, full debug + DEB_CMAKE_DEBUG_FLAGS = -DCMAKE_BUILD_TYPE=debugfull +else + #This is around -O2 -g + DEB_CMAKE_DEBUG_FLAGS = -DCMAKE_BUILD_TYPE=relwithdebinfo +endif + +common-build-arch:: debian/stamp-man-pages +debian/stamp-man-pages: + if ! test -d debian/man/out; then mkdir -p debian/man/out; fi + for f in $$(find debian/man -name '*.sgml'); do \ + docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ + done + for f in $$(find debian/man -name '*.man'); do \ + soelim -I debian/man $$f \ + > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ + done + touch debian/stamp-man-pages + +clean:: +ifndef THIS_SHOULD_GO_TO_UNSTABLE + #guard against experimental uploads to unstable + #dpkg-parsechangelog | grep ^Distribution | grep -q experimental +endif + rm -rf debian/man/out + -rmdir debian/man + rm -f debian/stamp-man-pages + rm -f CMakeCache.txt + +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 + --- kdeedu-kde4-3.97.0.orig/debian/changelog +++ kdeedu-kde4-3.97.0/debian/changelog @@ -0,0 +1,72 @@ +kdeedu-kde4 (4:3.97.0-0ubuntu4) hardy; urgency=low + + * Fix kstars build by adding back libsbigudrv.so + + -- Jonathan Riddell Mon, 17 Dec 2007 12:55:59 +0000 + +kdeedu-kde4 (4:3.97.0-0ubuntu3) hardy; urgency=low + + * Add build-dep on libnova-dev + + -- Jonathan Riddell Fri, 14 Dec 2007 18:34:00 +0000 + +kdeedu-kde4 (4:3.97.0-0ubuntu2) hardy; urgency=low + + * Fix Exec= entry in .desktop files + * Pass arguements to executibles from wrapper scripts + + -- Terence Simpson Wed, 12 Dec 2007 16:43:45 +0000 + +kdeedu-kde4 (4:3.97.0-0ubuntu1) hardy; urgency=low + + * New upstream release + + -- Jonathan Riddell Fri, 07 Dec 2007 11:54:53 +0000 + +kdeedu-kde4 (4:3.96.0-1ubuntu1) hardy; urgency=low + + * Sync with Debian + + -- Jonathan Riddell Tue, 20 Nov 2007 12:37:23 +0000 + +kdeedu (4:3.96.0-1) experimental; urgency=low + + * New upstream release. + + +++ Changes by Armin Berres: + + * Build depend on up to date kdelibs5. + * Update installed files. + + -- Debian Qt/KDE Maintainers Wed, 14 Nov 2007 20:48:44 +0000 + +kdeedu (4:3.95.0-1) experimental; urgency=low + + * New upstream release: KDE4 beta4. First upload to the Debian archive. + + +++ Changes by Armin Berres: + + * Create *.install files for all built packages and update debian/control + accordingly. + * Add build dependency on libopenbabel-dev, libeigen-dev, + libboost-python-dev, libcfitsio3-dev, libreadline5-dev, libgps-dev. + * Make libkdeedu-dev arch-all. + + +++ Changes by Fathi Boudra: + + * Add libusb-dev build dependency. + + +++ Changes by Ana Beatriz Guerrero Lopez: + + * Polish and complete package descriptions. + * Write copyright file. + + -- Debian Qt/KDE Maintainers Sun, 04 Nov 2007 21:12:12 +0100 + + +kdeedu (4:3.90.1-1) alioth; urgency=low + + * Initial release. + + -- Ana Beatriz Guerrero Lopez Thu, 24 May 2007 04:15:11 +0200 + --- kdeedu-kde4-3.97.0.orig/debian/rules +++ kdeedu-kde4-3.97.0/debian/rules @@ -0,0 +1,47 @@ +#!/usr/bin/make -f + +include debian/cdbs/kde.mk + +#For Kubuntu paths create custom binary wrapper and .desktop menu files +#common-post-build-indep:: +install/kgeography-data-kde4:: + mkdir -p $(DEB_DESTDIR)/usr/bin + for file in `ls $(DEB_DESTDIR)/usr/lib/kde4/bin/`; do \ + echo "#!/bin/sh" > $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo export LD_LIBRARY_PATH=/usr/lib/kde4/lib >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo export KDEHOME=~/.kde4 >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo export KDEDIRS=/usr/lib/kde4 >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo /usr/lib/kde4/bin/$${file} $$@ >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + chmod 755 $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + done + + mkdir -p $(DEB_DESTDIR)/usr/share/applications + for file in `ls $(DEB_DESTDIR)/usr/lib/kde4/share/applications/kde4/`; do \ + cat $(DEB_DESTDIR)/usr/lib/kde4/share/applications/kde4/$${file} \ + | sed 's/Name=.*$$/& KDE 4/' \ + | sed 's/Exec=[a-z]*/&-kde4/' \ + | sed 's,Icon=,Icon=/usr/lib/kde4/share/icons/hicolor/32x32/apps/,' \ + | sed 's/Icon=.*$$/&.png/' \ + > $(DEB_DESTDIR)/usr/share/applications/kde4-$${file}; \ + done + +install/blinken-kde4:: + mkdir -p $(DEB_DESTDIR)/usr/bin + for file in `ls $(DEB_DESTDIR)/usr/lib/kde4/bin/`; do \ + echo "#!/bin/sh" > $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo export LD_LIBRARY_PATH=/usr/lib/kde4/lib >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo export KDEHOME=~/.kde4 >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo export KDEDIRS=/usr/lib/kde4 >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + echo /usr/lib/kde4/bin/$${file} $$@ >> $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + chmod 755 $(DEB_DESTDIR)/usr/bin/$${file}-kde4; \ + done + + mkdir -p $(DEB_DESTDIR)/usr/share/applications + for file in `ls $(DEB_DESTDIR)/usr/lib/kde4/share/applications/kde4/`; do \ + cat $(DEB_DESTDIR)/usr/lib/kde4/share/applications/kde4/$${file} \ + | sed 's/Name=.*$$/& KDE 4/' \ + | sed 's/Exec=[a-z]*/&-kde4/' \ + | sed 's,Icon=,Icon=/usr/lib/kde4/share/icons/hicolor/32x32/apps/,' \ + | sed 's/Icon=.*$$/&.png/' \ + > $(DEB_DESTDIR)/usr/share/applications/kde4-$${file}; \ + done --- kdeedu-kde4-3.97.0.orig/debian/kstars-kde4.install +++ kdeedu-kde4-3.97.0/debian/kstars-kde4.install @@ -0,0 +1,13 @@ +usr/lib/kde4/bin/indi_apogee_alta +usr/lib/kde4/bin/indi_fli_ccd +usr/lib/kde4/bin/indi_meade_lpi +usr/lib/kde4/bin/indi_sbig_ccd +usr/lib/kde4/bin/indi_v4l_generic +usr/lib/kde4/bin/indi_v4l_philips +usr/lib/kde4/bin/kstars +usr/lib/kde4/lib/libSatLib.so.4 +usr/lib/kde4/lib/libSatLib.so.4.0.0 +usr/lib/kde4/lib/libsbigudrv.so.1.0.0 +usr/lib/kde4/lib/libsbigudrv.so.4 + +usr/bin/kstars-kde4 --- kdeedu-kde4-3.97.0.orig/debian/control +++ kdeedu-kde4-3.97.0/debian/control @@ -0,0 +1,551 @@ +Source: kdeedu-kde4 +Section: kde +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian Qt/KDE Maintainers +Uploaders: Daniel Schepler , Ana Beatriz Guerrero Lopez , Sune Vuorela , Fathi Boudra , Armin Berres +Build-Depends: cdbs, debhelper (>= 5), cmake, quilt, kdelibs5-dev (>=4:3.97.0), + ocaml, libfacile-ocaml-dev, libopenbabel-dev, libeigen-dev, + libboost-python-dev, libcfitsio3-dev, libreadline5-dev, libgps-dev, libusb-dev, + libnova-dev +Standards-Version: 3.7.2 + +Package: kdeedu-kde4 +Architecture: any +Depends: blinken-kde4 (>= ${binary:Version}), kalgebra-kde4 (>= ${binary:Version}), kalzium-kde4 (>= ${binary:Version}), kanagram-kde4 (>= ${binary:Version}), kgeography-kde4 (>= ${binary:Version}), khangman-kde4 (>= ${binary:Version}), kig-kde4 (>= ${binary:Version}), kiten-kde4 (>= ${binary:Version}), klettres-kde4 (>= ${binary:Version}), kmplot-kde4 (>= ${binary:Version}), kpercentage-kde4 (>= ${binary:Version}), kstars-kde4 (>= ${binary:Version}), ktouch-kde4 (>= ${binary:Version}), kturtle-kde4 (>= ${binary:Version}), kwordquiz-kde4 (>= ${binary:Version}), indi-kde4 (>= ${binary:Version}), marble-kde4 (>= ${binary:Version}), parley-kde4 (>= ${binary:Version}) +Description: educational apps from the official KDE4 release + KDE (the K Desktop Environment) is a powerful Open Source graphical + desktop environment for Unix workstations. It combines ease of use, + contemporary functionality, and outstanding graphical design with the + technological superiority of the Unix operating system. + . + This metapackage includes educational applications provided with the + official release of KDE4. + +Package: kdeedu-dbg-kde4 +Architecture: any +Priority: extra +Depends: kde4libs-dbg +Section: libdevel +Description: debugging symbols for kdeedu + This package contains the debugging symbols associated with kdeedu. + They will automatically be used by gdb for debugging kdeedu-related + issues. + + +Package: blinken-kde4 +Architecture: any +Section: games +Depends: ${shlibs:Depends}, ttf-sjfonts +Suggests: khelpcenter, kdeedu-doc-html +Description: KDE4 version of the Simon Says electronic memory game + Blinken is based on an electronic game released in 1978, which + challenges players to remember sequences of increasing length. On + the face of the device, there are 4 different color buttons, each + with its own distinctive sound. These buttons light up randomly, + creating the sequence that the player must then recall. If the + player is successful in remembering the sequence of lights in the + correct order, they advance to the next stage, where an identical + sequence with one extra step is presented. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kalgebra-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends} +Description: mathematical calculator for KDE4 + KAlgebra is a mathematical calculator based content markup MathML language. + Nowadays it is capable to make simple MathML operations (arithmetic and logical) + and representate 2D and 3D graphs. It is actually not necessary to know MathML + to use KAlgebra. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + . + Homepage: http://kalgebra.berlios.de/ + +Package: kalzium-kde4 +Architecture: any +Section: science +Depends: ${shlibs:Depends}, kalzium-data-kde4 (>= ${source:Version}) +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: chemistry teaching tool for KDE4 + Kalzium is a program which shows you the Periodic System of Elements + (PSE). You can use Kalzium to search for information about the + elements or to learn facts about the PSE. + . + Kalzium provides you with all kinds of information about the PSE. + You can look up lots of information about the elements and also use + visualisations to show them. + . + You can visualise the Periodic Table of the Elements by blocks, + groups, acidic behavior or different states of matter. You can also + plot data for a range of elements (weight, mean weight, density, IE1, + IE2, electronegativity), and you can go back in time to see what + elements were known at a given date. In addition, on platforms where + OCaml supports native code generation, Kalzium includes a chemical + equation solver. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kalzium-data-kde4 +Architecture: all +Section: science +Description: data files for Kalzium + This package contains architecture-independent data files for + Kalzium, the KDE periodic table application. This includes pictures + of various chemical equipment and of samples of several elements, in + addition to the actual chemical data. + . + See the kalzium package for further information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kanagram-kde4 +Architecture: any +Section: games +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: letter order game for KDE4 + KAnagram is a game that is based on the word/letter puzzles that the + author played as a child. A word is picked at random and displayed + with its letters in a messed order, with difficulty dependent on the + chosen level. You have an unlimited number of attempts, and scores + are kept. + . + It is a very simply constructed game, with 3 difficulty levels of + play. It is fully customizable, allowing you to write in your own + words and set your own 'look and feel' of the game. It is aimed for + children aged 10+ because of the difficulty, but of course everyone + is welcome to try. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kbruch-kde4 +Architecture: any +Section: math +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: fraction calculation teaching tool for KDE4 + KBruch is a small program to practice calculating with fractions. + Different exercises are provided for this purpose. The program + checks the user's input and gives feedback. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kgeography-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends}, kgeography-data-kde4 (>= ${source:Version}) +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: Geography learning tool for KDE4 + KGeography contains maps allowing you to learn various countries or + the political divisions of several countries. It has several modes, + including a map browser and games involving the names, capitals, or + flags of the map divisions. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kgeography-data-kde4 +Architecture: all +Section: kde +Description: data files for KGeography + This package contains architecture-independent data files for + KGeography, the geography learning tool for KDE. This includes map + and flag images. + . + See the kgeography package for further information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: khangman-kde4 +Architecture: any +Section: games +Depends: ${shlibs:Depends}, ttf-dustin +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: the classical hangman game for KDE4 + KHangMan is a game based on the well known hangman game. It is aimed + for children aged 6 and above. It has four levels of difficulty: + Animals (animals words), Easy, Medium and Hard. + . + A word is picked at random and the letters are hidden. You must + guess the word by trying one letter after another. Each time you + guess a wrong letter, a picture of a hangman is drawn. You must + guess the word before getting hanged! You have 10 tries. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kig-kde4 +Architecture: any +Section: math +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: interactive geometry program for KDE4 + Kig is an application for interactive geometry. It is intended to + serve two purposes: + . + - to allow students to interactively explore mathematical figures and + concepts using the computer; + - to serve as a WYSIWYG tool for drawing mathematical figures and + including them in other documents. + . + With this program you can do geometry on a computer just like you + would on a blackboard in a classroom. However, the program allows + you to move and change parts of a geometrical drawing so that you can + see how the other parts change as a result. + . + Kig supports loci and user-defined macros. It also supports imports + and exports to/from foreign file formats including Cabri, Dr. Geo, + KGeo, KSeg and XFig. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kiten-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends}, ttf-kochi-gothic | ttf-kochi-mincho +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: Japanese reference/study tool for KDE4 + Kiten is a Japanese reference and study tool for KDE4. It is an + application with multiple functions. Firstly, it is a convenient + English to Japanese and Japanese to English dictionary. Secondly, it + is a Kanji dictionary, with multiple ways to look up specific + characters. Thirdly, it is a tool to help you learn Kanji. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: klettres-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends}, klettres-data-kde4 (>= ${source:Version}) +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: foreign alphabet tutor for KDE4 + KLettres is an application specially designed to help the user to + learn the alphabet in a new language and then to learn to read simple + syllables. The user can be a young child aged from two and a half or + an adult that wants to learn the basics of a foreign language. + . + Seven languages are currently available: Czech, Danish, Dutch, + English, French, Italian and Slovak. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: klettres-data-kde4 +Architecture: all +Section: kde +Description: data files for KLettres foreign alphabet tutor + This package contains architecture-independent data files for + KLettres, the foreign alphabet tutor for KDE. This includes sound + files and graphics. + . + See the klettres package for further information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kmplot-kde4 +Architecture: any +Section: math +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: mathematical function plotter for KDE4 + KmPlot has a powerful built-in parser. You can plot different + functions simultaneously and combine them to build new functions. + . + KmPlot supports parametric functions and functions in polar + coordinates. Several grid modes are supported. Plots may be printed + with high precision in the correct scale. + . + KmPlot also provides some numerical and visual features, like filling + and calculating the area between the plot and the first axis, finding + maximum and minimum values, changing function parameters dynamically + and plotting derivatives and integral functions. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kpercentage-kde4 +Architecture: any +Section: math +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: percentage calculation teaching tool for KDE4 + KPercentage is a small math application that will help pupils to + improve their skills in calculating percentages. + . + There is a special training section for the three basic tasks. + Finally the pupil can select a random mode, in which all three tasks + are mixed randomly. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kstars-kde4 +Architecture: any +Section: science +Depends: ${shlibs:Depends}, kstars-data-kde4 (>= ${source:Version}), indi-kde4 (= ${binary:Version}) +Suggests: konqueror-kde4, khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: desktop planetarium for KDE4 + KStars is a graphical desktop planetarium for KDE. It depicts an + accurate simulation of the night sky, including stars, + constellations, star clusters, nebulae, galaxies, all planets, the + Sun, the Moon, comets and asteroids. You can see the sky as it + appears from any location on Earth, on any date. + . + The user interface is highly intuitive and flexible. The display can + be panned and zoomed with the mouse, and you can easily identify + objects and track their motion across the sky. KStars includes many + powerful features, yet the interface is clean and simple and fun to + use. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kstars-data-kde4 +Architecture: all +Section: science +Description: data files for KStars desktop planetarium + This package contains architecture-independent data files for KStars, + the graphical desktop planetarium for KDE. This includes star + catalogues and astronomical images. + . + See the kstars package for further information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: ktouch-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: touch typing tutor for KDE4 + KTouch is a program for learning touch typing - it helps you learn to + type on a keyboard quickly and correctly. Every finger has its place + on the keyboard with associated keys to press. + . + KTouch helps you learn to touch type by providing you with text to + train on, and adjusts to different levels depending on how good you + are. It can display which key to press next, and the correct finger + to use. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kturtle-kde4 +Architecture: any +Section: devel +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: educational Logo programming environment + KTurtle is an educational programming environment using the Logo + programming language. It tries to make programming as easy and + accessible as possible. This makes KTurtle suitable for teaching + kids the basics of mathematics, geometry and programming. + . + The commands used to program are in the style of the Logo programming + language. The unique feature of Logo is that the commands are often + translated into the speaking language of the programmer. + . + KTurtle is named after "the turtle" that plays a central role in the + programming environment. The user programs the turtle, using the + Logo commands, to draw a picture on the canvas. + . + Note that this version of Logo is only focused on the educational + qualities of the programming language and will not try to suit + professional programmers' needs. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: kwordquiz-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends} +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: flashcard and vocabulary learning program for KDE4 + KWordQuiz is a flashcard-based tool that helps you to master new + vocabularies. It may be a language or any other kind of terminology. + . + KWordQuiz can open several types of vocabulary data. Supported are + kvtml files used by other KDE programs such as KVocTrain, wql files + used by WordQuiz for Windows, csv files with comma-separated text, + and xml.gz files created by Pauker (http://pauker.sourceforge.net). + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: libkdeedu4-kde4 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Description: library for use with KDE4 educational apps + The KDE-based library libkdeedu is used with educational + applications. It currently provides support for data plotting and + vocabulary items (including a parser for kvtml vocabulary files). + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: libkdeedu-dev-kde4 +Architecture: all +Section: libdevel +Depends: libkdeedu4-kde4 (= ${binary:Version}), kdelibs5-dev (>= 4:3.97.0) +Description: development files for KDE4 educational library + The KDE-based library libkdeedu is used with educational + applications. It currently provides support for data plotting and + vocabulary items (including a parser for kvtml vocabulary files). + . + Development files for libkdeedu are included in this package. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: libkiten4-kde4 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, edict, kanjidic +Recommends: ttf-kochi-gothic | ttf-kochi-mincho +Description: library for Kiten Japanese reference/study tool + Kiten is a Japanese reference/study tool for KDE. The library + libkiten contains portions of Kiten that may be useful for other + applications. These portions include dictionary, character lookup + and widget classes. + . + This package contains the libkiten library along with supporting + data, such as Japanese language data files and GUI resource files. + For further information, see the kiten package. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: libkiten-dev-kde4 +Architecture: any +Section: libdevel +Depends: libkiten4-kde4 (= ${binary:Version}), kdelibs5-dev (>= 4:3.97.0) +Description: development files for Kiten library + Kiten is a Japanese reference/study tool for KDE. The library + libkiten contains portions of Kiten that may be useful for other + applications. These portions include dictionary, character lookup + and widget classes. + . + Development files for libkiten are included in this package. For + further information, see the kiten package. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information.. + +Package: indi-kde4 +Architecture: any +Section: science +Depends: ${shlibs:Depends} +Description: Instrument Neutral Distributed Interface for astronomical devices + INDI is an Instrument Neutral Distributed Interface control protocol for + astronomical devices, which provides a framework that decouples low level + hardware drivers from high level front end clients. Clients that use the + device drivers are completely unaware of the device capabilities and + communicate with the device drivers and build a completely dynamic GUI + based on the services provided by the device. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: marble-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends}, libmarble4-kde4 (= ${binary:Version}), marble-data-kde4 (>= ${source:Version}) +Description: generic geographical map widget + Marble is meant to be a generic geographical map widget. It shows the earth as + a sphere but doesn't make use of any hardware acceleration (NO OpenGL). So + although it might look similar to professional applications like Google Earth + or Nasa World Wind it's rather meant to be a small light weight multi purpose + widget for KDE. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + . + Homepage: http://edu.kde.org/marble/ + +Package: marble-data-kde4 +Architecture: all +Section: kde +Description: data files for Marble + This package contains the architecture-independent data files for Marble, the + generic map widget tool for KDE and others. This includes map and flag images. + . + See the marble package for more information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: libmarble4-kde4 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Description: library for Marble + This package contains supporting libraries for marble. + . + See the marble package for more information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: libmarble-dev-kde4 +Architecture: any +Section: libdevel +Depends: libmarble4-kde4 (= ${binary:Version}), kdelibs5-dev (>= 4:3.97.0) +Description: development files for Marble + This is the development package which contains the headers for the + libmarble4 library. + . + See the marble package for more information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: parley-kde4 +Architecture: any +Section: kde +Depends: ${shlibs:Depends}, ${perl:Depends}, libwww-perl, parley-data-kde4 (>= ${source:Version}) +Suggests: khelpcenter-kde4, kdeedu-doc-html-kde4 +Description: vocabulary trainer for KDE4 + Parley is a little utility to help you train your vocabulary when + you are trying to learn a foreign language. You can create your own + database with the words you need. It is intended as a replacement + for index (flash) cards. + . + You probably remember flashcards from school. The teacher would + write the original expression on the front side of the card and the + translation on the back. Then look at the cards one after another. + If you knew the translation, you could put it away. If you failed, + you put it back to try again. + . + Parley is not intended to teach you grammar or other sophisticated + things. This is and probably will stay beyond the scope of this + application. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. + +Package: parley-data-kde4 +Architecture: all +Section: kde +Description: data files for parley + This package contains architecture-independent data files for Parley. + . + See the Parley package for further information. + . + This package is part of KDE4, as a component of the KDE4 education module. + See the 'kde' and 'kdeedu' packages for more information. --- kdeedu-kde4-3.97.0.orig/debian/klettres-data-kde4.install +++ kdeedu-kde4-3.97.0/debian/klettres-data-kde4.install @@ -0,0 +1,44 @@ +usr/lib/kde4/etc/kde4/klettres.knsrc +usr/share/applications/kde4-klettres.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/klettres +usr/lib/kde4/share/doc/kde4/HTML/en/klettres/klettres1.png +usr/lib/kde4/share/doc/kde4/HTML/en/klettres/klettres2.png +usr/lib/kde4/share/doc/kde4/HTML/en/klettres/klettres3.png +usr/lib/kde4/share/doc/kde4/HTML/en/klettres/klettres4.png +usr/lib/kde4/share/doc/kde4/HTML/en/klettres/klettres5.png +usr/lib/kde4/share/doc/kde4/HTML/en/klettres/klettres6.png +usr/lib/kde4/share/icons/hicolor/128x128/apps/klettres.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/klettres.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/klettres.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/klettres.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/klettres.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/klettres.svgz +usr/lib/kde4/share/kde4/apps/klettres +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/128x128/actions/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/128x128/actions/klettres_grownup.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/128x128/actions/klettres_kids.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/16x16/actions/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/16x16/actions/klettres_grownup.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/16x16/actions/klettres_kids.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/22x22/actions/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/22x22/actions/klettres_grownup.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/22x22/actions/klettres_kids.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/32x32/actions/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/32x32/actions/klettres_grownup.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/32x32/actions/klettres_kids.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/48x48/actions/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/48x48/actions/klettres_grownup.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/48x48/actions/klettres_kids.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/64x64/actions/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/64x64/actions/klettres_kids.png +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/scalable/actions/klettres_desert.svgz +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/scalable/actions/klettres_grownup.svgz +usr/lib/kde4/share/kde4/apps/klettres/icons/crystalsvg/scalable/actions/klettres_kids.svgz +usr/lib/kde4/share/kde4/apps/klettres/klettresui.rc +usr/lib/kde4/share/kde4/apps/klettres/pics/desert/klettres_desert.svg +usr/lib/kde4/share/kde4/apps/klettres/pics/kids/klettres_kids.svg +usr/lib/kde4/share/kde4/apps/klettres/pics/klettres_desert.png +usr/lib/kde4/share/kde4/apps/klettres/pics/klettres_grownup.png +usr/lib/kde4/share/kde4/apps/klettres/pics/klettres_kids.jpeg +usr/lib/kde4/share/kde4/apps/klettres/pics/savannah/klettres_savannah.svg +usr/lib/kde4/share/kde4/config.kcfg/klettres.kcfg --- kdeedu-kde4-3.97.0.orig/debian/marble-data-kde4.install +++ kdeedu-kde4-3.97.0/debian/marble-data-kde4.install @@ -0,0 +1,351 @@ +usr/share/applications/kde4-marble.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/marble +usr/lib/kde4/share/doc/kde4/HTML/en/marble/index.docbook +usr/lib/kde4/share/doc/kde4/HTML/en/marble/logo-1.png +usr/lib/kde4/share/doc/kde4/HTML/en/marble/mapview-1.png +usr/lib/kde4/share/doc/kde4/HTML/en/marble/measure-1.png +usr/lib/kde4/share/doc/kde4/HTML/en/marble/quick-1.png +usr/lib/kde4/share/doc/kde4/HTML/en/marble/search-1.png +usr/lib/kde4/share/doc/kde4/HTML/en/marble/search-2.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/airport.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_0.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_-11000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_-2000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_-200.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_-4000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_-50.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/bathymetry_-6500.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/border_1.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/border_2.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/checkbox_checked.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/checkbox_disabled.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/checkbox_empty.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_1_orange.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_1_red.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_1_white.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_1_yellow.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_2_orange.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_2_red.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_2_white.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_2_yellow.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_3_orange.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_3_red.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_3_white.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_3_yellow.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_4_orange.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_4_red.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_4_white.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/city_4_yellow.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_bc.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_bl.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_br.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_cl.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_cr.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_tc.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_tl.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/cursor_tr.xpm +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/default_location.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/lake.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/mountain_1.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/pole_1.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/pole_2.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/river.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/shipwreck.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_0.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_1000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_2000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_200.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_3500.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_5000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_500.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_50.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/topography_7000.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/volcano_1.png +usr/lib/kde4/share/kde4/apps/marble/data/bitmaps/waypoint.png +usr/lib/kde4/share/kde4/apps/marble/data/credits_authors.html +usr/lib/kde4/share/kde4/apps/marble/data/credits_data.html +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ad.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ae.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_af.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ag.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ai.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_al.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_am.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_an.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ao.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_aq.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ar.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_as.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_at.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_au.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_aw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ax.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_az.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ba.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bb.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bd.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_be.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bh.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bi.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bj.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bo.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_br.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bs.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bv.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_by.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_bz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ca.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cd.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ch.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ci.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ck.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cl.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_co.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cv.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cx.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cy.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_cz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_de.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_dj.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_dk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_dm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_do.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_dz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ec.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ee.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_eg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_eh.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_er.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_es.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_et.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_fi.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_fj.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_fk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_fm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_fo.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_fr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ga.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gb.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gd.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ge.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gh.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gi.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gl.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gp.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gq.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gs.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_gy.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_hk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_hm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_hn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_hr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ht.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_hu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_id.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ie.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_il.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_im.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_in.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_io.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_iq.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ir.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_is.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_it.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_je.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_jm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_jo.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_jp.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ke.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kh.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ki.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_km.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kp.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ky.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_kz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_la.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lb.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_li.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ls.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_lv.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ly.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ma.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_md.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_me.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mh.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ml.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mo.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mp.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mq.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ms.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mv.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mx.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_my.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_mz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_na.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_nc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ne.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_nf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ng.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ni.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_nl.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_no.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_np.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_nr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_nu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_nz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_om.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pa.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pe.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ph.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pl.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ps.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_pw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_py.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_qa.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_re.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ro.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_rs.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ru.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_rw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sa.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sb.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sd.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_se.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sh.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_si.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sj.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sl.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_so.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_st.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sv.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sy.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_sz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_td.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_th.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tj.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tk.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tl.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_to.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tr.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tv.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tw.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_tz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ua.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ug.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_um.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_us.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_uy.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_uz.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_vc.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ve.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_vg.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_vi.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_vn.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_vu.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_wf.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ws.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_ye.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_yt.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_za.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_zm.svg +usr/lib/kde4/share/kde4/apps/marble/data/flags/flag_zw.svg +usr/lib/kde4/share/kde4/apps/marble/data/legend.css +usr/lib/kde4/share/kde4/apps/marble/data/legend.html +usr/lib/kde4/share/kde4/apps/marble/data/LICENSE.txt +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/bluemarble +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/bluemarble/bluemarble.dgml +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/bluemarble/bluemarble.jpg +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/bluemarble/bluemarble-preview.png +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/citylights/citylights.dgml +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/citylights/citylights.jpg +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/citylights/citylights-preview.png +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/plain/plain.dgml +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/plain/plain-preview.png +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/srtm/srtm.dgml +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/srtm/srtm.jpg +usr/lib/kde4/share/kde4/apps/marble/data/maps/earth/srtm/srtm-preview.png +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/DATELINE.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PAUST.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PBORDER.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PCANPROV.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PCOAST.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PDIFFBORDER.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PGLACIER.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PISLAND.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PLAKEISLAND.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PLAKE.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PMEXICO.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PUSA48.DIFF.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/PUSA48.PNT +usr/lib/kde4/share/kde4/apps/marble/data/mwdbii/RIVER.PNT +usr/lib/kde4/share/kde4/apps/marble/data/placemarks/baseplacemarks.cache +usr/lib/kde4/share/kde4/apps/marble/data/placemarks/boundaryplacemarks.cache +usr/lib/kde4/share/kde4/apps/marble/data/placemarks/cityplacemarks.cache +usr/lib/kde4/share/kde4/apps/marble/data/placemarks/elevplacemarks.cache +usr/lib/kde4/share/kde4/apps/marble/data/placemarks/otherplacemarks.cache +usr/lib/kde4/share/kde4/apps/marble/data/svg/compass.svg +usr/lib/kde4/share/kde4/apps/marble/data/svg/marble-logo-72dpi.png +usr/lib/kde4/share/kde4/apps/marble/data/svg/marble-logo.png +usr/lib/kde4/share/kde4/apps/marble/data/svg/marble-logo.svg +usr/lib/kde4/share/kde4/apps/marble/marbleui.rc +usr/lib/kde4/share/kde4/apps/marble_part/marble_part.rc +usr/lib/kde4/share/kde4/config.kcfg/marble.kcfg +usr/lib/kde4/share/kde4/services/marble_part.desktop --- kdeedu-kde4-3.97.0.orig/debian/kig-kde4.install +++ kdeedu-kde4-3.97.0/debian/kig-kde4.install @@ -0,0 +1,45 @@ +usr/lib/kde4/bin/kig +usr/lib/kde4/bin/pykig.py +usr/lib/kde4/lib/kde4/libkigpart.so +usr/share/applications/kde4-kig.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kig +usr/lib/kde4/share/doc/kde4/HTML/en/kig/man-kig.1.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/kig.png +usr/lib/kde4/share/icons/hicolor/128x128/mimetypes/application-x-kig.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kig.png +usr/lib/kde4/share/icons/hicolor/16x16/mimetypes/application-x-kig.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kig.png +usr/lib/kde4/share/icons/hicolor/22x22/mimetypes/application-x-kig.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kig.png +usr/lib/kde4/share/icons/hicolor/32x32/mimetypes/application-x-kig.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kig.png +usr/lib/kde4/share/icons/hicolor/48x48/mimetypes/application-x-kig.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kig.png +usr/lib/kde4/share/icons/hicolor/64x64/mimetypes/application-x-kig.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kig.svgz +usr/lib/kde4/share/icons/hicolor/scalable/mimetypes/application-x-kig.svgz +usr/lib/kde4/share/kde4/apps/katepart/syntax/python-kig.xml +usr/lib/kde4/share/kde4/apps/kig +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/circle_by_center_and_line.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/circle_by_point_and_diameter.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/equitriangle.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/evolute.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/osculating_circle.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/segment_axis.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/square.kigt +usr/lib/kde4/share/kde4/apps/kig/builtin-macros/vector_difference.kigt +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/16x16/actions/kig_xfig.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/22x22/actions/kig_numericvalue.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/22x22/actions/kig_polygon.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/22x22/actions/kig_text.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/32x32/actions/kig_numericvalue.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/32x32/actions/kig_polygon.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/32x32/actions/kig_text.png +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/scalable/actions/kig_numericvalue.svgz +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/scalable/actions/kig_polygon.svgz +usr/lib/kde4/share/kde4/apps/kig/icons/hicolor/scalable/actions/kig_text.svgz +usr/lib/kde4/share/kde4/apps/kig/kigpartui.rc +usr/lib/kde4/share/kde4/apps/kig/kigui.rc +usr/lib/kde4/share/kde4/services/kig_part.desktop + +usr/bin/kig-kde4 --- kdeedu-kde4-3.97.0.orig/debian/libkdeedu-dev-kde4.install +++ kdeedu-kde4-3.97.0/debian/libkdeedu-dev-kde4.install @@ -0,0 +1,8 @@ +usr/lib/kde4/include/libkdeedu/ +usr/lib/kde4/lib/libavogadro-kalzium.so +usr/lib/kde4/lib/libcompoundviewer.so +usr/lib/kde4/lib/libkdeeduui.so +usr/lib/kde4/lib/libkeduvocdocument.so +usr/lib/kde4/lib/libSatLib.so +usr/lib/kde4/lib/libscience.so +usr/lib/kde4/lib/libsbigudrv.so --- kdeedu-kde4-3.97.0.orig/debian/kalzium-kde4.install +++ kdeedu-kde4-3.97.0/debian/kalzium-kde4.install @@ -0,0 +1,14 @@ +usr/lib/kde4/bin/kalzium +usr/lib/kde4/lib/avogadro-kalzium/engines/libbsdyengine-kalzium.so +usr/lib/kde4/lib/avogadro-kalzium/engines/liblabelengine-kalzium.so +usr/lib/kde4/lib/avogadro-kalzium/engines/libsphereengine-kalzium.so +usr/lib/kde4/lib/avogadro-kalzium/engines/libstickengine-kalzium.so +usr/lib/kde4/lib/avogadro-kalzium/engines/libwireengine-kalzium.so +usr/lib/kde4/lib/avogadro-kalzium/tools/libnavigatetool-kalzium.so +usr/lib/kde4/lib/kde4/plugins/designer/kalziumuiwidgets.so +usr/lib/kde4/lib/libavogadro-kalzium.so.0 +usr/lib/kde4/lib/libavogadro-kalzium.so.0.0.1 +usr/lib/kde4/lib/libcompoundviewer.so.4 +usr/lib/kde4/lib/libcompoundviewer.so.4.0.0 + +usr/bin/kalzium-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kiten-kde4.install +++ kdeedu-kde4-3.97.0/debian/kiten-kde4.install @@ -0,0 +1,19 @@ +usr/lib/kde4/bin/kiten +usr/lib/kde4/bin/kitengen +usr/lib/kde4/bin/kitenradselect +usr/lib/kde4/lib/libkiten.so +usr/lib/kde4/lib/libkiten.so.4 +usr/lib/kde4/lib/libkiten.so.4.0.0 +usr/share/applications/kde4-kiten.desktop +usr/share/applications/kde4-radselect.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kiten +usr/lib/kde4/share/doc/kde4/HTML/en/kiten/kiten1.png +usr/lib/kde4/share/doc/kde4/HTML/en/kiten/kiten2.png +usr/lib/kde4/share/kde4/apps/kiten +usr/lib/kde4/share/kde4/apps/kiten/kitenui.rc +usr/lib/kde4/share/kde4/apps/kitenradselect +usr/lib/kde4/share/kde4/config.kcfg/kiten.kcfg + +usr/bin/kiten-kde4 +usr/bin/kitengen-kde4 +usr/bin/kitenradselect-kde4 --- kdeedu-kde4-3.97.0.orig/debian/libkdeedu4-kde4.install +++ kdeedu-kde4-3.97.0/debian/libkdeedu4-kde4.install @@ -0,0 +1,6 @@ +usr/lib/kde4/lib/libkdeeduui.so.4 +usr/lib/kde4/lib/libkdeeduui.so.4.0.0 +usr/lib/kde4/lib/libkeduvocdocument.so.4 +usr/lib/kde4/lib/libkeduvocdocument.so.4.0.0 +usr/lib/kde4/lib/libscience.so.4 +usr/lib/kde4/lib/libscience.so.4.0.0 --- kdeedu-kde4-3.97.0.orig/debian/ktouch-kde4.install +++ kdeedu-kde4-3.97.0/debian/ktouch-kde4.install @@ -0,0 +1,53 @@ +usr/lib/kde4/bin/ktouch +usr/share/applications/kde4-ktouch.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/ktouch +usr/lib/kde4/share/doc/kde4/HTML/en/ktouch/man-ktouch.1.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/ktouch.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/ktouch.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/ktouch.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/ktouch.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/ktouch.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/ktouch.svgz +usr/lib/kde4/share/kde4/apps/ktouch +usr/lib/kde4/share/kde4/apps/ktouch/bulgarian.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/bulgarian_long.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/catalan.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/czech.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/danish2.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/danish.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/dvorak_ABCD.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/dvorak_es.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/dvorak-fr-1.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/dvorak-fr-2.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/dvorak.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/el.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/english.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/espanol2.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/espanol.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/finnish_for_kids.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/finnish.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/french2.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/french.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/german2.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/german3.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/german.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/german.neo.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/german.number.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/hungarian_expert.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/hungarian.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/italian.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/ktouchui.rc +usr/lib/kde4/share/kde4/apps/ktouch/latin.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/nederlands_junior.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/nederlands.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/norwegian.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/polish.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/russian2ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/russian.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/russian_long.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/slovenian.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/spanish.ktouch.xml +usr/lib/kde4/share/kde4/apps/ktouch/ukrainian.ktouch.xml +usr/lib/kde4/share/kde4/config.kcfg/ktouch.kcfg + +usr/bin/ktouch-kde4 --- kdeedu-kde4-3.97.0.orig/debian/not-installed +++ kdeedu-kde4-3.97.0/debian/not-installed @@ -0,0 +1,2 @@ +# We don't support static linking +./usr/lib/libhtmesh.a --- kdeedu-kde4-3.97.0.orig/debian/marble-kde4.install +++ kdeedu-kde4-3.97.0/debian/marble-kde4.install @@ -0,0 +1,3 @@ +usr/lib/kde4/bin/marble + +usr/bin/marble-kde4 --- kdeedu-kde4-3.97.0.orig/debian/compat +++ kdeedu-kde4-3.97.0/debian/compat @@ -0,0 +1 @@ +5 --- kdeedu-kde4-3.97.0.orig/debian/libmarble-dev-kde4.install +++ kdeedu-kde4-3.97.0/debian/libmarble-dev-kde4.install @@ -0,0 +1,3 @@ +usr/lib/kde4/include/marble/ +usr/lib/kde4/lib/kde4/libmarble_part.so +usr/lib/kde4/lib/libmarblewidget.so --- kdeedu-kde4-3.97.0.orig/debian/libmarble4-kde4.install +++ kdeedu-kde4-3.97.0/debian/libmarble4-kde4.install @@ -0,0 +1,2 @@ +usr/lib/kde4/lib/libmarblewidget.so.4 +usr/lib/kde4/lib/libmarblewidget.so.4.0.0 --- kdeedu-kde4-3.97.0.orig/debian/klettres-kde4.install +++ kdeedu-kde4-3.97.0/debian/klettres-kde4.install @@ -0,0 +1,3 @@ +usr/lib/kde4/bin/klettres + +usr/bin/klettres-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kturtle-kde4.install +++ kdeedu-kde4-3.97.0/debian/kturtle-kde4.install @@ -0,0 +1,14 @@ +usr/lib/kde4/bin/kturtle +usr/share/applications/kde4-kturtle.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kturtle +usr/lib/kde4/share/doc/kde4/HTML/en/kturtle/using-kturtle.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/kturtle.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kturtle.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kturtle.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kturtle.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kturtle.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kturtle.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kturtle.svgz +usr/lib/kde4/share/kde4/apps/kturtle/kturtleui.rc + +usr/bin/kturtle-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kwordquiz-kde4.install +++ kdeedu-kde4-3.97.0/debian/kwordquiz-kde4.install @@ -0,0 +1,19 @@ +usr/lib/kde4/etc/kde4/kwordquiz.knsrc +usr/lib/kde4/bin/kwordquiz +usr/share/applications/kde4-kwordquiz.desktop +usr/lib/kde4/share/kde4/apps/kwordquiz +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/128x128/apps/kwordquiz.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/128x128/mimetypes/kwordquiz_doc.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/16x16/apps/kwordquiz.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/16x16/mimetypes/kwordquiz_doc.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/22x22/apps/kwordquiz.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/22x22/mimetypes/kwordquiz_doc.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/32x32/apps/kwordquiz.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/32x32/mimetypes/kwordquiz_doc.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/48x48/apps/kwordquiz.png +usr/lib/kde4/share/kde4/apps/kwordquiz/icons/hicolor/48x48/mimetypes/kwordquiz_doc.png +usr/lib/kde4/share/kde4/apps/kwordquiz/kwordquiz.notifyrc +usr/lib/kde4/share/kde4/apps/kwordquiz/kwordquizui.rc +usr/lib/kde4/share/kde4/config.kcfg/kwordquiz.kcfg + +usr/bin/kwordquiz-kde4 --- kdeedu-kde4-3.97.0.orig/debian/parley-data-kde4.install +++ kdeedu-kde4-3.97.0/debian/parley-data-kde4.install @@ -0,0 +1,71 @@ +usr/lib/kde4/etc/kde4/parley.knsrc +usr/share/applications/kde4-parley.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/parley/art-query-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/comp-query-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/docprop1-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/docprop2-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/docprop6-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry1-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry2-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry3-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry4-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry5-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry6-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/entry7-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/get-new-stuff.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/index.cache.bz2 +usr/lib/kde4/share/doc/kde4/HTML/en/parley/index.docbook +usr/lib/kde4/share/doc/kde4/HTML/en/parley/lang1-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/mainview.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/mu-query-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options1-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options2-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options3-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options4-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options5-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options6-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/options7-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-add-lesson.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-configure-practice-advanced-page-grammar.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-configure-practice-advanced-page.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-configure-practice-block-expire.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-configure-practice.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-configure-practice-threshold-page.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-download-basic-file.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-download-basic-file-survival-training-selected.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-download-basic-file-survival-training-written-practice.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-download-new.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley_first_start.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-main-water.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-practice-multiple-choice.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-quick-start-first-start.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-search.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/parley-show-lessons-in-test.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/profiles.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/pron-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/query-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/quick-1.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/quick-2.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/quick-3.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/quick-4.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/quick-5.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/stat1-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/stat2-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/syn-query-dlg.png +usr/lib/kde4/share/doc/kde4/HTML/en/parley/verb-query-dlg.png +usr/lib/kde4/share/icons/oxygen/128x128/apps/parley.png +usr/lib/kde4/share/icons/oxygen/16x16/apps/parley.png +usr/lib/kde4/share/icons/oxygen/32x32/apps/parley.png +usr/lib/kde4/share/icons/oxygen/48x48/apps/parley.png +usr/lib/kde4/share/icons/oxygen/64x64/apps/parley.png +usr/lib/kde4/share/icons/oxygen/scalable/apps/parley.svgz +usr/lib/kde4/share/kde4/apps/parley/examples/sample-de.kvtml +usr/lib/kde4/share/kde4/apps/parley/examples/sample-en.kvtml +usr/lib/kde4/share/kde4/apps/parley/icons/hicolor/16x16/actions/run_multi.png +usr/lib/kde4/share/kde4/apps/parley/icons/hicolor/22x22/actions/run_multi.png +usr/lib/kde4/share/kde4/apps/parley/icons/hicolor/32x32/actions/run_multi.png +usr/lib/kde4/share/kde4/apps/parley/icons/oxygen/ +usr/lib/kde4/share/kde4/apps/parley/parleyui.rc +usr/lib/kde4/share/kde4/config.kcfg/documentsettings.kcfg +usr/lib/kde4/share/kde4/config.kcfg/languagesettings.kcfg +usr/lib/kde4/share/kde4/config.kcfg/parley.kcfg --- kdeedu-kde4-3.97.0.orig/debian/copyright +++ kdeedu-kde4-3.97.0/debian/copyright @@ -0,0 +1,253 @@ +This package was debianized by Ana Beatriz Guerrero Lopez on +Thu, 24 May 2007 04:15:11 +0200. + +It was downloaded from ftp://ftp.kde.org + +Upstream Authors: + + Blinken: Albert Astals Cid , + Danny Allen + Kalgebra: Aleix Pol Gonzalez + Kalzium: Carsten Niehaus , + Pino Toscano, Benoit Jacob, Thomas Nagy, + Jörg Buchwald, Marco Martin, Anne-Marie Mahfouf, + Daniel Haas, Brian Beck, Lee Olson, Inge Wallin + KAnagram: Joshua Keel , + Danny Allen , Jeremy Whiting + KBruch: Sebastian Stein , + Eva Brucherseifer and others + KGeography: Albert Astals Cid + KHangMan: Primoz Anzur , Anne-Marie Mahfouf + Kig: Kig developers + Kiten: Jason Katz-Brown , + Jim Breen , + Neil Stevens , + Joseph Kerian , + Eric Kjeldergaard + KLettres: Anne-Marie Mahfouf and many others + KmPlot: Klaus-Dieter Möller , + Matthias Messmer , + Fredrik Edemar , + David Saxton , + KPercentage: Matthias Messmer , + Carsten Niehaus , + Robert Gogolok + KStars: Jason Harris + Jasem Mutlaq , James Bowlin , + Pablo de Vicente , Thomas Kabelmann , + Heiko Evermann , Mark Hollomon , + Carsten Niehaus , Vincent Jagot , + Martin Piskernig + KTouch: Håvard Frøiland , + Andreas Nicolai + KTurtle: Cies Breijs , + Niels Slot + KWordQuiz: Peter Hedlund + libkdeedu: Scott Wheeler + marble: Torsten Rahn , + Inge Wallin + parley: Ewald Arnold , + Peter Hedlund , + Frederik Gladhorn + +Copyright: +Unless something else is mentioned, copyright is +(C) 1996-2007, The K Desktop Enviroment project http://www.kde.org + + +License: + +Unless something else is mentioned, the code files in this package are under +the GNU General Public License: + + | This program is free software; you can redistribute it and/or modify + | it under the terms of the GNU General Public License as published by + | the Free Software Foundation; version 2 dated June, 1991. + | + | This package is distributed in the hope that it will be useful, + | but WITHOUT ANY WARRANTY; without even the implied warranty of + | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + | GNU General Public License for more details. + | + | You should have received a copy of the GNU General Public License + | along with this program; if not, write to the Free Software Foundation, + | Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + The full text of the GNU General Public License version 2 is available on + Debian systems in /usr/share/common-licenses/GPL-2. + + + +The documentation docbook files in this package, placed under docs/, are under +the GNU Free Documentation License: + + | Permission is granted to copy, distribute and/or modify this + | document under the terms of the GNU Free Documentation License, + | Version 1.1 or any later version published by the Free Software + | Foundation; with no Invariant Sections, with no Front-Cover Texts, + | and with no Back-Cover Texts. + + The full text of the GNU Free Documentation License is available on + Debian systems in /usr/share/common-licenses/GFDL-1.2 + +As well, all the Manpages.dox included are under this license, unless specified +otherwise below. + + +Files under blinken/ + + Copyright (C) 2005-2007 by Albert Astals Cid + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under cmake/ + + cmake/modules/FindBoostPython.cmake ~ BSD ~ Copyright (c) 2006, Pino Toscano, + cmake/modules/FindCFitsio.cmake ~ BSD ~ Copyright (c) 2006, Jasem Mutlaq + cmake/modules/FindLibfacile.cmake ~ BSD ~ Copyright (c) 2006, Carsten Niehaus, + Copyright (c) 2006, Montel Laurent, + cmake/modules/FindOCaml.cmake ~ BSD ~ Copyright (c) 2006, Carsten Niehaus, + Copyright (c) 2006, Montel Laurent, + cmake/modules/FindOpenBabel2.cmake ~ BSD ~ Copyright (c) 2006, Carsten Niehaus, + cmake/modules/FindReadline.cmake ~ unspec ~ unspec + cmake/modules/FindSBIG.cmake ~ BSD ~ Copyright (c) 2006, Jasem Mutlaq + +On Debian systems, you can find the complete text of the BSD license at: +/usr/share/common-licenses/BSD + + +Files under kalgebra/ + + Copyright (C) 2007 by Aleix Pol + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + +Files under kalzium/ + + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + +Files under kanagram/ + + Copyright (C) 2005 by Joshua Keel + (C) 2007 by Jeremy Whiting + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + +Files under kbruch/ + + Copyright (c) 2001-2007 by Sebastian Stein + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kgeography/ + + Copyright (C) 2004-2007 by Albert Astals Cid + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under khangman/ + + Copyright (C) 2001-2007 Anne-Marie Mahfouf + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kig/ + + Copyright (C) 2002-2007 The Kig Developers + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kiten/ + + Copyright (C) 2001-2007 Jason Katz-Brown + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under klettres/ + + Copyright (C) 2001-2007 Anne-Marie Mahfouf + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kmplot/ + + Copyright (C) 2001-2007 Klaus-Dieter Möller + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kpercentage/ + + Copyright (C) 2001-2007 Matthias Meßmer + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kstars/ + + Copyright (C) 2001-2007 the KStars Team. + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under ktouch/ + + Copyright (C) 2000-2007 Haavard Froeiland + and Andreas Nicolai + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kturtle/ + + Copyright (C) 2003-2007 Cies Breijs + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under kwordquiz/ + + Copyright (C) 2003-2007 Peter Hedlund + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under libkdeedu/ + + Copyright (C) 2003-2007 Scott Wheeler + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + +Files under marble/ + + Copyright (C) 2005-2007 Torsten Rahn + Copyright (c) 2007 Inge Wallin " + + All files are under GNU Lesser General Public License as published by the Free Software + Foundation; version 2.1. + +On Debian systems, you can find the complete text of the LGPLG license version 2.1 at: +/usr/share/common-licenses/LGPL-2.1 + + +Files under parley/ + Copyright (C) 2000-2007 The Parley Developers + All files are under GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any later version. + + + + +The Debian packaging is (C) 2007, Debian Qt/KDE Maintainers + and is licensed under the GPL, +see `/usr/share/common-licenses/GPL'. + --- kdeedu-kde4-3.97.0.orig/debian/parley-kde4.install +++ kdeedu-kde4-3.97.0/debian/parley-kde4.install @@ -0,0 +1,3 @@ +usr/lib/kde4/bin/parley + +usr/bin/parley-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kmplot-kde4.install +++ kdeedu-kde4-3.97.0/debian/kmplot-kde4.install @@ -0,0 +1,24 @@ +usr/lib/kde4/bin/kmplot +usr/lib/kde4/lib/kde4/libkmplotpart.so +usr/share/applications/kde4-kmplot.desktop +usr/lib/kde4/share/dbus-1/interfaces/org.kde.kmplot.KmPlot.xml +usr/lib/kde4/share/dbus-1/interfaces/org.kde.kmplot.MainDlg.xml +usr/lib/kde4/share/dbus-1/interfaces/org.kde.kmplot.Parser.xml +usr/lib/kde4/share/dbus-1/interfaces/org.kde.kmplot.View.xml +usr/lib/kde4/share/doc/kde4/HTML/en/kmplot +usr/lib/kde4/share/doc/kde4/HTML/en/kmplot/man-kmplot.1.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/kmplot.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kmplot.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kmplot.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kmplot.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kmplot.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kmplot.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kmplot.svgz +usr/lib/kde4/share/kde4/apps/kmplot +usr/lib/kde4/share/kde4/apps/kmplot/kmplot_part.rc +usr/lib/kde4/share/kde4/apps/kmplot/kmplot_part_readonly.rc +usr/lib/kde4/share/kde4/apps/kmplot/kmplot_shell.rc +usr/lib/kde4/share/kde4/config.kcfg/kmplot.kcfg +usr/lib/kde4/share/kde4/services/kmplot_part.desktop + +usr/bin/kmplot-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kgeography-kde4.install +++ kdeedu-kde4-3.97.0/debian/kgeography-kde4.install @@ -0,0 +1,3 @@ +usr/lib/kde4/bin/kgeography + +usr/bin/kgeography-kde4 --- kdeedu-kde4-3.97.0.orig/debian/blinken-kde4.install +++ kdeedu-kde4-3.97.0/debian/blinken-kde4.install @@ -0,0 +1,22 @@ +usr/lib/kde4/bin/blinken +usr/share/applications/kde4-blinken.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/blinken +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken1.png +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken2.png +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken_accesskeys.png +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken_helpbutton.png +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken_highscoresbutton.png +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken_nickprompt.png +usr/lib/kde4/share/doc/kde4/HTML/en/blinken/blinken_quitbutton.png +usr/lib/kde4/share/icons/hicolor/128x128/apps/blinken.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/blinken.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/blinken.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/blinken.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/blinken.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/blinken.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/blinken.svgz +usr/lib/kde4/share/kde4/apps/blinken +usr/lib/kde4/share/kde4/apps/blinken/images/blinken.svg +usr/lib/kde4/share/kde4/config.kcfg/blinken.kcfg + +usr/bin/blinken-kde4 --- kdeedu-kde4-3.97.0.orig/debian/indi-kde4.install +++ kdeedu-kde4-3.97.0/debian/indi-kde4.install @@ -0,0 +1,11 @@ +usr/lib/kde4/bin/indi_celestron_gps +usr/lib/kde4/bin/indi_fli_pdf +usr/lib/kde4/bin/indi_fli_wheel +usr/lib/kde4/bin/indi_intelliscope +usr/lib/kde4/bin/indi_lx200basic +usr/lib/kde4/bin/indi_lx200generic +usr/lib/kde4/bin/indi_orion_atlas +usr/lib/kde4/bin/indi_robofocus +usr/lib/kde4/bin/indiserver +usr/lib/kde4/bin/indi_skycommander +usr/lib/kde4/bin/indi_trutech_wheel --- kdeedu-kde4-3.97.0.orig/debian/kalgebra-kde4.install +++ kdeedu-kde4-3.97.0/debian/kalgebra-kde4.install @@ -0,0 +1,13 @@ +usr/lib/kde4/bin/calgebra +usr/lib/kde4/bin/kalgebra +usr/share/applications/kde4-kalgebra.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kalgebra +usr/lib/kde4/share/doc/kde4/HTML/en/kalgebra/kalgebra-main-window.png +usr/lib/kde4/share/icons/hicolor/128x128/apps/kalgebra.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kalgebra.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kalgebra.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kalgebra.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kalgebra.png + +usr/bin/calgebra-kde4 +usr/bin/kalgebra-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kalzium-data-kde4.install +++ kdeedu-kde4-3.97.0/debian/kalzium-data-kde4.install @@ -0,0 +1,34 @@ +usr/share/applications/kde4-kalzium.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kalzium +usr/lib/kde4/share/doc/kde4/HTML/en/kalzium/man-kalzium.1.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/kalzium.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kalzium.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kalzium.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kalzium.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kalzium.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kalzium.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kalzium.svgz +usr/lib/kde4/share/kde4/apps/kalzium +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/16x16/actions/kalzium_molviewer.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/16x16/actions/kalzium_rs.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/16x16/actions/kalzium_tables.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/22x22/actions/kalzium_molviewer.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/22x22/actions/kalzium_rs.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/22x22/actions/kalzium_tables.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/32x32/actions/kalzium_molviewer.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/32x32/actions/kalzium_rs.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/32x32/actions/kalzium_tables.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/48x48/actions/kalzium_molviewer.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/48x48/actions/kalzium_rs.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/48x48/actions/kalzium_tables.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/64x64/actions/kalzium_molviewer.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/64x64/actions/kalzium_rs.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/64x64/actions/kalzium_tables.png +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/scalable/actions/kalzium_molviewer.svgz +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/scalable/actions/kalzium_rs.svgz +usr/lib/kde4/share/kde4/apps/kalzium/icons/hicolor/scalable/actions/kalzium_tables.svgz +usr/lib/kde4/share/kde4/apps/kalzium/kalziumui.rc +usr/lib/kde4/share/kde4/apps/libkdeedu/data/elements.xml +usr/lib/kde4/share/kde4/apps/libkdeedu/data/isotopes.xml +usr/lib/kde4/share/kde4/apps/libkdeedu/data/spectra.xml +usr/lib/kde4/share/kde4/config.kcfg/kalzium.kcfg --- kdeedu-kde4-3.97.0.orig/debian/kanagram-kde4.install +++ kdeedu-kde4-3.97.0/debian/kanagram-kde4.install @@ -0,0 +1,35 @@ +usr/lib/kde4/etc/kde4/kanagram.knsrc +usr/lib/kde4/bin/kanagram +usr/share/applications/kde4-kanagram.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kanagram +usr/lib/kde4/share/doc/kde4/HTML/en/kanagram/kanagram-hint.png +usr/lib/kde4/share/doc/kde4/HTML/en/kanagram/kanagram.png +usr/lib/kde4/share/icons/hicolor/128x128/apps/kanagram.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kanagram.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kanagram.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kanagram.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kanagram.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kanagram.svgz +usr/lib/kde4/share/kde4/apps/kanagram +usr/lib/kde4/share/kde4/apps/kanagram/images/kanagram.svg +usr/lib/kde4/share/kde4/apps/kvtml/en/animals.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/clothing.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/computers.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/currencies.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/easy.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/fruits.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/hard.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/inventions.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/medium.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/numbers.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/objects.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/people.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/professions.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/space.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/sports.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/transportation.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/vegetables.kvtml +usr/lib/kde4/share/kde4/apps/kvtml/en/worldcapitals.kvtml +usr/lib/kde4/share/kde4/config.kcfg/kanagram.kcfg + +usr/bin/kanagram-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kbruch-kde4.install +++ kdeedu-kde4-3.97.0/debian/kbruch-kde4.install @@ -0,0 +1,28 @@ +usr/lib/kde4/bin/kbruch +usr/share/applications/kde4-kbruch.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kbruch +usr/lib/kde4/share/doc/kde4/HTML/en/kbruch/man-kbruch.1.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/kbruch.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kbruch.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kbruch.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kbruch.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kbruch.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kbruch.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kbruch.svgz +usr/lib/kde4/share/kde4/apps/kbruch +usr/lib/kde4/share/kde4/apps/kbruch/kbruchui.rc +usr/lib/kde4/share/kde4/config.kcfg/kbruch.kcfg +usr/lib/kde4/share/icons/oxygen/32x32/actions/kbruch_exercise_factorisation.png +usr/lib/kde4/share/icons/oxygen/32x32/actions/kbruch_exercise_common.png +usr/lib/kde4/share/icons/oxygen/32x32/actions/kbruch_exercise_compare.png +usr/lib/kde4/share/icons/oxygen/32x32/actions/kbruch_exercise_conversion.png +usr/lib/kde4/share/icons/oxygen/64x64/actions/kbruch_exercise_factorisation.png +usr/lib/kde4/share/icons/oxygen/64x64/actions/kbruch_exercise_common.png +usr/lib/kde4/share/icons/oxygen/64x64/actions/kbruch_exercise_compare.png +usr/lib/kde4/share/icons/oxygen/64x64/actions/kbruch_exercise_conversion.png +usr/lib/kde4/share/icons/oxygen/scalable/actions/kbruch_exercise_conversion.svgz +usr/lib/kde4/share/icons/oxygen/scalable/actions/kbruch_exercise_common.svgz +usr/lib/kde4/share/icons/oxygen/scalable/actions/kbruch_exercise_factorisation.svgz +usr/lib/kde4/share/icons/oxygen/scalable/actions/kbruch_exercise_compare.svgz + +usr/bin/kbruch-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kgeography-data-kde4.install +++ kdeedu-kde4-3.97.0/debian/kgeography-data-kde4.install @@ -0,0 +1,12 @@ +usr/share/applications/kde4-kgeography.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kgeography +usr/lib/kde4/share/doc/kde4/HTML/en/kgeography/kgeography.png +usr/lib/kde4/share/icons/hicolor/128x128/apps/kgeography.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kgeography.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kgeography.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kgeography.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kgeography.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kgeography.png +usr/lib/kde4/share/kde4/apps/kgeography +usr/lib/kde4/share/kde4/apps/kgeography/kgeographyui.rc +usr/lib/kde4/share/kde4/config.kcfg/kgeography.kcfg --- kdeedu-kde4-3.97.0.orig/debian/khangman-kde4.install +++ kdeedu-kde4-3.97.0/debian/khangman-kde4.install @@ -0,0 +1,21 @@ +usr/lib/kde4/etc/kde4/khangman.knsrc +usr/lib/kde4/bin/khangman +usr/share/applications/kde4-khangman.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/khangman +usr/lib/kde4/share/doc/kde4/HTML/en/khangman/khangman-desert.png +usr/lib/kde4/share/doc/kde4/HTML/en/khangman/khangman-main.png +usr/lib/kde4/share/doc/kde4/HTML/en/khangman/man-khangman.6.docbook +usr/lib/kde4/share/icons/hicolor/128x128/apps/khangman.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/khangman.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/khangman.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/khangman.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/khangman.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/khangman.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/khangman.svgz +usr/lib/kde4/share/kde4/apps/khangman +usr/lib/kde4/share/kde4/apps/khangman/khangmanui.rc +usr/lib/kde4/share/kde4/apps/khangman/pics/desert/khangman_desert.svg +usr/lib/kde4/share/kde4/apps/khangman/pics/sea/khangman_sea.svg +usr/lib/kde4/share/kde4/config.kcfg/khangman.kcfg + +usr/bin/khangman-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kpercentage-kde4.install +++ kdeedu-kde4-3.97.0/debian/kpercentage-kde4.install @@ -0,0 +1,12 @@ +usr/lib/kde4/bin/kpercentage +usr/share/applications/kde4-kpercentage.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kpercentage +usr/lib/kde4/share/icons/hicolor/128x128/apps/kpercentage.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kpercentage.png +usr/lib/kde4/share/icons/hicolor/22x22/apps/kpercentage.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kpercentage.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kpercentage.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kpercentage.svgz +usr/lib/kde4/share/kde4/apps/kpercentage + +usr/bin/kpercentage-kde4 --- kdeedu-kde4-3.97.0.orig/debian/kstars-data-kde4.install +++ kdeedu-kde4-3.97.0/debian/kstars-data-kde4.install @@ -0,0 +1,32 @@ +usr/lib/kde4/etc/kde4/kstars.knsrc +usr/share/applications/kde4-kstars.desktop +usr/lib/kde4/share/doc/kde4/HTML/en/kstars +usr/lib/kde4/share/icons/hicolor/128x128/apps/kstars.png +usr/lib/kde4/share/icons/hicolor/16x16/apps/kstars.png +usr/lib/kde4/share/icons/hicolor/32x32/apps/kstars.png +usr/lib/kde4/share/icons/hicolor/48x48/apps/kstars.png +usr/lib/kde4/share/icons/hicolor/64x64/apps/kstars.png +usr/lib/kde4/share/icons/hicolor/scalable/apps/kstars.svgz +usr/lib/kde4/share/kde4/apps/kstars +usr/lib/kde4/share/kde4/apps/kstars/icons/crystalsvg/128x128/actions/kstars_geo.png +usr/lib/kde4/share/kde4/apps/kstars/icons/crystalsvg/16x16/actions/kstars_geo.png +usr/lib/kde4/share/kde4/apps/kstars/icons/crystalsvg/32x32/actions/kstars_geo.png +usr/lib/kde4/share/kde4/apps/kstars/icons/crystalsvg/48x48/actions/kstars_geo.png +usr/lib/kde4/share/kde4/apps/kstars/icons/crystalsvg/64x64/actions/kstars_geo.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_cbound.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_clines.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_cnames.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_deepsky.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_grid.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_horizon.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_mw.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_planets.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/22x22/actions/kstars_stars.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/64x64/actions/kstars_advanced.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/64x64/actions/kstars_catalog.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/64x64/actions/kstars_colors.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/64x64/actions/kstars_guides.png +usr/lib/kde4/share/kde4/apps/kstars/icons/hicolor/64x64/actions/kstars_solarsystem.png +usr/lib/kde4/share/kde4/apps/kstars/kstars.png +usr/lib/kde4/share/kde4/apps/kstars/kstarsui.rc +usr/lib/kde4/share/kde4/config.kcfg/kstars.kcfg --- kdeedu-kde4-3.97.0.orig/debian/libkiten-dev-kde4.install +++ kdeedu-kde4-3.97.0/debian/libkiten-dev-kde4.install @@ -0,0 +1,2 @@ +usr/lib/kde4/include/libkiten/ +usr/lib/kde4/lib/libkiten.so