aboutsummaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2007-11-20 21:47:52 +0000
committerReuben Thomas <rrt@sc3d.org>2007-11-20 21:47:52 +0000
commit6cdc0e296f250fb86af27ebb533d38442df39902 (patch)
treed3527c8343663bffc38e1dcf7f8f6d6859af2966 /debian
parent9b3b244c2e3efa825e4e18eb535b3388e5c12d92 (diff)
downloadplptools-6cdc0e296f250fb86af27ebb533d38442df39902.tar.gz
plptools-6cdc0e296f250fb86af27ebb533d38442df39902.tar.bz2
plptools-6cdc0e296f250fb86af27ebb533d38442df39902.zip
Remove references to KDE.
Diffstat (limited to 'debian')
-rw-r--r--debian/control28
-rw-r--r--debian/plptools-kde.files11
-rw-r--r--debian/plptools-kde.postinst45
-rw-r--r--debian/plptools-kde.prerm36
-rwxr-xr-xdebian/rules8
5 files changed, 2 insertions, 126 deletions
diff --git a/debian/control b/debian/control
index db567d7..8623f27 100644
--- a/debian/control
+++ b/debian/control
@@ -1,5 +1,5 @@
Source: plptools
-Build-Depends: debhelper (>= 4.0.2), automake (>= 1:1.4-p4-1.1) | automake1.6, autoconf, libtool, gettext, libncurses5-dev, libreadline4-dev, libnewt-dev, kdoc, libqt-dev|libqt3-dev, kdebase-dev
+Build-Depends: debhelper (>= 4.0.2), automake (>= 1:1.4-p4-1.1) | automake1.6, autoconf, libtool, gettext, libncurses5-dev, libreadline4-dev, libnewt-dev
Section: otherosfs
Priority: optional
Maintainer: John Lines <john@paladin.demon.co.uk>
@@ -25,29 +25,3 @@ Description: plptools (development files)
This package provides a static library, headers and API documentation
for plptools development. You need these files if you want to build
programs which use libplp.
-
-Package: plptools-kde
-Architecture: any
-Depends: ${shlibs:Depends}
-Suggests: konqueror
-Enhances: kdebase
-Description: KDE integration of plptools
- This package provides integrated access to a Psion PDA into KDE
- Using a kioslave, any KDE compliant application can access files on
- a Psion using a new URI protocol type "psion:/". Furthermore, a plug-in
- for KDE's advanced file manager konqueror adds Psion-related entries
- to it's property dialog.
-
-Package: kpsion
-Architecture: any
-Depends: ${shlibs:Depends}
-Description: Backup and Restore of a Psion PDA
- This package provides a KDE front-end for backup/restore of a Psion PDA
-
-Package: klipsi
-Architecture: any
-Depends: ${shlibs:Depends}
-Description: Remote Cut&Paste for Psion PDA
- This package provides a KDE sys-tray application which allows to share
- KDE's clipboard remotely with a Psion PDA.
-
diff --git a/debian/plptools-kde.files b/debian/plptools-kde.files
deleted file mode 100644
index 39bf497..0000000
--- a/debian/plptools-kde.files
+++ /dev/null
@@ -1,11 +0,0 @@
-usr/lib/kde*/kio_plp.so*
-usr/lib/kde*/kio_plp.la
-usr/lib/kde*/libplpprops.so*
-usr/lib/kde*/libplpprops.la
-usr/share/services/*
-usr/share/icons/*/*/mimetypes/*
-usr/share/icons/*/*/devices/*
-usr/share/icons/*/*/apps/psion*
-usr/share/locale/*/LC_MESSAGES/libplpprops.mo
-usr/share/mimelnk/*/*
-usr/share/doc/kde/HTML/*/kioslave/*
diff --git a/debian/plptools-kde.postinst b/debian/plptools-kde.postinst
deleted file mode 100644
index cefdb49..0000000
--- a/debian/plptools-kde.postinst
+++ /dev/null
@@ -1,45 +0,0 @@
-#! /bin/sh
-
-set -e
-
-#
-# Workaround for a mis-feature (bug?) in kdelibs:
-# If mimetype is inode/x-directory, then always the folder-icon is displayed.
-# If mimetype is something else, open dialog pops up. So, for displaying
-# Psion's drive icons _AND_ opening drives without annoying dialog,
-# modify konquerorrc to hide dialog when opening a Psion-drive
-#
-case "$1" in
- configure)
- KDEBUGRC=`dpkg -S kdebugrc | awk '{print $2}'`
- KONQRC=`dirname $KDEBUGRC`/konquerorrc
- if test -f $KONQRC && grep -q '\[Notification Messages\]' $KONQRC ; then
- cp $KONQRC $KONQRC.$$
- cat $KONQRC.$$ | grep -v "askSaveinode/x-psion-drive=No" | sed \
- -e '/\[Notification Messages\]/a\' \
- -e 'askSaveinode/x-psion-drive=No' > $KONQRC && \
- rm -f $KONQRC.$$
- else
- cat>>$KONQRC<<-EOF
-
- [Notification Messages]
- askSaveinode/x-psion-drive=No
- EOF
- fi
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/plptools-kde.prerm b/debian/plptools-kde.prerm
deleted file mode 100644
index 40a49f4..0000000
--- a/debian/plptools-kde.prerm
+++ /dev/null
@@ -1,36 +0,0 @@
-#! /bin/sh
-# prerm script for plptools-kde
-#
-# see: dh_installdeb(1)
-
-set -e
-
-#
-# Workaround for a mis-feature (bug?) in kdelibs:
-# If mimetype is inode/x-directory, then always the folder-icon is displayed.
-# If mimetype is something else, open dialog pops up. So, for displaying
-# Psion's drive icons _AND_ opening drives without annoying dialog,
-# modify konquerorrc to hide dialog when opening a Psion-drive
-#
-
-case "$1" in
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- KDEBUGRC=`dpkg -S kdebugrc | awk '{print $2}'`
- KONQRC=`dirname $KDEBUGRC`/konquerorrc
- if test -f $KONQRC ; then
- cp $KONQRC $KONQRC.$$
- grep -v 'askSaveinode/x-psion-drive=' $KONQRC.$$ > $KONQRC && rm -f $KONQRC.$$
- fi
- ;;
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/rules b/debian/rules
index b210a6c..f32273e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -20,7 +20,6 @@ endif
tmp = $(shell pwd)/debian/tmp
ltmp = $(tmp)/usr/share/lintian/overrides
-hdir = $(shell kde-config --expandvars -install html)
%.1: %.1.in
MANDATE=`grep CHECKIN $< | awk '{print $$4}'` ; \
@@ -31,8 +30,7 @@ configure-stamp:
dh_testdir
./configure $(confflags) --prefix=/usr \
--with-mountdir=/var/lib/plptools/mnt \
- --mandir=/usr/share/man --with-initdir=none --enable-kde \
- --disable-rpath
+ --mandir=/usr/share/man --with-initdir=none --disable-rpath
touch configure-stamp
build: configure-stamp build-stamp
@@ -58,7 +56,6 @@ install: build debian/kpsion.1 debian/klipsi.1
dh_clean -k
dh_installdirs
# install into debian/tmp.
- $(MAKE) DESTDIR=$(tmp) kde_htmldir=$(hdir) install
install -d $(tmp)/etc
install -d $(ltmp)
install -m 644 debian/plptools.conf $(tmp)/etc
@@ -75,9 +72,6 @@ install: build debian/kpsion.1 debian/klipsi.1
# Split into sub-packages
dh_movefiles -pplptools
dh_movefiles -pplptools-dev
- dh_movefiles -pplptools-kde
- dh_movefiles -pkpsion
- dh_movefiles -pklipsi
# Build architecture-independent files here.
binary-indep: build install