--- kde-guidance-0.6.7svn20060829.orig/powermanager/tooltip.py +++ kde-guidance-0.6.7svn20060829/powermanager/tooltip.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'tooltip.ui' +# +# Created: Tue Aug 29 14:38:48 2006 +# by: The PyQt User Interface Compiler (pyuic) 3.16 +# +# WARNING! All changes made in this file will be lost! + + +import sys +from qt import * +from kdecore import KCmdLineArgs, KApplication +from kdeui import * + + +class ToolTip(QWidget): + def __init__(self,parent = None,name = None,fl = 0): + QWidget.__init__(self,parent,name,fl) + + if not name: + self.setName("ToolTip") + + self.setSizePolicy(QSizePolicy(QSizePolicy.MinimumExpanding,QSizePolicy.MinimumExpanding,0,0,self.sizePolicy().hasHeightForWidth())) + + ToolTipLayout = QVBoxLayout(self,0,6,"ToolTipLayout") + + layout3 = QHBoxLayout(None,0,6,"layout3") + + self.pixmapLabel1 = QLabel(self,"pixmapLabel1") + self.pixmapLabel1.setSizePolicy(QSizePolicy(QSizePolicy.Fixed,QSizePolicy.Fixed,0,0,self.pixmapLabel1.sizePolicy().hasHeightForWidth())) + self.pixmapLabel1.setPixmap(QPixmap("/usr/share/apps/guidance/pics/powermanager/energy.png")) + self.pixmapLabel1.setScaledContents(1) + layout3.addWidget(self.pixmapLabel1) + + self.BatteryLabel = QLabel(self,"BatteryLabel") + self.BatteryLabel.setSizePolicy(QSizePolicy(QSizePolicy.MinimumExpanding,QSizePolicy.Preferred,0,0,self.BatteryLabel.sizePolicy().hasHeightForWidth())) + self.BatteryLabel.setMinimumSize(QSize(50,0)) + layout3.addWidget(self.BatteryLabel) + ToolTipLayout.addLayout(layout3) + + layout4 = QHBoxLayout(None,0,6,"layout4") + + self.BatteryProgress = QProgressBar(self,"BatteryProgress") + self.BatteryProgress.setSizePolicy(QSizePolicy(QSizePolicy.Expanding,QSizePolicy.Fixed,1,0,self.BatteryProgress.sizePolicy().hasHeightForWidth())) + layout4.addWidget(self.BatteryProgress) + + self.BatteryTime = QLabel(self,"BatteryTime") + self.BatteryTime.setSizePolicy(QSizePolicy(QSizePolicy.Minimum,QSizePolicy.Preferred,0,0,self.BatteryTime.sizePolicy().hasHeightForWidth())) + layout4.addWidget(self.BatteryTime) + ToolTipLayout.addLayout(layout4) + + self.Line = QFrame(self,"Line") + self.Line.setFrameShape(QFrame.HLine) + self.Line.setFrameShadow(QFrame.Sunken) + self.Line.setFrameShape(QFrame.HLine) + ToolTipLayout.addWidget(self.Line) + + self.languageChange() + + self.resize(QSize(170,65).expandedTo(self.minimumSizeHint())) + self.clearWState(Qt.WState_Polished) + + + def languageChange(self): + self.setCaption(self.__tr("Form1")) + self.BatteryLabel.setText(self.__tr("Battery:")) + self.BatteryTime.setText(self.__tr("10 Minutes")) + + + def ToolTip_destroyed(self,a0): + print "ToolTip.ToolTip_destroyed(QObject*): Not implemented yet" + + def __tr(self,s,c = None): + return qApp.translate("ToolTip",s,c) + +if __name__ == "__main__": + appname = "" + description = "" + version = "" + + KCmdLineArgs.init (sys.argv, appname, description, version) + a = KApplication () + + QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()")) + w = ToolTip() + a.setMainWidget(w) + w.show() + a.exec_loop() --- kde-guidance-0.6.7svn20060829.orig/powermanager/guidance_power_manager_ui.py +++ kde-guidance-0.6.7svn20060829/powermanager/guidance_power_manager_ui.py @@ -0,0 +1,190 @@ +# -*- coding: utf-8 -*- + +# Form implementation generated from reading ui file 'guidance_power_manager_ui.ui' +# +# Created: Tue Aug 29 14:38:48 2006 +# by: The PyQt User Interface Compiler (pyuic) 3.16 +# +# WARNING! All changes made in this file will be lost! + + +import sys +from qt import * +from kdecore import KCmdLineArgs, KApplication +from kdeui import * + + + +class GuidancePowerManagerUI(QDialog): + def __init__(self,parent = None,name = None,modal = 0,fl = 0): + QDialog.__init__(self,parent,name,modal,fl) + + if not name: + self.setName("GuidancePowerManagerUI") + + + GuidancePowerManagerUILayout = QVBoxLayout(self,11,6,"GuidancePowerManagerUILayout") + + self.mainsPoweredBox = QGroupBox(self,"mainsPoweredBox") + self.mainsPoweredBox.setSizePolicy(QSizePolicy(QSizePolicy.Preferred,QSizePolicy.Fixed,0,0,self.mainsPoweredBox.sizePolicy().hasHeightForWidth())) + self.mainsPoweredBox.setColumnLayout(0,Qt.Vertical) + self.mainsPoweredBox.layout().setSpacing(6) + self.mainsPoweredBox.layout().setMargin(11) + mainsPoweredBoxLayout = QGridLayout(self.mainsPoweredBox.layout()) + mainsPoweredBoxLayout.setAlignment(Qt.AlignTop) + + layout17 = QHBoxLayout(None,0,6,"layout17") + + self.textLabel1 = QLabel(self.mainsPoweredBox,"textLabel1") + layout17.addWidget(self.textLabel1) + + self.poweredBrightnessSlider = QSlider(self.mainsPoweredBox,"poweredBrightnessSlider") + self.poweredBrightnessSlider.setMaxValue(7) + self.poweredBrightnessSlider.setOrientation(QSlider.Horizontal) + self.poweredBrightnessSlider.setTickmarks(QSlider.Below) + layout17.addWidget(self.poweredBrightnessSlider) + + mainsPoweredBoxLayout.addLayout(layout17,0,0) + GuidancePowerManagerUILayout.addWidget(self.mainsPoweredBox) + + self.batteryBox = QGroupBox(self,"batteryBox") + self.batteryBox.setSizePolicy(QSizePolicy(QSizePolicy.Preferred,QSizePolicy.Fixed,0,0,self.batteryBox.sizePolicy().hasHeightForWidth())) + self.batteryBox.setColumnLayout(0,Qt.Vertical) + self.batteryBox.layout().setSpacing(6) + self.batteryBox.layout().setMargin(11) + batteryBoxLayout = QGridLayout(self.batteryBox.layout()) + batteryBoxLayout.setAlignment(Qt.AlignTop) + + layout16 = QHBoxLayout(None,0,6,"layout16") + + self.brightnessLabel = QLabel(self.batteryBox,"brightnessLabel") + layout16.addWidget(self.brightnessLabel) + + self.batteryBrightnessSlider = QSlider(self.batteryBox,"batteryBrightnessSlider") + self.batteryBrightnessSlider.setMaxValue(7) + self.batteryBrightnessSlider.setOrientation(QSlider.Horizontal) + self.batteryBrightnessSlider.setTickmarks(QSlider.Below) + layout16.addWidget(self.batteryBrightnessSlider) + + batteryBoxLayout.addMultiCellLayout(layout16,0,0,0,2) + + self.batteryCriticalRadios = QButtonGroup(self.batteryBox,"batteryCriticalRadios") + self.batteryCriticalRadios.setFrameShape(QButtonGroup.NoFrame) + self.batteryCriticalRadios.setColumnLayout(0,Qt.Vertical) + self.batteryCriticalRadios.layout().setSpacing(6) + self.batteryCriticalRadios.layout().setMargin(0) + batteryCriticalRadiosLayout = QGridLayout(self.batteryCriticalRadios.layout()) + batteryCriticalRadiosLayout.setAlignment(Qt.AlignTop) + + thingy = QHBoxLayout(None,0,6,"thingy") + + self.batteryCriticalNone = QRadioButton(self.batteryCriticalRadios,"batteryCriticalNone") + thingy.addWidget(self.batteryCriticalNone) + + self.batteryCriticalSuspend = QRadioButton(self.batteryCriticalRadios,"batteryCriticalSuspend") + thingy.addWidget(self.batteryCriticalSuspend) + + self.batteryCriticalHibernate = QRadioButton(self.batteryCriticalRadios,"batteryCriticalHibernate") + thingy.addWidget(self.batteryCriticalHibernate) + + self.batteryCriticalShutdown = QRadioButton(self.batteryCriticalRadios,"batteryCriticalShutdown") + thingy.addWidget(self.batteryCriticalShutdown) + + batteryCriticalRadiosLayout.addLayout(thingy,0,0) + + batteryBoxLayout.addWidget(self.batteryCriticalRadios,2,0) + + self.textLabel3 = QLabel(self.batteryBox,"textLabel3") + + batteryBoxLayout.addWidget(self.textLabel3,1,0) + spacer12 = QSpacerItem(106,20,QSizePolicy.Expanding,QSizePolicy.Minimum) + batteryBoxLayout.addMultiCell(spacer12,2,2,1,2) + GuidancePowerManagerUILayout.addWidget(self.batteryBox) + + self.LaptopLidRadios = QButtonGroup(self,"LaptopLidRadios") + self.LaptopLidRadios.setSizePolicy(QSizePolicy(QSizePolicy.Preferred,QSizePolicy.Fixed,0,0,self.LaptopLidRadios.sizePolicy().hasHeightForWidth())) + self.LaptopLidRadios.setFrameShape(QButtonGroup.NoFrame) + self.LaptopLidRadios.setColumnLayout(0,Qt.Vertical) + self.LaptopLidRadios.layout().setSpacing(5) + self.LaptopLidRadios.layout().setMargin(11) + LaptopLidRadiosLayout = QHBoxLayout(self.LaptopLidRadios.layout()) + LaptopLidRadiosLayout.setAlignment(Qt.AlignTop) + + self.laptopClosedNone = QRadioButton(self.LaptopLidRadios,"laptopClosedNone") + LaptopLidRadiosLayout.addWidget(self.laptopClosedNone) + + self.laptopClosedBlank = QRadioButton(self.LaptopLidRadios,"laptopClosedBlank") + LaptopLidRadiosLayout.addWidget(self.laptopClosedBlank) + + self.laptopClosedSuspend = QRadioButton(self.LaptopLidRadios,"laptopClosedSuspend") + LaptopLidRadiosLayout.addWidget(self.laptopClosedSuspend) + + self.laptopClosedHibernate = QRadioButton(self.LaptopLidRadios,"laptopClosedHibernate") + LaptopLidRadiosLayout.addWidget(self.laptopClosedHibernate) + + self.laptopClosedShutdown = QRadioButton(self.LaptopLidRadios,"laptopClosedShutdown") + LaptopLidRadiosLayout.addWidget(self.laptopClosedShutdown) + spacer12_2 = QSpacerItem(213,20,QSizePolicy.Expanding,QSizePolicy.Minimum) + LaptopLidRadiosLayout.addItem(spacer12_2) + GuidancePowerManagerUILayout.addWidget(self.LaptopLidRadios) + spacer13 = QSpacerItem(87,150,QSizePolicy.Minimum,QSizePolicy.Preferred) + GuidancePowerManagerUILayout.addItem(spacer13) + + layout9 = QHBoxLayout(None,0,6,"layout9") + spacer10 = QSpacerItem(361,20,QSizePolicy.Expanding,QSizePolicy.Minimum) + layout9.addItem(spacer10) + + self.closeButton = QPushButton(self,"closeButton") + layout9.addWidget(self.closeButton) + GuidancePowerManagerUILayout.addLayout(layout9) + + self.languageChange() + + self.resize(QSize(479,295).expandedTo(self.minimumSizeHint())) + self.clearWState(Qt.WState_Polished) + + self.setTabOrder(self.poweredBrightnessSlider,self.batteryBrightnessSlider) + self.setTabOrder(self.batteryBrightnessSlider,self.batteryCriticalNone) + self.setTabOrder(self.batteryCriticalNone,self.batteryCriticalSuspend) + self.setTabOrder(self.batteryCriticalSuspend,self.batteryCriticalHibernate) + self.setTabOrder(self.batteryCriticalHibernate,self.batteryCriticalShutdown) + self.setTabOrder(self.batteryCriticalShutdown,self.closeButton) + + + def languageChange(self): + self.setCaption(self.__tr("Guidance Power Manager")) + self.mainsPoweredBox.setTitle(self.__tr("Mains Powered")) + self.textLabel1.setText(self.__tr("Brightness")) + self.batteryBox.setTitle(self.__tr("Battery Powered")) + self.brightnessLabel.setText(self.__tr("Brightness")) + self.batteryCriticalRadios.setTitle(QString.null) + self.batteryCriticalNone.setText(self.__tr("None")) + self.batteryCriticalSuspend.setText(self.__tr("Suspend")) + self.batteryCriticalHibernate.setText(self.__tr("Hibernate")) + self.batteryCriticalShutdown.setText(self.__tr("Shutdown")) + self.textLabel3.setText(self.__tr("When Battery Critical")) + self.LaptopLidRadios.setTitle(self.__tr("When Laptop Lid Closed")) + self.laptopClosedNone.setText(self.__tr("Do nothing")) + self.laptopClosedBlank.setText(self.__tr("Lock screen")) + self.laptopClosedSuspend.setText(self.__tr("Suspend")) + self.laptopClosedHibernate.setText(self.__tr("Hibernate")) + self.laptopClosedShutdown.setText(self.__tr("Shutdown")) + self.closeButton.setText(self.__tr("Close")) + + + def __tr(self,s,c = None): + return qApp.translate("GuidancePowerManagerUI",s,c) + +if __name__ == "__main__": + appname = "" + description = "" + version = "" + + KCmdLineArgs.init (sys.argv, appname, description, version) + a = KApplication () + + QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()")) + w = GuidancePowerManagerUI() + a.setMainWidget(w) + w.show() + a.exec_loop() --- kde-guidance-0.6.7svn20060829.orig/wineconfig/kcm_wineconfig.cpp +++ kde-guidance-0.6.7svn20060829/wineconfig/kcm_wineconfig.cpp @@ -18,7 +18,7 @@ #include #include -#define MODULE_DIR "/usr/share/apps/guidance" +#define MODULE_DIR "/media/hda4/jr/src/guidance/new/kde-guidance-0.6.7svn20060829/debian/kde-guidance/usr/share/apps/guidance" #define MODULE_NAME "wineconfig" #define FACTORY "create_wineconfig" #define CPP_FACTORY create_wineconfig --- kde-guidance-0.6.7svn20060829.orig/debian/rules +++ kde-guidance-0.6.7svn20060829/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM = pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +DEB_INSTALL_MANPAGES_kde-guidance := debian/displayconfig.1 debian/mountconfig.1 debian/serviceconfig.1 debian/userconfig.1 +PYSUPPORT_PATH = $(DEB_DESTDIR)/usr/share/python-support/kde-guidance + +install/kde-guidance:: + # install icons to right place + install -D -p -m0644 $(DEB_DESTDIR)/usr/share/apps/guidance/pics/hi32-app-daemons.png \ + $(DEB_DESTDIR)/usr/share/icons/crystalsvg/32x32/apps/daemons.png + install -D -p -m0644 $(DEB_DESTDIR)/usr/share/apps/guidance/pics/kcmpartitions.png \ + $(DEB_DESTDIR)/usr/share/icons/crystalsvg/32x32/apps/disksfilesystems.png + install -D -p -m0644 $(DEB_DESTDIR)/usr/share/apps/guidance/pics/hi32-user.png \ + $(DEB_DESTDIR)/usr/share/icons/crystalsvg/32x32/apps/userconfig.png + install -D -p -m0644 $(DEB_DESTDIR)/usr/share/apps/guidance/pics/hi32-display.png \ + $(DEB_DESTDIR)/usr/share/icons/crystalsvg/32x32/apps/displayconfig.png + + # install lintian overrides + install -D -p -m0644 debian/kde-guidance.lintian-overrides \ + $(DEB_DESTDIR)/usr/share/lintian/overrides/kde-guidance + + # install displayconfig-hwprobe.py script + install -D -p -m0755 displayconfig/displayconfig-hwprobe.py \ + $(PYSUPPORT_PATH)/displayconfig-hwprobe.py + + # move python modules in PYSUPPORT_PATH + mv $(DEB_DESTDIR)/usr/lib/python2.4/site-packages/*.py $(PYSUPPORT_PATH) + mv $(DEB_DESTDIR)/usr/share/apps/guidance/*.py $(PYSUPPORT_PATH) + + # fix script-not-executable + chmod 0755 $(PYSUPPORT_PATH)/xf86misc.py + chmod 0755 $(PYSUPPORT_PATH)/displayconfigabstraction.py + chmod 0755 $(PYSUPPORT_PATH)/execwithcapture.py + chmod 0755 $(PYSUPPORT_PATH)/fuser.py + chmod 0755 $(PYSUPPORT_PATH)/ktimerdialog.py + chmod 0755 $(PYSUPPORT_PATH)/sizeview.py + + # fix binary-or-shlib-defines-rpath + chrpath -d $(DEB_DESTDIR)/usr/lib/kde3/kcm_*.so.* + + # fix the link properly + (cd debian/kde-guidance/usr/bin; ln -sf ../share/python-support/kde-guidance/displayconfig.py displayconfig) + (cd debian/kde-guidance/usr/bin; ln -sf ../share/python-support/kde-guidance/displayconfig-restore.py displayconfig-restore) + (cd debian/kde-guidance/usr/bin; ln -sf ../share/python-support/kde-guidance/mountconfig.py mountconfig) + (cd debian/kde-guidance/usr/bin; ln -sf ../share/python-support/kde-guidance/serviceconfig.py serviceconfig) + (cd debian/kde-guidance/usr/bin; ln -sf ../share/python-support/kde-guidance/userconfig.py userconfig) + + (cd powermanager; kdepyuic guidance_power_manager_ui.ui) + (cd powermanager; kdepyuic tooltip.ui) + cp powermanager/*py $(PYSUPPORT_PATH) + (cd debian/kde-guidance/usr/bin; ln -sf ../share/python-support/kde-guidance/guidance-power-manager.py guidance-power-manager) + chmod 0755 $(PYSUPPORT_PATH)/guidance-power-manager.py + + mkdir -p $(DEB_DESTDIR)/usr/share/apps/guidance/pics/powermanager + cp powermanager/icons/*png $(DEB_DESTDIR)/usr/share/apps/guidance/pics/powermanager/ + mkdir -p $(DEB_DESTDIR)/usr/share/autostart/ + cp powermanager/guidance-power-manager.desktop $(DEB_DESTDIR)/usr/share/autostart/ + +clean:: + rm -rf build + + rm -rf doc/en/*html doc/en/*bz2 + rm -f serviceconfig/kcm_serviceconfig.cpp + rm -f mountconfig/kcm_mountconfig.cpp + rm -f displayconfig/kcm_displayconfig.cpp + rm -f userconfig/kcm_userconfig.cpp + rm -f install_log.txt + rm -f po/*.gmo + --- kde-guidance-0.6.7svn20060829.orig/debian/serviceconfig.1 +++ kde-guidance-0.6.7svn20060829/debian/serviceconfig.1 @@ -0,0 +1,69 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.TH "SERVICECONFIG" "1" "aout 2, 2005" "" "" +.SH "NAME" +serviceconfig \- Service/daemon administration tool +.SH "SYNOPSIS" +.B serviceconfig +.RI [ options ] +.br +.SH "DESCRIPTION" +This manual page documents briefly the +.B serviceconfig +commands. This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBserviceconfig\fP is a service/daemon administration tool. +.SH "OPTIONS" +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`\-'). +A summary of options is included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-\-help\-qt +Show QT specific help (common for all QT apps). +.TP +.B \-\-help\-kde +Show KDE specific help (common for all KDE apps). +.TP +.B \-\-help\-all +Show the complete help. +.TP +.B \-\-author +Show program author(s). +.TP +.B \-v, \-\-version +Show version of program. +.TP +.B \-\-license +Show program license. +.SH "SEE ALSO" +.BR displayconfig (1), +.BR displayconfig-restore (1), +.BR mountconfig (1), +.BR userconfig (1). +.br +.SH "AUTHOR" +serviceconfig was written by . +.PP +This manual page was written by Fathi Boudra , +for the Debian project (but may be used by others). --- kde-guidance-0.6.7svn20060829.orig/debian/patches/12_force_python2.4_script.diff +++ kde-guidance-0.6.7svn20060829/debian/patches/12_force_python2.4_script.diff @@ -0,0 +1,144 @@ +diff -Nur kde-guidance-0.6.7/displayconfig/displayconfig.py kde-guidance-0.6.7.new/displayconfig/displayconfig.py +--- kde-guidance-0.6.7/displayconfig/displayconfig.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/displayconfig.py 2006-07-03 14:01:46.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + # -*- coding: UTF-8 -*- + ########################################################################### + # displayconfig.py - description # +diff -Nur kde-guidance-0.6.7/displayconfig/displayconfig-restore.py kde-guidance-0.6.7.new/displayconfig/displayconfig-restore.py +--- kde-guidance-0.6.7/displayconfig/displayconfig-restore.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/displayconfig-restore.py 2006-07-03 14:01:54.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # displayconfig-restore.py - description # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/displayconfig/servertestdialog.py kde-guidance-0.6.7.new/displayconfig/servertestdialog.py +--- kde-guidance-0.6.7/displayconfig/servertestdialog.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/servertestdialog.py 2006-07-03 14:02:18.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # servertestdialog.py - # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/displayconfig/xorgconfig.py kde-guidance-0.6.7.new/displayconfig/xorgconfig.py +--- kde-guidance-0.6.7/displayconfig/xorgconfig.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/xorgconfig.py 2006-07-03 14:02:29.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # xorgconfig.py - description # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/mountconfig/MicroHAL.py kde-guidance-0.6.7.new/mountconfig/MicroHAL.py +--- kde-guidance-0.6.7/mountconfig/MicroHAL.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/mountconfig/MicroHAL.py 2006-07-03 14:01:19.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # MicroHAL.py - # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/mountconfig/mountconfig.py kde-guidance-0.6.7.new/mountconfig/mountconfig.py +--- kde-guidance-0.6.7/mountconfig/mountconfig.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/mountconfig/mountconfig.py 2006-07-03 14:01:09.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + # -*- coding: UTF-8 -*- + ########################################################################### + # mountconfig.py - description # +diff -Nur kde-guidance-0.6.7/serviceconfig/serviceconfig.py kde-guidance-0.6.7.new/serviceconfig/serviceconfig.py +--- kde-guidance-0.6.7/serviceconfig/serviceconfig.py 2006-07-03 13:59:11.000000000 +0200 ++++ kde-guidance-0.6.7.new/serviceconfig/serviceconfig.py 2006-07-03 14:00:02.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + # -*- coding: UTF-8 -*- + ########################################################################### + # serviceconfig.py - description # +diff -Nur kde-guidance-0.6.7/userconfig/unixauthdb.py kde-guidance-0.6.7.new/userconfig/unixauthdb.py +--- kde-guidance-0.6.7/userconfig/unixauthdb.py 2006-07-03 13:59:11.000000000 +0200 ++++ kde-guidance-0.6.7.new/userconfig/unixauthdb.py 2006-07-03 14:00:35.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # Copyright (C) 2004-2006 by Simon Edwards + # +diff -Nur kde-guidance-0.6.7/userconfig/userconfig.py kde-guidance-0.6.7.new/userconfig/userconfig.py +--- kde-guidance-0.6.7/userconfig/userconfig.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/userconfig/userconfig.py 2006-07-03 14:00:26.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + # -*- coding: UTF-8 -*- + ########################################################################### + # userconfig.py - description # +diff -Nur kde-guidance-0.6.7/displayconfig/displayconfigabstraction.py kde-guidance-0.6.7.new/displayconfig/displayconfigabstraction.py +--- kde-guidance-0.6.7/displayconfig/displayconfigabstraction.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/displayconfigabstraction.py 2006-07-03 15:18:38.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2.4 + + import os + import sys +diff -Nur kde-guidance-0.6.7/displayconfig/execwithcapture.py kde-guidance-0.6.7.new/displayconfig/execwithcapture.py +--- kde-guidance-0.6.7/displayconfig/execwithcapture.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/execwithcapture.py 2006-07-03 15:18:51.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2.4 + + import os + import select +diff -Nur kde-guidance-0.6.7/displayconfig/ktimerdialog.py kde-guidance-0.6.7.new/displayconfig/ktimerdialog.py +--- kde-guidance-0.6.7/displayconfig/ktimerdialog.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/ktimerdialog.py 2006-07-03 15:19:06.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # ktimerdialog.py - description # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/mountconfig/fuser.py kde-guidance-0.6.7.new/mountconfig/fuser.py +--- kde-guidance-0.6.7/mountconfig/fuser.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/mountconfig/fuser.py 2006-07-03 15:18:02.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # fuser.py - description # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/mountconfig/sizeview.py kde-guidance-0.6.7.new/mountconfig/sizeview.py +--- kde-guidance-0.6.7/mountconfig/sizeview.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/mountconfig/sizeview.py 2006-07-03 15:18:14.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2.4 + + from qt import * + from kdecore import * +diff -Nur kde-guidance-0.6.7/modules/xf86misc.py kde-guidance-0.6.7.new/modules/xf86misc.py +--- kde-guidance-0.6.7/modules/xf86misc.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/modules/xf86misc.py 2006-07-03 16:47:58.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2.4 + ########################################################################### + # xf86misc.py - # + # ------------------------------ # +diff -Nur kde-guidance-0.6.7/displayconfig/displayconfig-hwprobe.py kde-guidance-0.6.7.new/displayconfig/displayconfig-hwprobe.py +--- kde-guidance-0.6.7/displayconfig/displayconfig-hwprobe.py 2006-06-30 14:38:38.000000000 +0200 ++++ kde-guidance-0.6.7.new/displayconfig/displayconfig-hwprobe.py 2006-07-03 17:41:21.000000000 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/python2.4 + ########################################################################### + # displayconfig-hwprobe.py - description # + # ------------------------------ # --- kde-guidance-0.6.7svn20060829.orig/debian/pyversions +++ kde-guidance-0.6.7svn20060829/debian/pyversions @@ -0,0 +1 @@ +2.4- --- kde-guidance-0.6.7svn20060829.orig/debian/copyright +++ kde-guidance-0.6.7svn20060829/debian/copyright @@ -0,0 +1,432 @@ +This package was debianized by Fathi Boudra on +Mon, 1 Aug 2005 19:23:46 +0200. + +It was downloaded from http://www.simonzone.com/software/guidance + +Copyright Holders: + Simon Edwards + Sebastian Kügler + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The documentations provided with kde-guidance is distributed under +the GNU Free Documentation License (FDL). They are considered free with +regards to the Debian Free Software Guidelines (DFSG) because they don't +contain any unmodifiable parts (invariant sections). The complete text of +the GNU Free Documentation License can be found below: + + GNU Free Documentation License + Version 1.2, November 2002 + + + Copyright (C) 2000,2001,2002 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + +0. PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +functional and useful document "free" in the sense of freedom: to +assure everyone the effective freedom to copy and redistribute it, +with or without modifying it, either commercially or noncommercially. +Secondarily, this License preserves for the author and publisher a way +to get credit for their work, while not being considered responsible +for modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. + + +1. APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work, in any medium, that +contains a notice placed by the copyright holder saying it can be +distributed under the terms of this License. Such a notice grants a +world-wide, royalty-free license, unlimited in duration, to use that +work under the conditions stated herein. The "Document", below, +refers to any such manual or work. Any member of the public is a +licensee, and is addressed as "you". You accept the license if you +copy, modify or distribute the work in a way requiring permission +under copyright law. + +A "Modified Version" of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall subject +(or to related matters) and contains nothing that could fall directly +within that overall subject. (Thus, if the Document is in part a +textbook of mathematics, a Secondary Section may not explain any +mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The "Invariant Sections" are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. If a +section does not fit the above definition of Secondary then it is not +allowed to be designated as Invariant. The Document may contain zero +Invariant Sections. If the Document does not identify any Invariant +Sections then there are none. + +The "Cover Texts" are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. A Front-Cover Text may +be at most 5 words, and a Back-Cover Text may be at most 25 words. + +A "Transparent" copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, that is suitable for revising the document +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup, or absence of markup, has been arranged to thwart +or discourage subsequent modification by readers is not Transparent. +An image format is not Transparent if used for any substantial amount +of text. A copy that is not "Transparent" is called "Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML, PostScript or PDF designed for human modification. Examples of +transparent image formats include PNG, XCF and JPG. Opaque formats +include proprietary formats that can be read and edited only by +proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML, PostScript or PDF produced by some word +processors for output purposes only. + +The "Title Page" means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, "Title Page" means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. + +A section "Entitled XYZ" means a named subunit of the Document whose +title either is precisely XYZ or contains XYZ in parentheses following +text that translates XYZ in another language. (Here XYZ stands for a +specific section name mentioned below, such as "Acknowledgements", +"Dedications", "Endorsements", or "History".) To "Preserve the Title" +of such a section when you modify the Document means that it remains a +section "Entitled XYZ" according to this definition. + +The Document may include Warranty Disclaimers next to the notice which +states that this License applies to the Document. These Warranty +Disclaimers are considered to be included by reference in this +License, but only as regards disclaiming warranties: any other +implication that these Warranty Disclaimers may have is void and has +no effect on the meaning of this License. + + +2. VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no other +conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. + + +3. COPYING IN QUANTITY + +If you publish printed copies (or copies in media that commonly have +printed covers) of the Document, numbering more than 100, and the +Document's license notice requires Cover Texts, you must enclose the +copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a computer-network location from which the general network-using +public has access to download using public-standard network protocols +a complete Transparent copy of the Document, free of added material. +If you use the latter option, you must take reasonably prudent steps, +when you begin distribution of Opaque copies in quantity, to ensure +that this Transparent copy will remain thus accessible at the stated +location until at least one year after the last time you distribute an +Opaque copy (directly or through your agents or retailers) of that +edition to the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to give +them a chance to provide you with an updated version of the Document. + + +4. MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. +K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. +M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. +O. Preserve any Warranty Disclaimers. + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section Entitled "Endorsements", provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. + + +5. COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice, and that you preserve all their Warranty Disclaimers. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections Entitled "History" +in the various original documents, forming one section Entitled +"History"; likewise combine any sections Entitled "Acknowledgements", +and any sections Entitled "Dedications". You must delete all sections +Entitled "Endorsements". + + +6. COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other documents +released under this License, and replace the individual copies of this +License in the various documents with a single copy that is included in +the collection, provided that you follow the rules of this License for +verbatim copying of each of the documents in all other respects. + +You may extract a single document from such a collection, and distribute +it individually under this License, provided you insert a copy of this +License into the extracted document, and follow this License in all +other respects regarding verbatim copying of that document. + + +7. AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, is called an "aggregate" if the copyright +resulting from the compilation is not used to limit the legal rights +of the compilation's users beyond what the individual works permit. +When the Document is included in an aggregate, this License does not +apply to the other works in the aggregate which are not themselves +derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one half of +the entire aggregate, the Document's Cover Texts may be placed on +covers that bracket the Document within the aggregate, or the +electronic equivalent of covers if the Document is in electronic form. +Otherwise they must appear on printed covers that bracket the whole +aggregate. + + +8. TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License, and all the license notices in the +Document, and any Warranty Disclaimers, provided that you also include +the original English version of this License and the original versions +of those notices and disclaimers. In case of a disagreement between +the translation and the original version of this License or a notice +or disclaimer, the original version will prevail. + +If a section in the Document is Entitled "Acknowledgements", +"Dedications", or "History", the requirement (section 4) to Preserve +its Title (section 1) will typically require changing the actual +title. + + +9. TERMINATION + +You may not copy, modify, sublicense, or distribute the Document except +as expressly provided for under this License. Any other attempt to +copy, modify, sublicense or distribute the Document is void, and will +automatically terminate your rights under this License. However, +parties who have received copies, or rights, from you under this +License will not have their licenses terminated so long as such +parties remain in full compliance. + + +10. FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions +of the GNU Free Documentation License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. + + +ADDENDUM: How to use this License for your documents + +To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and +license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.2 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + +If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, +replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + +If you have Invariant Sections without Cover Texts, or some other +combination of the three, merge those two alternatives to suit the +situation. + +If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of +free software license, such as the GNU General Public License, +to permit their use in free software. + --- kde-guidance-0.6.7svn20060829.orig/debian/mountconfig.1 +++ kde-guidance-0.6.7svn20060829/debian/mountconfig.1 @@ -0,0 +1,69 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.TH "MOUNTCONFIG" "1" "aout 2, 2005" "" "" +.SH "NAME" +mountconfig \- disk and filesystem administration tool +.SH "SYNOPSIS" +.B mountconfig +.RI [ options ] +.br +.SH "DESCRIPTION" +This manual page documents briefly the +.B mountconfig +commands. This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBmountconfig\fP is a disk and filesystem administration tool. +.SH "OPTIONS" +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`\-'). +A summary of options is included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-\-help\-qt +Show QT specific help (common for all QT apps). +.TP +.B \-\-help\-kde +Show KDE specific help (common for all KDE apps). +.TP +.B \-\-help\-all +Show the complete help. +.TP +.B \-\-author +Show program author(s). +.TP +.B \-v, \-\-version +Show version of program. +.TP +.B \-\-license +Show program license. +.SH "SEE ALSO" +.BR displayconfig (1), +.BR displayconfig-restore (1), +.BR serviceconfig (1), +.BR userconfig (1). +.br +.SH "AUTHOR" +mountconfig was written by . +.PP +This manual page was written by Fathi Boudra , +for the Debian project (but may be used by others). --- kde-guidance-0.6.7svn20060829.orig/debian/control +++ kde-guidance-0.6.7svn20060829/debian/control @@ -0,0 +1,26 @@ +Source: kde-guidance +Section: kde +Priority: optional +Maintainer: Fathi Boudra +Build-Depends: cdbs (>= 0.4.43), debhelper (>= 5.0.37.2), chrpath, + kdelibs4-dev, libpythonize0-dev, libtool, libxml2-utils, libxxf86vm-dev, + pykdeextensions, pyqt-tools, python-kde3, python-sip4-dev, + python-support (>= 0.3), python-all-dev (>= 2.3.5-11), python-kde3-dev +Standards-Version: 3.7.2 + +Package: kde-guidance +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, pykdeextensions, python-kde3, python-dbus +Provides: ${python:Provides} +Description: collection of KDE system administration tools for GNU/Linux + Guidance currently consists of four programs designed to help you + look after your system: + o userconfig - User and Group administration + o serviceconfig - Service/daemon administration + o mountconfig - Disk and filesystem administration + o displayconfig - Screen and display configuration + . + These tools are available in KDE Control Center, System Settings + or can be run as standalone applications. + . + Homepage: http://www.simonzone.com/software/guidance --- kde-guidance-0.6.7svn20060829.orig/debian/docs +++ kde-guidance-0.6.7svn20060829/debian/docs @@ -0,0 +1,2 @@ +README +TODO --- kde-guidance-0.6.7svn20060829.orig/debian/kde-guidance.init +++ kde-guidance-0.6.7svn20060829/debian/kde-guidance.init @@ -0,0 +1,15 @@ +#!/bin/sh + +case "$1" in + start) + /usr/share/python-support/kde-guidance/displayconfig-hwprobe.py + ;; + stop) + ;; + restart|force-reload) + ;; + *) + ;; +esac + +exit 0 --- kde-guidance-0.6.7svn20060829.orig/debian/userconfig.1 +++ kde-guidance-0.6.7svn20060829/debian/userconfig.1 @@ -0,0 +1,69 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.TH "USERCONFIG" "1" "aout 2, 2005" "" "" +.SH "NAME" +userconfig \- user and group administration tool +.SH "SYNOPSIS" +.B userconfig +.RI [ options ] +.br +.SH "DESCRIPTION" +This manual page documents briefly the +.B userconfig +commands. This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBuserconfig\fP is an user and group administration tool. +.SH "OPTIONS" +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`\-'). +A summary of options is included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-\-help\-qt +Show QT specific help (common for all QT apps). +.TP +.B \-\-help\-kde +Show KDE specific help (common for all KDE apps). +.TP +.B \-\-help\-all +Show the complete help. +.TP +.B \-\-author +Show program author(s). +.TP +.B \-v, \-\-version +Show version of program. +.TP +.B \-\-license +Show program license. +.SH "SEE ALSO" +.BR displayconfig (1), +.BR displayconfig-restore (1), +.BR mountconfig (1), +.BR serviceconfig (1). +.br +.SH "AUTHOR" +userconfig was written by . +.PP +This manual page was written by Fathi Boudra , +for the Debian project (but may be used by others). --- kde-guidance-0.6.7svn20060829.orig/debian/dirs +++ kde-guidance-0.6.7svn20060829/debian/dirs @@ -0,0 +1 @@ +var/lib/guidance --- kde-guidance-0.6.7svn20060829.orig/debian/kde-guidance.lintian-overrides +++ kde-guidance-0.6.7svn20060829/debian/kde-guidance.lintian-overrides @@ -0,0 +1,4 @@ +# false positive warnings from lintian +kde-guidance: postinst-has-useless-call-to-ldconfig +kde-guidance: postrm-has-useless-call-to-ldconfig +kde-guidance: package-has-a-duplicate-relation depends: python2.4 (>= 2.3.90), python2.4 --- kde-guidance-0.6.7svn20060829.orig/debian/compat +++ kde-guidance-0.6.7svn20060829/debian/compat @@ -0,0 +1 @@ +5 --- kde-guidance-0.6.7svn20060829.orig/debian/changelog +++ kde-guidance-0.6.7svn20060829/debian/changelog @@ -0,0 +1,364 @@ +kde-guidance (0.6.7svn20060829-0ubuntu1) edgy; urgency=low + + * New SVN snapshot + + -- Jonathan Riddell Tue, 29 Aug 2006 14:35:20 +0100 + +kde-guidance (0.6.7svn20060810-0ubuntu1) edgy; urgency=low + + * New SVN snapshot + * Adds power manager applet for + https://launchpad.net/distros/ubuntu/+spec/kubuntu-power-management + + -- Jonathan Riddell Thu, 10 Aug 2006 08:56:24 -0400 + +kde-guidance (0.6.7-3ubuntu2) edgy; urgency=low + + * debian/rules: Don't add extra /usr prefix when creating symlinks + for {display,mount,service,user}config & displayconfig-restore + (Closes Ubuntu: #54742). + + -- Daniel T Chen Mon, 31 Jul 2006 21:55:39 -0400 + +kde-guidance (0.6.7-3ubuntu1) edgy; urgency=low + + * Sync with Debian + + -- Jonathan Riddell Wed, 26 Jul 2006 18:39:47 +0100 + +kde-guidance (0.6.7-3) experimental; urgency=low + + * Fixed displayconfig-hwprobe.py in kde-guidance.init (Closes: #376779) + + -- Fathi Boudra Wed, 5 Jul 2006 08:35:08 +0200 + +kde-guidance (0.6.7-2) experimental; urgency=low + + * Converted package to python-support + * Added pycompat and pyversions + * Force to use python2.4 (Closes: #375443) + * Added to Build-Depends: python-support, python-all-dev + * Removed source.lintian-overrides + * Cleaned up rules + * Added 12_force_python2.4_script.diff to force python2.4 in scripts + + -- Fathi Boudra Fri, 30 Jun 2006 14:44:46 +0200 + +kde-guidance (0.6.7-1) experimental; urgency=low + + * Initial Debian release (Closes: #340144) + * Merged with Ubuntu + * Converted to cdbs + * Updated debian/copyright according to GFDL documentations + * Updated postinst and postrm with debhelper token + * Added source lintian override for indirect build dependency + + -- Fathi Boudra Thu, 8 Jun 2006 17:08:06 +0200 + +kde-guidance (0.6.7-0ubuntu4) dapper; urgency=low + + * Add kubuntu_02_passwordexpire.diff from branch, + set local passexpirewarn (not global variable of same name) + prevents UnboundLocalError, closes malone #47090 + + -- Jonathan Riddell Sun, 28 May 2006 14:34:10 +0100 + +kde-guidance (0.6.7-0ubuntu3) dapper; urgency=low + + * Change init number of displayconfig-hwprobe.py to 60, + in line with Ubuntu policy + + -- Jonathan Riddell Fri, 26 May 2006 14:18:42 +0100 + +kde-guidance (0.6.7-0ubuntu2) dapper; urgency=low + + * Add kubuntu_01_branch.diff + - Adds Dutch Translations to .desktop files + - Fixes serviceconfig.py would sometimes fail on non-English systems. + (Closes Malone bug #43313). + + -- Jonathan Riddell Fri, 19 May 2006 02:09:48 +0300 + +kde-guidance (0.6.7-0ubuntu1) dapper; urgency=low + + [ Simon Edwards ] + * Dutch translation added (Rinse de Vries) + * BUG: Displayconfig would fail if the monitor frequency settings in xorg.conf + contained extra spaces. (Malong bug #38692) + * BUG: Displayconfig would not add the lowest screen resolution available to + the modes list in the xorg.conf's Screen section/Display subsection. + * French translation added from Launchpad Rossetta. + + -- Jonathan Riddell Sun, 14 May 2006 01:38:55 +0300 + +kde-guidance (0.6.6-0ubuntu1) dapper; urgency=low + + [ Simon Edwards ] + * BUG: Serviceconfig didn't correctly remove links in runlevel directories. + (Malone bug #39404) + * BUG: In Serviceconfig, toggling the "Start during boot" checkbox using the + context menu would fail. (Malone bug #34252) + * BUG: displayconfig-restore.py was would fail with "global name 'syslog' + undefined". (Malone bug #40683) + * BUG: Displayconfig had trouble picking a driver gfxcard model entry instead + of the detected default (e.g. VESA). (Malone bug #41127) + * BUG: Displayconfig would fail when writing out a xorg.conf that contained + non-ascii characters. (Malone bug #41474) + * Work around for an annoying bug in PyQt/PyKDE that causes the tools to + crash on exit if a dialog window has been used. + * BUG: The file paths used in displayconfig for checking for the proprietary + nvidia driver were wrong or out of date. + + -- Jonathan Riddell Fri, 28 Apr 2006 14:18:26 +0100 + +kde-guidance (0.6.5-0ubuntu2) dapper; urgency=low + + * Add kubuntu_01_broken_script.diff comment out invalid python in + displayconfig script + + -- Jonathan Riddell Wed, 26 Apr 2006 00:38:46 +0100 + +kde-guidance (0.6.5-0ubuntu1) dapper; urgency=low + + [ Simon Edwards ] + * BUG: services that have not been installed via apt would cause long loops + a lot of dpkg queries. Only query dpkg db once. + * BUG: Serviceconfig's Apply button doesn't work. It should actually be Close + (Malone #38582) + * BUG: Changing an user's password can change another password for a different + user (Malone bug #39444) + * BUG: Displayconfig would fail at startup on systems with an nVidia 7800 GTX. + (Malone bug #32915 for Rob Hughes) + * BUG: Serviceconfig would crash if the windows is closed quickly after + serviceconfig appears. + * BUG: userconfig would fail at startup if an entry in /etc/passwd refered to + a group that is not defined in /etc/group. (Malone bug #34311) + * BUG: Userconifg. Manually typing in or editing the list of secondary groups + for a user had no effect. (Malone bug #37212) + * BUG: Displayconfig fails to detect the presence of the proprietary ATI and + nVidia drivers. (The location of some of the driver files had been recently + changed). + * BUG: displayconfig-restore.py would calculated the needed DPI at login using + stale screen information which would sometimes result in the wrong DPI. + * BUG: Numerious small bugs and compatibility problems in mountconfig. + * BUG: When browsing for a SMB share, mountconfig now correctly catches the + authentication information entered by the user into the smaller popup from + kio. + * Displayconfig now assumes that dualhead/clone mode is supported if the + laptop-detect script detects a laptop. + * Displayconfig now uses the clone mode support in the i810 driver. + * Displayconfig now only offers resolutions that both monitors support when + using clone mode. + * Displayconfig now supports clone mode on any setup that also supports + xinerama. + * BUG: Mountconfig failed to take into account that the order of the + user/users, exec/noexc, suid/nosuid etc options in /etc/fstab is significant. + (thanks Christoph Wiesen) + * French translations added to the desktop files. (Anthony Mercatante) + + -- Jonathan Riddell Thu, 20 Apr 2006 18:35:40 +0100 + +kde-guidance (0.6.4-0ubuntu1) dapper; urgency=low + + [ Simon Edwards ] + * BUG: All of the tools no longer write out config files under ~/.kde when + running as root. This should stop the annoying creation of config files + that can't be overwritten by the normal user. + * Userconfig is now by default not quite as tall. This should help stop + it from appearing too big in systemsettings. + * Displayconfig updated to also recognise late model nVidia chipsets. + * BUG: Displayconfig didn't support Clone mode for the proprietary nVidia + driver. + * BUG: The tools now correctly specify which translation catalogue to use for + translations. + * The screen images in the dualhead widget make better use of available widget + space. + * Displayconfig: The 40guidance-displayconfig_restore script which is used by + the Xsession script during login via KDM/xdm, has now been fixed to not stop + the login in case of failure. + * BUG: Displayconfig was getting confused by unknown graphics cards and + crashing. (Malone bug #32915) + * BUG: Displayconfig still can't handling unicode in xorg.conf. (Malone bug + #34437). + * BUG: Displayconfig is now more forgiving when xorg.conf contains characters + that are illegal with respect to the system character encoding. (Malone bug + #36590). + * BUG: Displayconfig would have trouble detecting hardware on the PCI bus on + big endian architectures. (raphink) + * BUG: Displayconfig did not correctly handle situations where the X RandR + extension is missing. + * BUG: Displayconfig would fail when loading some xorg.conf files containing + multiple graphics card specifications. (Malone bug #37275, patch applied) + * BUG: Userconfig didn't respect the entered UID when creating a account. + (Malone bug #37722). + * Displayconfig: Added 1280x960 modes (60 & 75Hz). + + -- Jonathan Riddell Sun, 2 Apr 2006 21:46:15 +0100 + +kde-guidance (0.6.3-0ubuntu1) dapper; urgency=low + + [ Fathi Boudra ] + * Sync with Debian package (not yet in archives) + + [ Simon Edwards ] + * BUG: userconfig and unixauthdb didn't respect the ownership of system files + when update /etc/passwd and friends. (Malone bug #26175). + * BUG: userconfig and unixauthdb would fail if /etc/passwd, /etc/groups or + /etc/shadow contained blank lines. + * BUG: displayconfig now does a better job of detecting graphics PCI devices + and handling non-detected graphics cards. Instead of crashing, "generic + VESA" is used when the type of card can't be found. (Malone bug #32915) + * The DPI that displayconfig-restore.py uses at login time can now be + controlled by adding a line to ~/.kde/share/config/displayconfigrc + in the [General] section. Add "dpi=xserver" to use the default DPI + from the X server, or "dpi=100" to use 100 DPI for example. + * BUG: Widescreen modes were missing in displayconfig. + * Displayconfig: Monitors can now be specified as being standard aspect ratio + or widescreen. + * BUG: Using the xresprobe command in displayconfig would crash some people's + machines. The much more safer ddcprobe command is now used. + (Malone bug #33943) + * BUG: A bug is displayconfig stopped monitor model detection. The xresprobe + command didn't actually return the eisa ID of the connected monitor. + ddcprobe does though (see above). + * BUG: Displayconfig. Changes to the monitor model or image format are + shown immediately on the "Size & Orientation" tab, even if the screen is + currently being used. + * BUG: When userconfig asks about whether the home directory should be created + when creating a new account, sometimes the wrong directory name was shown in + the dialog. + * BUG: Powerbook screen mode "1280x854" add to displayconfig. (Malone bug + #34383). + * BUG: Displayconfig would throw an exception if the current display didn't + support DPMS. (Malone bug #34316). + * BUG: Most utilities would fail if they came across UTF-8 or unicode + characters. (Malone bug #34194). + * BUG: Displayconfig wouldn't correctly detect the presence of installed + proprietary drivers. (OculusAquilae) + * BUG: Displayconfig had trouble handling BusID rows in xorg.conf. This would + cause the xorg.conf to be incorrectly read. (Tonio) + * Added some extra methods to ScanPCI.py to aid debugging. + * BUG: Displayconfig would not save the user's display settings when running + in kcontrol or systemsettings. (Malone bug #35257) + + -- Fathi Boudra Sun, 19 Mar 2006 17:39:48 +0100 + +kde-guidance (0.6.3-1) unstable; urgency=low + + * Merge with Ubuntu + * New upstream version + * Added displayconfig + * Removed README.Debian + * Fixed manpages + * Fixed old fsf address in copyright file + + -- Fathi Boudra Sun, 19 Mar 2006 15:46:17 +0100 + +kde-guidance (0.6.2-0ubuntu1) dapper; urgency=low + + [ Simon Edwards ] + * BUG: Small bug in displayconfig that caused it to bug out around the + newCustomMonitor() method. + * BUG: userconfig had space character just before the she-bang which really + caused some trouble the for the shell. + * BUG: Displayconfig: Selecting the "Plug n Play" monitor directly without + clicking on "Detect" meant that only a very small set of resolutions would + be written to xorg.conf. + * BUG: The DPI calculations in displayconfig-restore.py where broken. This + resulted in the wrong DPI being used. + * BUG: Displayconfig: The clone mode option is now correctly disabled for + Matrox cards (mga driver). + * BUG: Displayconfig would bug out if the monitor model in the xorg.conf was + anything other than Plug n Play. + * BUG: Displayconfig would bug out if the DPMS Standby setting was 0 and DPMS + enabled. + * Displayconfig is now shown in kcontrol under settings/hardware instead of + settings/system. + * BUG: Small bug in displayconfig that will causes displayconfig to bug out + when trying to detect the monitor and no EDID info is available. + * BUG: Small cosmetic bug in displayconfig where the some tabs were missing + margins when shown in kcontrol/system settings. + * BUG: displayconfig would bug out when detecting ATI dualhead cards. + (pci_device.text was None). + + [ Jonathan Riddell ] + * Remove kubuntu_02_display_category.diff, now in SVN + * Remove kubuntu_03_userconfig_shebang.diff, now in SVN + + -- Jonathan Riddell Sun, 5 Mar 2006 21:51:47 +0000 + +kde-guidance (0.6.1-0ubuntu0) dapper; urgency=low + + * New release, sets a fixed DPI for Xft + * Add run time dependency on pykdeextensions + * Add kubuntu_03_userconfig_shebang.diff fix extra space + * Change init script to run at S35, Malone No. 32268 + + -- Jonathan Riddell Mon, 20 Feb 2006 22:22:25 +0000 + +kde-guidance (0.6.0-0ubuntu1) dapper; urgency=low + + * New release + * Implements Guidance sections of https://wiki.ubuntu.com/KubuntuSystemTools + * Add kubuntu_01_hardware_file_path.diff from SVN to use correct directory + * Add kubuntu_02_display_category.diff to put display into hardware category + + -- Jonathan Riddell Wed, 18 Jan 2006 20:44:05 +0100 + +kde-guidance (0.4.0+svn20060102-0ubuntu1) dapper; urgency=low + + * New snapshot, displayconfig added + + -- Jonathan Riddell Mon, 2 Jan 2006 22:53:34 +0000 + +kde-guidance (0.4.0-0ubuntu5) dapper; urgency=low + + * Rebuild for libstdc++ transition + + -- Jonathan Riddell Tue, 13 Dec 2005 00:25:05 +0000 + +kde-guidance (0.4.0-0ubuntu4) breezy; urgency=low + + * Copy necessary icons to global icon directory + * Add GenericNames to .desktop files + * Avoid repetition in description + + -- Jonathan Riddell Wed, 21 Sep 2005 02:44:22 +0100 + +kde-guidance (0.4.0-0ubuntu3) breezy; urgency=low + + * Move files from /usr/lib/python2.4/site-packages/guidance + to just /usr/lib/python2.4/site-packages + + -- Jonathan Riddell Sat, 17 Sep 2005 21:31:21 +0100 + +kde-guidance (0.4.0-0ubuntu2) breezy; urgency=low + + * Can't remove debian/docs, it's in the .orig + + -- Jonathan Riddell Thu, 15 Sep 2005 02:01:07 +0100 + +kde-guidance (0.4.0-0ubuntu1) breezy; urgency=low + + * New upstream version + * Fix debian/rules for rename to kde-guidance + + -- Jonathan Riddell Thu, 15 Sep 2005 01:07:38 +0100 + +kde-guidance (0.3.0+svn20050911-0ubuntu1) breezy; urgency=low + + * Initial Ubuntu upload + * Install .py files into /usr/lib/python2.4/site-packages/guidance + * Change source and package name to kde-guidance to + reduce namespace polution + + -- Jonathan Riddell Sun, 11 Sep 2005 23:51:52 +0100 + +guidance (0.3.0-1) unstable; urgency=low + + * Initial release + * Removed displayconfig that doesn't work on debian yet + * Added manpages + + -- Fathi Boudra Mon, 1 Aug 2005 19:23:46 +0200 + --- kde-guidance-0.6.7svn20060829.orig/debian/displayconfig.1 +++ kde-guidance-0.6.7svn20060829/debian/displayconfig.1 @@ -0,0 +1,69 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.TH "DISPLAYCONFIG" "1" "aout 2, 2005" "" "" +.SH "NAME" +displayconfig \- screen and display configuration tool +.SH "SYNOPSIS" +.B displayconfig +.RI [ options ] +.br +.SH "DESCRIPTION" +This manual page documents briefly the +.B displayconfig +commands. This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBdisplayconfig\fP is a screen and display configuration tool. +.SH "OPTIONS" +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`\-'). +A summary of options is included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-\-help\-qt +Show QT specific help (common for all QT apps). +.TP +.B \-\-help\-kde +Show KDE specific help (common for all KDE apps). +.TP +.B \-\-help\-all +Show the complete help. +.TP +.B \-\-author +Show program author(s). +.TP +.B \-v, \-\-version +Show version of program. +.TP +.B \-\-license +Show program license. +.SH "SEE ALSO" +.BR displayconfig-restore (1). +.BR mountconfig (1). +.BR serviceconfig (1), +.BR userconfig (1). +.br +.SH "AUTHOR" +displayconfig was written by . +.PP +This manual page was written by Fathi Boudra , +for the Debian project (but may be used by others). --- kde-guidance-0.6.7svn20060829.orig/debian/pycompat +++ kde-guidance-0.6.7svn20060829/debian/pycompat @@ -0,0 +1 @@ +2