diff options
Diffstat (limited to 'comms')
31 files changed, 0 insertions, 1920 deletions
diff --git a/comms/conserver/files/conserver.sh.in b/comms/conserver/files/conserver.sh.in deleted file mode 100644 index 0c40f10b61ef..000000000000 --- a/comms/conserver/files/conserver.sh.in +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ - -if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then - echo "$0: Cannot determine the PREFIX" >&2 - exit 1 -fi - -case "$1" in -start) - if [ -x ${PREFIX}/sbin/conserver -a -f ${PREFIX}/etc/conserver.cf ]; then - ${PREFIX}/sbin/conserver -d -n ; echo -n ' conserver' - fi - ;; -stop) - killall -TERM conserver && echo -n ' conserver' - ;; -restart) - $0 stop - $0 start - ;; -status|stat) - ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" - ;; -*) - echo "Usage: `basename $0` {start|stop|restart|status}" >&2 - ;; -esac - -exit 0 diff --git a/comms/gammu-devel/Makefile b/comms/gammu-devel/Makefile deleted file mode 100644 index 29d000387979..000000000000 --- a/comms/gammu-devel/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# New ports collection makefile for: gammu -# Date created: 12 december 2003 -# Whom: Kirill Bezzubets <kirill@solaris.ru> -# -# $FreeBSD$ -# - -PORTNAME= gammu -PORTVERSION= 1.01.0 -CATEGORIES= comms -MASTER_SITES= http://www.mwiacek.com/zips/gsm/gammu/stable/1_0x/ - -MAINTAINER= kirill@solaris.ru -COMMENT= GNU All Mobile Management Utilities - -MAN1= gammu.1 -USE_GMAKE= yes -USE_GNOME= pkgconfig -GNU_CONFIGURE= yes -WANT_AUTOCONF_VER=259 -INSTALLS_SHLIB= yes - -CONFIGURE_ARGS= --disable-bluerfsearch -CONFIGURE_ENV= CFLAGS="${CFLAGS} -fPIC" - -.include <bsd.port.mk> diff --git a/comms/gammu-devel/distinfo b/comms/gammu-devel/distinfo deleted file mode 100644 index 51c6f4098330..000000000000 --- a/comms/gammu-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (gammu-1.01.0.tar.gz) = 1ae9d7d51158c9f0cb5d3b25e7e7e1e1 -SIZE (gammu-1.01.0.tar.gz) = 860546 diff --git a/comms/gammu-devel/files/patch-bluetooth b/comms/gammu-devel/files/patch-bluetooth deleted file mode 100644 index 1e698a060071..000000000000 --- a/comms/gammu-devel/files/patch-bluetooth +++ /dev/null @@ -1,64 +0,0 @@ -diff -ru ../gammu-1.01.0.orig/common/device/bluetoth/bluez.c common/device/bluetoth/bluez.c ---- ../gammu-1.01.0.orig/common/device/bluetoth/bluez.c Thu Mar 10 10:35:58 2005 -+++ common/device/bluetoth/bluez.c Sat Jul 9 12:46:07 2005 -@@ -23,6 +23,8 @@ - #ifdef GSM_ENABLE_BLUETOOTHDEVICE - #ifdef GSM_ENABLE_BLUEZ - -+#define BDADDR_ANY NG_HCI_BDADDR_ANY -+ - #include <stdlib.h> - #include <stdio.h> - #include <fcntl.h> -@@ -31,10 +33,7 @@ - #include <sys/socket.h> - #include <sys/time.h> - #include <unistd.h> --#include <bluetooth/bluetooth.h> --#include <bluetooth/rfcomm.h> --#include <bluetooth/sdp.h> --#include <bluetooth/sdp_lib.h> -+#include <bluetooth.h> - - #include "../../gsmcomon.h" - #include "../devfunc.h" -@@ -43,21 +42,21 @@ - GSM_Error bluetooth_connect(GSM_StateMachine *s, int port, char *device) - { - GSM_Device_BlueToothData *d = &s->Device.Data.BlueTooth; -- struct sockaddr_rc laddr, raddr; -+ struct sockaddr_rfcomm laddr, raddr; - bdaddr_t bdaddr; - int fd; - - smprintf(s, "Connecting to RF channel %i\n",port); - -- fd = socket(PF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM); -+ fd = socket(PF_BLUETOOTH, SOCK_STREAM, BLUETOOTH_PROTO_RFCOMM); - if (fd < 0) { - dbgprintf("Can't create socket\n"); - return ERR_DEVICENODRIVER; - } - -- bacpy(&laddr.rc_bdaddr, BDADDR_ANY); -- laddr.rc_family = AF_BLUETOOTH; -- laddr.rc_channel = 0; -+ bacpy(&laddr.rfcomm_bdaddr, BDADDR_ANY); -+ laddr.rfcomm_family = AF_BLUETOOTH; -+ laddr.rfcomm_channel = 0; - - if (bind(fd, (struct sockaddr *)&laddr, sizeof(laddr)) < 0) { - dbgprintf("Can't bind socket\n"); -@@ -66,9 +65,9 @@ - } - - str2ba(device, &bdaddr); -- bacpy(&raddr.rc_bdaddr, &bdaddr); -- raddr.rc_family = AF_BLUETOOTH; -- raddr.rc_channel = port; -+ bacpy(&raddr.rfcomm_bdaddr, &bdaddr); -+ raddr.rfcomm_family = AF_BLUETOOTH; -+ raddr.rfcomm_channel = port; - - if (connect(fd, (struct sockaddr *)&raddr, sizeof(raddr)) < 0) { - dbgprintf("Can't connect\n"); diff --git a/comms/gammu-devel/files/patch-cfg-Makefile.glo b/comms/gammu-devel/files/patch-cfg-Makefile.glo deleted file mode 100644 index 80567a309457..000000000000 --- a/comms/gammu-devel/files/patch-cfg-Makefile.glo +++ /dev/null @@ -1,50 +0,0 @@ ---- ../gammu-1.01.0.orig/cfg/Makefile.glo Tue Apr 12 15:26:08 2005 -+++ cfg/Makefile.glo Sat Jul 9 22:24:39 2005 -@@ -122,7 +122,7 @@ - @echo Making $< - @$(CC) -c $(CFLAGS) -I$(TOPDIR)/common/ $(CPPFLAGS) $*.c -o $*.o - --all: gammu -+all: gammu shared - - $(TOPDIR)/gammu/gammu: $(COMMON) $(GAMMU) - @echo Linking gammu -@@ -136,7 +136,7 @@ - - $(TOPDIR)/common/libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR): $(COMMON) - @echo Linking libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) -- @$(CC) $(LDLIBS) -shared -Wl,-soname -Wl,libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) -o $(TOPDIR)/common/libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) $(COMMON) -+ @$(CC) $(LDLIBS) -shared -Wl,-soname -Wl,libGammu.so.$(SONAME_MAJOR) -o $(TOPDIR)/common/libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) $(COMMON) - @$(LN) -s libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) $(TOPDIR)/common/libGammu.so.$(SONAME_MAJOR) - @$(LN) -s libGammu.so.$(SONAME_MAJOR) $(TOPDIR)/common/libGammu.so - -@@ -230,7 +230,7 @@ - @$(INSTALL) -m 0644 $(TOPDIR)/docs/docs/english/gammu.1 $(DESTDIR)$(INSTALL_MAN_DIR) - @$(RM) $(DESTDIR)$(INSTALL_DOC_DIR)/docs/english/gammu.1 - --install: uninstall all installdocs installlocales installonly -+install: uninstall all installdocs installlocales installlibonly - - installonly: all - @echo Installing binaries to $(DESTDIR)$(INSTALL_BIN_DIR) -@@ -247,8 +247,7 @@ - - @echo Installing shared library to $(DESTDIR)$(INSTALL_LIB_DIR) - @$(INSTALL) -m 0755 -d $(DESTDIR)$(INSTALL_LIB_DIR) -- @$(INSTALL) -m 0644 $(TOPDIR)/common/libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) $(DESTDIR)$(INSTALL_LIB_DIR) -- @$(LN) -s libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) $(DESTDIR)$(INSTALL_LIB_DIR)/libGammu.so.$(SONAME_MAJOR) -+ @$(INSTALL) -m 0644 $(TOPDIR)/common/libGammu.so.$(SONAME_MAJOR).$(SONAME_MINOR) $(DESTDIR)$(INSTALL_LIB_DIR)/libGammu.so.$(SONAME_MAJOR) - @$(LN) -s libGammu.so.$(SONAME_MAJOR) $(DESTDIR)$(INSTALL_LIB_DIR)/libGammu.so - - @echo Installing static library to $(DESTDIR)$(INSTALL_LIB_DIR) -@@ -267,8 +266,8 @@ - @$(INSTALL) -m 0644 cfg/config.h $(DESTDIR)$(INSTALL_H_DIR)/config.h - - @echo Installing pkgconfig file -- @$(INSTALL) -m 0755 -d $(DESTDIR)$(INSTALL_LIB_DIR)/pkgconfig -- @$(INSTALL) -m 0644 cfg/pkgconfig/gammu.pc $(DESTDIR)$(INSTALL_LIB_DIR)/pkgconfig -+ @$(INSTALL) -m 0755 -d $(prefix)/libdata/pkgconfig -+ @$(INSTALL) -m 0644 cfg/pkgconfig/gammu.pc $(prefix)/libdata/pkgconfig - - apidoc: - @if test -z "$(DOXYGEN)" ; then \ diff --git a/comms/gammu-devel/files/patch-configure.in b/comms/gammu-devel/files/patch-configure.in deleted file mode 100644 index 14989aac2ef2..000000000000 --- a/comms/gammu-devel/files/patch-configure.in +++ /dev/null @@ -1,77 +0,0 @@ ---- ../gammu-1.01.0.orig/cfg/autoconf/configure.in Tue Mar 8 19:16:22 2005 -+++ cfg/autoconf/configure.in Sat Jul 9 12:51:12 2005 -@@ -185,17 +185,17 @@ - fi - if test "$gsm_blue_stack" = unknown ; then - AC_CHECK_HEADERS(bluetooth/bluetooth.h, -- [gsm_blue_stack=Bluez -+ [gsm_blue_stack=FreeBSD - LDLIBS="$LDLIBS -lbluetooth" - AC_CHECK_LIB(sdp, sdp_list_append, LDLIBS="$LDLIBS -lsdp") - AC_DEFINE(GSM_ENABLE_BLUEZ) - ]) - fi - -- dnl Path for Bluez bluetooth library -+ dnl Path for FreeBSD bluetooth library - gsm_bt_dir="" - AC_ARG_WITH(bluedir, -- [ --with-bluedir=DIR Specifies the base libbluetooth from Bluez], -+ [ --with-bluedir=DIR Specifies the base libbluetooth from FreeBSD], - [ if test x$withval = xyes; then - AC_MSG_WARN(Usage is: --with-bluedir=DIR) - else -@@ -292,7 +292,7 @@ - [ --disable-bluefbus Disable Nokia FBUS2 over Bluetooth stack - (Nokia 6210)], - [gsm_enable_bluefbus2="no"], -- [if test $gsm_blue_stack = Bluez; then -+ [if test $gsm_blue_stack = FreeBSD; then - AC_DEFINE(GSM_ENABLE_BLUEFBUS2) - gsm_enable_bluefbus2="yes" - else -@@ -302,7 +302,7 @@ - [ --disable-bluephonet Disable Nokia PHONET FBUS over Bluetooth - stack (all new Nokias)], - [gsm_enable_bluephonet="no"], -- [if test $gsm_blue_stack = Bluez; then -+ [if test $gsm_blue_stack = FreeBSD; then - AC_DEFINE(GSM_ENABLE_BLUEPHONET) - gsm_enable_bluephonet="yes" - else -@@ -311,7 +311,7 @@ - AC_ARG_ENABLE(blueat, - [ --disable-blueat Disable AT commands over Bluetooth stack], - [gsm_enable_blueat="no"], -- [if test $gsm_blue_stack = Bluez; then -+ [if test $gsm_blue_stack = FreeBSD; then - AC_DEFINE(GSM_ENABLE_BLUEAT) - gsm_enable_blueat="yes" - else -@@ -320,7 +320,7 @@ - AC_ARG_ENABLE(blueobex, - [ --disable-blueobex Disable OBEX over Bluetooth stack], - [gsm_enable_blueobex="no"], -- [if test $gsm_blue_stack = Bluez; then -+ [if test $gsm_blue_stack = FreeBSD; then - AC_DEFINE(GSM_ENABLE_BLUEOBEX) - gsm_enable_blueobex="yes" - else -@@ -355,7 +355,7 @@ - AC_ARG_ENABLE(bluerfsearch, - [ --disable-bluerfsearch Disable searching for RF channels with Bluetooth stack], - [gsm_enable_bluerfsearch="no"], -- [if test $gsm_blue_stack = Bluez; then -+ [if test $gsm_blue_stack = FreeBSD; then - AC_DEFINE(BLUETOOTH_RF_SEARCHING) - gsm_enable_bluerfsearch="yes" - fi]) -@@ -443,7 +443,7 @@ - Binaries - $bindir - RPM making directory - $RPM_DIR - Temporary directory - $TEMP_DIR -- Bluez library path - $gsm_bt_dir -+ FreeBSD Bluetooth library path - $gsm_bt_dir - - General options - --------------- diff --git a/comms/gammu-devel/pkg-descr b/comms/gammu-devel/pkg-descr deleted file mode 100644 index 1ef0e6fb4a91..000000000000 --- a/comms/gammu-devel/pkg-descr +++ /dev/null @@ -1,11 +0,0 @@ -Gammu (Gnu All Mobile Management Utilities) 0.98.0 - -Gammu allows you to manage your mobile phone directly from -your PC. It has many features, such as SMS handling, Calendar, -Java support, ringtones, pictures, and many, many other good -things. - -WWW: http://www.mwiacek.com - -- Kirill Bezzubets -<kirill@solaris.ru> diff --git a/comms/gammu-devel/pkg-plist b/comms/gammu-devel/pkg-plist deleted file mode 100644 index 7a1c85bffd02..000000000000 --- a/comms/gammu-devel/pkg-plist +++ /dev/null @@ -1,134 +0,0 @@ -bin/gammu -%%DOCSDIR%%/changelog -%%DOCSDIR%%/copying -%%DOCSDIR%%/readme.txt -%%DOCSDIR%%/docs/english/gammu.txt -%%DOCSDIR%%/docs/english/replace.txt -%%DOCSDIR%%/docs/italian/gammu.txt -%%DOCSDIR%%/docs/italian/readme.txt -%%DOCSDIR%%/docs/gammu.png -%%DOCSDIR%%/examples/config/gammurc -%%DOCSDIR%%/examples/config/smsdrc -%%DOCSDIR%%/examples/config/mysql.sql -%%DOCSDIR%%/examples/fax/faxreceive -%%DOCSDIR%%/examples/fax/faxsend -%%DOCSDIR%%/examples/ppp/data -%%DOCSDIR%%/examples/ppp/gprs -%%DOCSDIR%%/examples/ppp/startppp -%%DOCSDIR%%/examples/ppp/statsppp -%%DOCSDIR%%/examples/media/aliens.nlm -%%DOCSDIR%%/examples/media/axelf.txt -share/gammu/gammu_cs.txt -share/gammu/gammu_de.txt -share/gammu/gammu_it.txt -share/gammu/gammu_pl.txt -share/gammu/gammu_us.txt -libdata/pkgconfig/gammu.pc -lib/libGammu.a -lib/libGammu.so -lib/libGammu.so.0 -include/gammu/config.h -include/gammu/gammu.h -include/gammu/gsmcomon.h -include/gammu/gsmstate.h -include/gammu/device/devfunc.h -include/gammu/device/bluetoth/affix.h -include/gammu/device/bluetoth/blue_w32.h -include/gammu/device/bluetoth/bluetoth.h -include/gammu/device/bluetoth/bluez.h -include/gammu/device/irda/irda.h -include/gammu/device/irda/irda_unx.h -include/gammu/device/irda/irda_w32.h -include/gammu/device/serial/ser_djg.h -include/gammu/device/serial/ser_unx.h -include/gammu/device/serial/ser_w32.h -include/gammu/misc/cfg.h -include/gammu/misc/misc.h -include/gammu/misc/coding/coding.h -include/gammu/misc/coding/md5.h -include/gammu/phone/pfunc.h -include/gammu/phone/alcatel/alcatel.h -include/gammu/phone/at/atgen.h -include/gammu/phone/at/samsung.h -include/gammu/phone/at/siemens.h -include/gammu/phone/at/sonyeric.h -include/gammu/phone/nokia/ncommon.h -include/gammu/phone/nokia/nfunc.h -include/gammu/phone/nokia/nfuncold.h -include/gammu/phone/nokia/dct3/dct3comm.h -include/gammu/phone/nokia/dct3/dct3func.h -include/gammu/phone/nokia/dct3/n0650.h -include/gammu/phone/nokia/dct3/n6110.h -include/gammu/phone/nokia/dct3/n7110.h -include/gammu/phone/nokia/dct3/n9210.h -include/gammu/phone/nokia/dct4/dct4func.h -include/gammu/phone/nokia/dct4/n3320.h -include/gammu/phone/nokia/dct4/n3650.h -include/gammu/phone/nokia/dct4/6510/6510cal.h -include/gammu/phone/nokia/dct4/6510/6510file.h -include/gammu/phone/nokia/dct4/6510/n6510.h -include/gammu/phone/obex/obexgen.h -include/gammu/phone/symbian/mroutgen.h -include/gammu/protocol/protocol.h -include/gammu/protocol/alcatel/alcabus.h -include/gammu/protocol/at/at.h -include/gammu/protocol/nokia/fbus2.h -include/gammu/protocol/nokia/mbus2.h -include/gammu/protocol/nokia/phonet.h -include/gammu/protocol/obex/obex.h -include/gammu/protocol/symbian/mrouter.h -include/gammu/service/gsmcal.h -include/gammu/service/gsmcall.h -include/gammu/service/gsmdata.h -include/gammu/service/gsmlogo.h -include/gammu/service/gsmmisc.h -include/gammu/service/gsmnet.h -include/gammu/service/gsmpbk.h -include/gammu/service/gsmprof.h -include/gammu/service/gsmring.h -include/gammu/service/backup/backgen.h -include/gammu/service/backup/backics.h -include/gammu/service/backup/backldif.h -include/gammu/service/backup/backlmb.h -include/gammu/service/backup/backtext.h -include/gammu/service/backup/backvcf.h -include/gammu/service/backup/backvcs.h -include/gammu/service/backup/gsmback.h -include/gammu/service/sms/gsmems.h -include/gammu/service/sms/gsmmulti.h -include/gammu/service/sms/gsmsms.h -@dirrm include/gammu/service/sms -@dirrm include/gammu/service/backup -@dirrm include/gammu/service -@dirrm include/gammu/protocol/symbian -@dirrm include/gammu/protocol/obex -@dirrm include/gammu/protocol/nokia -@dirrm include/gammu/protocol/at -@dirrm include/gammu/protocol/alcatel -@dirrm include/gammu/protocol -@dirrm include/gammu/phone/symbian -@dirrm include/gammu/phone/obex -@dirrm include/gammu/phone/nokia/dct3 -@dirrm include/gammu/phone/nokia/dct4/6510 -@dirrm include/gammu/phone/nokia/dct4 -@dirrm include/gammu/phone/nokia -@dirrm include/gammu/phone/at -@dirrm include/gammu/phone/alcatel -@dirrm include/gammu/phone -@dirrm include/gammu/misc/coding -@dirrm include/gammu/misc -@dirrm include/gammu/device/serial -@dirrm include/gammu/device/irda -@dirrm include/gammu/device/bluetoth -@dirrm include/gammu/device -@dirrm include/gammu -@dirrm share/gammu -@dirrm %%DOCSDIR%%/docs/english -@dirrm %%DOCSDIR%%/docs/italian -@dirrm %%DOCSDIR%%/docs -@dirrm %%DOCSDIR%%/examples/config -@dirrm %%DOCSDIR%%/examples/media -@dirrm %%DOCSDIR%%/examples/ppp -@dirrm %%DOCSDIR%%/examples/fax -@dirrm %%DOCSDIR%%/examples -@dirrm %%DOCSDIR%% diff --git a/comms/kremotecontrol/Makefile b/comms/kremotecontrol/Makefile deleted file mode 100644 index e465f3ebecf1..000000000000 --- a/comms/kremotecontrol/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# New ports collection makefile for: kdeutils3 -# Date created: 3 November 2001 -# Whom: will@cvs.kde.org -# -# $FreeBSD$ -# - -PORTNAME= kdeutils -PORTVERSION= ${KDE_VERSION} -CATEGORIES?= misc kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src -DIST_SUBDIR= KDE - -MAINTAINER?= kde@FreeBSD.org -COMMENT= Utilities for the KDE integrated X11 desktop - -LIB_DEPENDS= netsnmp:${PORTSDIR}/net-mgmt/net-snmp -RUN_DEPENDS= gpg:${PORTSDIR}/security/gnupg - -CONFLICTS= kgpg-* - -USE_KDELIBS_VER=3 -USE_KDEBASE_VER=3 -PREFIX= ${KDE_PREFIX} - -USE_BZIP2= yes -USE_GMAKE= yes -USE_GETOPT_LONG=yes -GNU_CONFIGURE= yes -USE_REINPLACE= yes -DO_NOT_COMPILE+=klaptopdaemon kmilo -CONFIGURE_ENV+= DO_NOT_COMPILE="${DO_NOT_COMPILE}" - -CONFLICTS= kgpg-[0-9]* - -INSTALLS_SHLIB= yes -LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 - -.include "${.CURDIR}/../../x11/kde3/Makefile.kde" -.include <bsd.port.pre.mk> - -.if ${OSVERSION} > 501102 -. if ${OSVERSION} > 600021 -RUN_DEPENDS+= gtar:${PORTSDIR}/archivers/gtar -. endif -post-patch: - ${REINPLACE_CMD} -e 's|>tar<|>gtar<|g' ${WRKSRC}/ark/ark.kcfg -.endif - -.include <bsd.port.post.mk> diff --git a/comms/kremotecontrol/distinfo b/comms/kremotecontrol/distinfo deleted file mode 100644 index 2f9b08e96a62..000000000000 --- a/comms/kremotecontrol/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (KDE/kdeutils-3.4.2.tar.bz2) = 62500e5ee043937592ebc6ad91dd670d -SIZE (KDE/kdeutils-3.4.2.tar.bz2) = 2290150 diff --git a/comms/kremotecontrol/pkg-descr b/comms/kremotecontrol/pkg-descr deleted file mode 100644 index 90ae45773bea..000000000000 --- a/comms/kremotecontrol/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/comms/kremotecontrol/pkg-plist b/comms/kremotecontrol/pkg-plist deleted file mode 100644 index cdd7fe070be2..000000000000 --- a/comms/kremotecontrol/pkg-plist +++ /dev/null @@ -1,491 +0,0 @@ -bin/ark -bin/irkick -bin/kcalc -bin/kcharselect -bin/kdessh -bin/kdf -bin/kedit -bin/kfloppy -bin/kgpg -bin/khexedit -bin/kjots -bin/kregexpeditor -bin/ktimer -bin/kwalletmanager -bin/kwikdisk -include/kmultiformlistbox.h -include/kmultiformlistboxentry.h -include/kmultiformlistboxfactory.h -include/ksim/chart.h -include/ksim/common.h -include/ksim/ksimconfig.h -include/ksim/label.h -include/ksim/led.h -include/ksim/pluginglobal.h -include/ksim/pluginloader.h -include/ksim/pluginmodule.h -include/ksim/progress.h -include/ksim/themeloader.h -include/ksim/themetypes.h -include/kwidgetstreamer.h -lib/kde3/ark.la -lib/kde3/ark.so -lib/kde3/irkick.la -lib/kde3/irkick.so -lib/kde3/kcalc.la -lib/kde3/kcalc.so -lib/kde3/kcharselect_panelapplet.la -lib/kde3/kcharselect_panelapplet.so -lib/kde3/kcm_kcmlirc.la -lib/kde3/kcm_kcmlirc.so -lib/kde3/kcm_kdf.la -lib/kde3/kcm_kdf.so -lib/kde3/kcm_kwallet.la -lib/kde3/kcm_kwallet.so -lib/kde3/kedit.la -lib/kde3/kedit.so -lib/kde3/ksim_cpu.la -lib/kde3/ksim_cpu.so -lib/kde3/ksim_disk.la -lib/kde3/ksim_disk.so -lib/kde3/ksim_filesystem.la -lib/kde3/ksim_filesystem.so -lib/kde3/ksim_net.la -lib/kde3/ksim_net.so -lib/kde3/ksim_panelextension.la -lib/kde3/ksim_panelextension.so -lib/kde3/ksim_sensors.la -lib/kde3/ksim_sensors.so -lib/kde3/ksim_snmp.la -lib/kde3/ksim_snmp.so -lib/kde3/libarkpart.la -lib/kde3/libarkpart.so -lib/kde3/libkbyteseditwidget.la -lib/kde3/libkbyteseditwidget.so -lib/kde3/libkhexedit2part.la -lib/kde3/libkhexedit2part.so -lib/kde3/libkregexpeditorgui.la -lib/kde3/libkregexpeditorgui.so -lib/libkdeinit_ark.la -lib/libkdeinit_ark.so -lib/libkdeinit_irkick.la -lib/libkdeinit_irkick.so -lib/libkdeinit_kcalc.la -lib/libkdeinit_kcalc.so -lib/libkdeinit_kedit.la -lib/libkdeinit_kedit.so -lib/libkhexeditcommon.la -lib/libkhexeditcommon.so -lib/libkhexeditcommon.so.0 -lib/libkregexpeditorcommon.la -lib/libkregexpeditorcommon.so -lib/libkregexpeditorcommon.so.1 -lib/libksimcore.la -lib/libksimcore.so -lib/libksimcore.so.1 -share/applications/kde/KCharSelect.desktop -share/applications/kde/KEdit.desktop -share/applications/kde/KFloppy.desktop -share/applications/kde/Kjots.desktop -share/applications/kde/ark.desktop -share/applications/kde/irkick.desktop -share/applications/kde/kcalc.desktop -share/applications/kde/kcmdf.desktop -share/applications/kde/kcmlirc.desktop -share/applications/kde/kdf.desktop -share/applications/kde/kgpg.desktop -share/applications/kde/khexedit.desktop -share/applications/kde/kregexpeditor.desktop -share/applications/kde/ksim.desktop -share/applications/kde/ktimer.desktop -share/applications/kde/kwalletconfig.desktop -share/applications/kde/kwalletmanager-kwalletd.desktop -share/applications/kde/kwalletmanager.desktop -share/applications/kde/kwikdisk.desktop -share/apps/ark/ark_part.rc -share/apps/ark/ark_part_readonly.rc -share/apps/ark/arkui.rc -share/apps/ark/icons/crystalsvg/22x22/actions/ark_adddir.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_addfile.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_delete.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_extract.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_help.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_new.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_open.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_options.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_selectall.png -share/apps/ark/icons/crystalsvg/22x22/actions/ark_view.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_adddir.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_addfile.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_delete.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_extract.png -share/apps/ark/icons/crystalsvg/32x32/actions/ark_view.png -share/apps/irkick/icons/hicolor/16x16/actions/irkick.png -share/apps/irkick/icons/hicolor/16x16/actions/irkickflash.png -share/apps/irkick/icons/hicolor/16x16/actions/irkickoff.png -share/apps/irkick/icons/hicolor/16x16/actions/ledblue.png -share/apps/irkick/icons/hicolor/16x16/actions/ledgreen.png -share/apps/irkick/icons/hicolor/16x16/actions/ledlightblue.png -share/apps/irkick/icons/hicolor/16x16/actions/ledlightgreen.png -share/apps/irkick/icons/hicolor/16x16/actions/ledorange.png -share/apps/irkick/icons/hicolor/16x16/actions/ledpurple.png -share/apps/irkick/icons/hicolor/16x16/actions/ledred.png -share/apps/irkick/icons/hicolor/16x16/actions/ledyellow.png -share/apps/irkick/icons/hicolor/32x32/actions/ledblue.png -share/apps/irkick/icons/hicolor/32x32/actions/ledgreen.png -share/apps/irkick/icons/hicolor/32x32/actions/ledlightblue.png -share/apps/irkick/icons/hicolor/32x32/actions/ledlightgreen.png -share/apps/irkick/icons/hicolor/32x32/actions/ledorange.png -share/apps/irkick/icons/hicolor/32x32/actions/ledpurple.png -share/apps/irkick/icons/hicolor/32x32/actions/ledred.png -share/apps/irkick/icons/hicolor/32x32/actions/ledyellow.png -share/apps/kcalc/kcalcui.rc -share/apps/kcharselect/kcharselectui.rc -share/apps/kconf_update/kcalcrc.upd -share/apps/kconf_update/kcharselect.upd -share/apps/kdf/kdfui.rc -share/apps/kdf/pics/delete.png -share/apps/kdf/pics/tick.png -share/apps/kedit/keditui.rc -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key1.png -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key2.png -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key3.png -share/apps/kgpg/icons/crystalsvg/16x16/actions/kgpg_key4.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_edit.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_export.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_gen.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_identity.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_import.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_info.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_photo.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_show.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_sign.png -share/apps/kgpg/icons/crystalsvg/22x22/actions/kgpg_term.png -share/apps/kgpg/kgpg.rc -share/apps/kgpg/listkeys.rc -share/apps/kgpg/pics/kgpg_anim.gif -share/apps/kgpg/pics/kgpg_blank.png -share/apps/kgpg/pics/kgpg_docked.gif -share/apps/kgpg/pics/kgpg_docked.png -share/apps/kgpg/pics/kgpg_fill.png -share/apps/kgpg/tips -share/apps/khexedit/khexeditui.rc -share/apps/khexedit/pics/hexdrag.png -share/apps/khexedit/pics/hexmask.png -share/apps/khexedit/pics/hexwrite.png -share/apps/khexedit2part/khexedit2partui.rc -share/apps/kicker/applets/kcharselectapplet.desktop -share/apps/kicker/extensions/ksim.desktop -share/apps/kjots/kjotsui.rc -share/apps/kjots/pics/filedel.png -share/apps/konqueror/servicemenus/encryptfile.desktop -share/apps/konqueror/servicemenus/encryptfolder.desktop -share/apps/kregexpeditor/pics/altn.png -share/apps/kregexpeditor/pics/anychar.png -share/apps/kregexpeditor/pics/autoverify.png -share/apps/kregexpeditor/pics/begline.png -share/apps/kregexpeditor/pics/characters.png -share/apps/kregexpeditor/pics/compound.png -share/apps/kregexpeditor/pics/endline.png -share/apps/kregexpeditor/pics/error.png -share/apps/kregexpeditor/pics/neglookahead.png -share/apps/kregexpeditor/pics/nonwordboundary.png -share/apps/kregexpeditor/pics/poslookahead.png -share/apps/kregexpeditor/pics/repeat.png -share/apps/kregexpeditor/pics/select.png -share/apps/kregexpeditor/pics/text.png -share/apps/kregexpeditor/pics/verify.png -share/apps/kregexpeditor/pics/wordboundary.png -share/apps/kregexpeditor/predefined/general/anything.regexp -share/apps/kregexpeditor/predefined/general/spaces.regexp -share/apps/ksim/monitors/DFree.desktop -share/apps/ksim/monitors/Lm_sensors.desktop -share/apps/ksim/monitors/Net.desktop -share/apps/ksim/monitors/Snmp.desktop -share/apps/ksim/monitors/cpu.desktop -share/apps/ksim/monitors/disk.desktop -share/apps/ksim/pics/clock.png -share/apps/ksim/pics/uptime.png -share/apps/ksim/themes/ksim/bg_chart.png -share/apps/ksim/themes/ksim/bg_grid.png -share/apps/ksim/themes/ksim/bg_meter.png -share/apps/ksim/themes/ksim/bg_panel.png -share/apps/ksim/themes/ksim/frame_bottom.png -share/apps/ksim/themes/ksim/frame_left.png -share/apps/ksim/themes/ksim/frame_right.png -share/apps/ksim/themes/ksim/frame_top.png -share/apps/ksim/themes/ksim/gkrellmrc -share/apps/ksim/themes/ksim/gkrellmrc_ksim -share/apps/ksim/themes/ksim/host/bg_meter.png -share/apps/ksim/themes/ksim/krell_meter.png -share/apps/ksim/themes/ksim/krell_panel.png -share/apps/ksim/themes/ksim/krell_slider.png -share/apps/ksim/themes/ksim/mail/decal_mail.png -share/apps/ksim/themes/ksim/mail/krell_mail.png -share/apps/ksim/themes/ksim/mail/krell_mail_daemon.png -share/apps/ksim/themes/ksim/net/decal_net_leds.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_closed.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/folder_open.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_closed.png -share/apps/kwalletmanager/icons/crystalsvg/22x22/actions/wallet_open.png -share/apps/kwalletmanager/kwalleteditor.rc -share/apps/kwalletmanager/kwalletmanager.rc -share/apps/profiles/klauncher.profile.xml -share/apps/profiles/konqueror.profile.xml -share/apps/profiles/noatun.profile.xml -share/apps/profiles/profile.dtd -share/apps/remotes/RM-0010.remote.xml -share/apps/remotes/cimr100.remote.xml -share/apps/remotes/hauppauge.remote.xml -share/apps/remotes/remote.dtd -share/apps/remotes/sherwood.remote.xml -share/apps/remotes/sonytv.remote.xml -share/autostart/irkick.desktop -share/autostart/kgpg.desktop -share/config.kcfg/ark.kcfg -share/config.kcfg/kcalc.kcfg -share/config.kcfg/kedit.kcfg -share/config.kcfg/kgpg.kcfg -share/config.kcfg/kjots.kcfg -share/config/ksim_panelextensionrc -share/doc/HTML/en/KRegExpEditor/altn.png -share/doc/HTML/en/KRegExpEditor/altntool.png -share/doc/HTML/en/KRegExpEditor/anychar.png -share/doc/HTML/en/KRegExpEditor/anychartool.png -share/doc/HTML/en/KRegExpEditor/begline.png -share/doc/HTML/en/KRegExpEditor/boundarytools.png -share/doc/HTML/en/KRegExpEditor/characters.png -share/doc/HTML/en/KRegExpEditor/charactertool.png -share/doc/HTML/en/KRegExpEditor/common -share/doc/HTML/en/KRegExpEditor/compound.png -share/doc/HTML/en/KRegExpEditor/compoundtool.png -share/doc/HTML/en/KRegExpEditor/endline.png -share/doc/HTML/en/KRegExpEditor/index.cache.bz2 -share/doc/HTML/en/KRegExpEditor/index.docbook -share/doc/HTML/en/KRegExpEditor/linestartendtool.png -share/doc/HTML/en/KRegExpEditor/lookaheadtools.png -share/doc/HTML/en/KRegExpEditor/neglookahead.png -share/doc/HTML/en/KRegExpEditor/nonwordboundary.png -share/doc/HTML/en/KRegExpEditor/poslookahead.png -share/doc/HTML/en/KRegExpEditor/repeat.png -share/doc/HTML/en/KRegExpEditor/repeattool.png -share/doc/HTML/en/KRegExpEditor/select.png -share/doc/HTML/en/KRegExpEditor/text.png -share/doc/HTML/en/KRegExpEditor/texttool.png -share/doc/HTML/en/KRegExpEditor/theEditor.png -share/doc/HTML/en/KRegExpEditor/wordboundary.png -share/doc/HTML/en/ark/common -share/doc/HTML/en/ark/index.cache.bz2 -share/doc/HTML/en/ark/index.docbook -share/doc/HTML/en/irkick/common -share/doc/HTML/en/irkick/index.cache.bz2 -share/doc/HTML/en/irkick/index.docbook -share/doc/HTML/en/kcalc/common -share/doc/HTML/en/kcalc/index.cache.bz2 -share/doc/HTML/en/kcalc/index.docbook -share/doc/HTML/en/kcalc/kcalc_on_Aix.txt -share/doc/HTML/en/kcalc/kcalc_on_OSF.txt -share/doc/HTML/en/kcharselect/common -share/doc/HTML/en/kcharselect/index.cache.bz2 -share/doc/HTML/en/kcharselect/index.docbook -share/doc/HTML/en/kcmlirc/common -share/doc/HTML/en/kcmlirc/index.cache.bz2 -share/doc/HTML/en/kcmlirc/index.docbook -share/doc/HTML/en/kcontrol/kcmlowbatcrit/common -share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.cache.bz2 -share/doc/HTML/en/kcontrol/kcmlowbatcrit/index.docbook -share/doc/HTML/en/kcontrol/kcmlowbatwarn/common -share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.cache.bz2 -share/doc/HTML/en/kcontrol/kcmlowbatwarn/index.docbook -share/doc/HTML/en/kcontrol/laptop/common -share/doc/HTML/en/kcontrol/laptop/index.cache.bz2 -share/doc/HTML/en/kcontrol/laptop/index.docbook -share/doc/HTML/en/kcontrol/powerctrl/common -share/doc/HTML/en/kcontrol/powerctrl/index.cache.bz2 -share/doc/HTML/en/kcontrol/powerctrl/index.docbook -share/doc/HTML/en/kdf/common -share/doc/HTML/en/kdf/index.cache.bz2 -share/doc/HTML/en/kdf/index.docbook -share/doc/HTML/en/kdf/kdf.png -share/doc/HTML/en/kdf/kdf_config.png -share/doc/HTML/en/kedit/common -share/doc/HTML/en/kedit/index.cache.bz2 -share/doc/HTML/en/kedit/index.docbook -share/doc/HTML/en/kfloppy/common -share/doc/HTML/en/kfloppy/index.cache.bz2 -share/doc/HTML/en/kfloppy/index.docbook -share/doc/HTML/en/kgpg/common -share/doc/HTML/en/kgpg/editor.png -share/doc/HTML/en/kgpg/index.cache.bz2 -share/doc/HTML/en/kgpg/index.docbook -share/doc/HTML/en/kgpg/keygen.png -share/doc/HTML/en/kgpg/keymanage.png -share/doc/HTML/en/kgpg/keys.png -share/doc/HTML/en/kgpg/kicker.png -share/doc/HTML/en/kgpg/options.png -share/doc/HTML/en/khexedit/common -share/doc/HTML/en/khexedit/index.cache.bz2 -share/doc/HTML/en/khexedit/index.docbook -share/doc/HTML/en/khexedit/khexedit1.png -share/doc/HTML/en/kinfocenter/blockdevices/common -share/doc/HTML/en/kinfocenter/blockdevices/index.cache.bz2 -share/doc/HTML/en/kinfocenter/blockdevices/index.docbook -share/doc/HTML/en/kjots/common -share/doc/HTML/en/kjots/index.cache.bz2 -share/doc/HTML/en/kjots/index.docbook -share/doc/HTML/en/ksim/common -share/doc/HTML/en/ksim/index.cache.bz2 -share/doc/HTML/en/ksim/index.docbook -share/doc/HTML/en/ktimer/common -share/doc/HTML/en/ktimer/index.cache.bz2 -share/doc/HTML/en/ktimer/index.docbook -share/doc/HTML/en/kwallet/common -share/doc/HTML/en/kwallet/index.cache.bz2 -share/doc/HTML/en/kwallet/index.docbook -share/icons/crystalsvg/128x128/apps/ark.png -share/icons/crystalsvg/128x128/apps/kdf.png -share/icons/crystalsvg/128x128/apps/kfloppy.png -share/icons/crystalsvg/128x128/apps/kregexpeditor.png -share/icons/crystalsvg/128x128/apps/ktimer.png -share/icons/crystalsvg/128x128/apps/kwalletmanager.png -share/icons/crystalsvg/128x128/apps/kwikdisk.png -share/icons/crystalsvg/16x16/apps/ark.png -share/icons/crystalsvg/16x16/apps/kcalc.png -share/icons/crystalsvg/16x16/apps/kcharselect.png -share/icons/crystalsvg/16x16/apps/kcmdf.png -share/icons/crystalsvg/16x16/apps/kdf.png -share/icons/crystalsvg/16x16/apps/kedit.png -share/icons/crystalsvg/16x16/apps/kfloppy.png -share/icons/crystalsvg/16x16/apps/kgpg.png -share/icons/crystalsvg/16x16/apps/khexedit.png -share/icons/crystalsvg/16x16/apps/kjots.png -share/icons/crystalsvg/16x16/apps/kregexpeditor.png -share/icons/crystalsvg/16x16/apps/ksim.png -share/icons/crystalsvg/16x16/apps/ktimer.png -share/icons/crystalsvg/16x16/apps/kwalletmanager.png -share/icons/crystalsvg/16x16/apps/kwikdisk.png -share/icons/crystalsvg/16x16/devices/ksim_cpu.png -share/icons/crystalsvg/22x22/apps/kgpg.png -share/icons/crystalsvg/22x22/apps/kwalletmanager.png -share/icons/crystalsvg/22x22/apps/kwikdisk.png -share/icons/crystalsvg/32x32/apps/ark.png -share/icons/crystalsvg/32x32/apps/kcalc.png -share/icons/crystalsvg/32x32/apps/kcmdf.png -share/icons/crystalsvg/32x32/apps/kdf.png -share/icons/crystalsvg/32x32/apps/kedit.png -share/icons/crystalsvg/32x32/apps/kfloppy.png -share/icons/crystalsvg/32x32/apps/kgpg.png -share/icons/crystalsvg/32x32/apps/khexedit.png -share/icons/crystalsvg/32x32/apps/kjots.png -share/icons/crystalsvg/32x32/apps/kregexpeditor.png -share/icons/crystalsvg/32x32/apps/ksim.png -share/icons/crystalsvg/32x32/apps/ktimer.png -share/icons/crystalsvg/32x32/apps/kwalletmanager.png -share/icons/crystalsvg/32x32/apps/kwikdisk.png -share/icons/crystalsvg/48x48/apps/ark.png -share/icons/crystalsvg/48x48/apps/kcalc.png -share/icons/crystalsvg/48x48/apps/kcharselect.png -share/icons/crystalsvg/48x48/apps/kdf.png -share/icons/crystalsvg/48x48/apps/kedit.png -share/icons/crystalsvg/48x48/apps/kfloppy.png -share/icons/crystalsvg/48x48/apps/kgpg.png -share/icons/crystalsvg/48x48/apps/khexedit.png -share/icons/crystalsvg/48x48/apps/kjots.png -share/icons/crystalsvg/48x48/apps/kregexpeditor.png -share/icons/crystalsvg/48x48/apps/ksim.png -share/icons/crystalsvg/48x48/apps/ktimer.png -share/icons/crystalsvg/48x48/apps/kwalletmanager.png -share/icons/crystalsvg/48x48/apps/kwikdisk.png -share/icons/crystalsvg/64x64/apps/ark.png -share/icons/crystalsvg/64x64/apps/kcalc.png -share/icons/crystalsvg/64x64/apps/kdf.png -share/icons/crystalsvg/64x64/apps/kedit.png -share/icons/crystalsvg/64x64/apps/kfloppy.png -share/icons/crystalsvg/64x64/apps/kjots.png -share/icons/crystalsvg/64x64/apps/kregexpeditor.png -share/icons/crystalsvg/64x64/apps/kwalletmanager.png -share/icons/crystalsvg/64x64/apps/kwikdisk.png -share/icons/crystalsvg/scalable/apps/ark.svgz -share/icons/crystalsvg/scalable/apps/kcalc.svgz -share/icons/hicolor/16x16/apps/irkick.png -share/icons/hicolor/22x22/apps/irkick.png -share/icons/hicolor/32x32/apps/irkick.png -share/icons/locolor/16x16/apps/irkick.png -share/icons/locolor/32x32/apps/irkick.png -share/services/ark_part.desktop -share/services/kbyteseditwidget.desktop -share/services/khexedit2part.desktop -share/services/kregexpeditorgui.desktop -share/services/kwallet_config.desktop -share/services/kwalletmanager_show.desktop -@dirrm share/doc/HTML/en/kwallet -@dirrm share/doc/HTML/en/ktimer -@dirrm share/doc/HTML/en/ksim -@dirrm share/doc/HTML/en/kjots -@dirrm share/doc/HTML/en/kinfocenter/blockdevices -@dirrm share/doc/HTML/en/khexedit -@dirrm share/doc/HTML/en/kgpg -@dirrm share/doc/HTML/en/kfloppy -@dirrm share/doc/HTML/en/kedit -@dirrm share/doc/HTML/en/kdf -@dirrm share/doc/HTML/en/kcontrol/powerctrl -@dirrm share/doc/HTML/en/kcontrol/laptop -@dirrm share/doc/HTML/en/kcontrol/kcmlowbatwarn -@dirrm share/doc/HTML/en/kcontrol/kcmlowbatcrit -@dirrm share/doc/HTML/en/kcmlirc -@dirrm share/doc/HTML/en/kcharselect -@dirrm share/doc/HTML/en/kcalc -@dirrm share/doc/HTML/en/irkick -@dirrm share/doc/HTML/en/ark -@dirrm share/doc/HTML/en/KRegExpEditor -@dirrm share/apps/remotes -@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22/actions -@dirrm share/apps/kwalletmanager/icons/crystalsvg/22x22 -@dirrm share/apps/kwalletmanager/icons/crystalsvg -@dirrm share/apps/kwalletmanager/icons -@dirrm share/apps/kwalletmanager -@dirrm share/apps/ksim/themes/ksim/net -@dirrm share/apps/ksim/themes/ksim/mail -@dirrm share/apps/ksim/themes/ksim/host -@dirrm share/apps/ksim/themes/ksim -@dirrm share/apps/ksim/themes -@dirrm share/apps/ksim/pics -@dirrm share/apps/ksim/monitors -@dirrm share/apps/ksim -@dirrm share/apps/kregexpeditor/predefined/general -@dirrm share/apps/kregexpeditor/predefined -@dirrm share/apps/kregexpeditor/pics -@dirrm share/apps/kregexpeditor -@dirrm share/apps/kjots/pics -@dirrm share/apps/kjots -@dirrm share/apps/khexedit2part -@dirrm share/apps/khexedit/pics -@dirrm share/apps/khexedit -@dirrm share/apps/kgpg/pics -@dirrm share/apps/kgpg/icons/crystalsvg/22x22/actions -@dirrm share/apps/kgpg/icons/crystalsvg/22x22 -@dirrm share/apps/kgpg/icons/crystalsvg/16x16/actions -@dirrm share/apps/kgpg/icons/crystalsvg/16x16 -@dirrm share/apps/kgpg/icons/crystalsvg -@dirrm share/apps/kgpg/icons -@dirrm share/apps/kgpg -@dirrm share/apps/kedit -@dirrm share/apps/kdf/pics -@dirrm share/apps/kdf -@dirrm share/apps/kcharselect -@dirrm share/apps/kcalc -@dirrm share/apps/irkick/icons/hicolor/32x32/actions -@dirrm share/apps/irkick/icons/hicolor/32x32 -@dirrm share/apps/irkick/icons/hicolor/16x16/actions -@dirrm share/apps/irkick/icons/hicolor/16x16 -@dirrm share/apps/irkick/icons/hicolor -@dirrm share/apps/irkick/icons -@dirrm share/apps/irkick -@dirrm share/apps/ark/icons/crystalsvg/32x32/actions -@dirrm share/apps/ark/icons/crystalsvg/32x32 -@dirrm share/apps/ark/icons/crystalsvg/22x22/actions -@dirrm share/apps/ark/icons/crystalsvg/22x22 -@dirrm share/apps/ark/icons/crystalsvg -@dirrm share/apps/ark/icons -@dirrm share/apps/ark -@dirrm include/ksim diff --git a/comms/mgetty+sendfax/files/mgettycfg.in b/comms/mgetty+sendfax/files/mgettycfg.in deleted file mode 100644 index 37ac6dec0b36..000000000000 --- a/comms/mgetty+sendfax/files/mgettycfg.in +++ /dev/null @@ -1,634 +0,0 @@ -#!/usr/bin/perl - -exit 0 if $ARGV[1] ne "POST-INSTALL"; -exit 0 if $ENV{'BATCH'}; - -print STDERR "\n\n\n =========== mgetty+sendfax configuration ===========\n\n"; -$prefix = $ENV{'PKG_PREFIX'}; -$sep = "~"; - -&read_config ("$prefix/etc/mgetty+sendfax/mgetty.config"); -foreach (keys(%var)) { - $var_m{$_} = $var{$_}; - delete $var{$_}; -} -&read_config ("$prefix/etc/mgetty+sendfax/sendfax.config"); -foreach (keys(%var)) { - $var_f{$_} = $var{$_}; -} - -$a = 1; -$devices = $var{'ports'} ? $var{'ports'} : "cuaa1"; -while ($a) { - $devices = &ask ("list of devices", $devices); - - $_ = $devices; - $w = 0; - foreach (split) { - if (! -c "/dev/$_" ) { - print STDERR "warning: device file /dev/$_ does not exist!\n"; - $w++; - } - } - if ($w) { - $a = 0 if (&yesno ("are you sure?" , "n") eq "y"); - } else { - $a = 0; - } -} - -open (TMP1, ">/tmp/mgetty.config.$$") || die "$!\n"; -open (TMP2, ">/tmp/sendfax.config.$$") || die "$!\n"; -$_ = join (":", $devices); -print TMP2 "fax-devices $_\n\n"; - -$_ = $devices; - -foreach $port (split) { - print STDERR "\n\n *** Configuring for port $port ***\n\n"; - print TMP1 "\nport $port\n"; - print TMP2 "\nport $port\n"; - &setdef ($port); -again: - &inq_m; - $settings_m = $settings; - &inq_f; - $settings_f = "fax-id modem-type switchbd $settings"; - goto again if (&confirm ($port) ne "y"); - &write_tmp; -} - -close (TMP1); -close (TMP2); -if ( -e "$prefix/etc/mgetty+sendfax/mgetty.config") { - system ("mv -f $prefix/etc/mgetty+sendfax/mgetty.config $prefix/etc/mgetty+sendfax/mgetty.config.old"); - system ("rm -f $prefix/etc/mgetty+sendfax/mgetty.config"); -} -if ( -e "$prefix/etc/mgetty+sendfax/sendfax.config") { - system ("mv -f $prefix/etc/mgetty+sendfax/sendfax.config $prefix/etc/mgetty+sendfax/sendfax.config.old"); - system ("rm -f $prefix/etc/mgetty+sendfax/sendfax.config"); -} -system ("mv -f /tmp/mgetty.config.$$ $prefix/etc/mgetty+sendfax/mgetty.config"); -system ("mv -f /tmp/sendfax.config.$$ $prefix/etc/mgetty+sendfax/sendfax.config"); - -open (F, ">$prefix/etc/mgetty+sendfax/faxheader"); -print F "\n FAX FROM: **not configured** $def{fax-id} TO: \@T\@ PAGE: \@P\@ OF \@M\@ \n"; -close (F); - - -print STDERR "\n\nediting /etc/ttys...\n"; - -open (F, "/etc/ttys"); -@ttys = <F>; -close (F); - -foreach $tty (@ttys) { - $_ = $devices; - foreach $port (split) { - if ($tty =~ /^\s*$port/) { - print STDERR "replacing line $tty"; - $tty = "$port\t\"$prefix/sbin/mgetty\"\tunknown on insecure\n"; - $replaced{$port} = 1; - } - } -} -$_ = $devices; -foreach $port (split) { - if (!$replaced{$port}) { - print STDERR "adding port $port\n"; - push (@ttys, "$port\t\"$prefix/sbin/mgetty\"\tunknown on insecure\n"); - } -} -system ("mv -f /etc/ttys /etc/ttys.old"); -open (F, ">/etc/ttys"); -print F @ttys; -close (F); - -# install new_fax -if (-e "$prefix/lib/mgetty+sendfax/lib/new_fax") { - print STDERR "$prefix/lib/mgetty+sendfax/lib/new_fax already exists - not changed\n"; -} else { - print STDERR "installing $prefix/lib/mgetty+sendfax/lib/samples/new_fax.mail as new_fax\n"; - open (F, "$prefix/lib/mgetty+sendfax/lib/samples/new_fax.mail"); - open (G, "$prefix/lib/mgetty+sendfax/lib/new_fax"); - while (<F>) { - s:/usr/local/bin/:$prefix:; - s:/usr/lib/sendmail:/usr/sbin/sendmail:; - s/^MAILTO=.*/$def{'notify'}\n/; - print G "$_"; - } - close F; - close G; - chmod 0755, "$prefix/lib/mgetty+sendfax/lib/new_fax"; -} -print STDERR "\n\n*** WARNING the directory /var/spool/fax/outgoing/ is world writable.\n*** This is potentially insecure\n"; - -exit 0; - -sub confirm { - $_ = shift; - print STDERR "\n\n\tSettings for port $_\n\t------------------------\n"; - $_ = $settings_m; - foreach (split) { - print STDERR "\t$_ $def{$_}\n" if ($def{$_}); - } - $_ = $settings_f; - foreach (split) { - print STDERR "\t$_ $def_f{$_}\n" if ($def_f{$_}); - } - return &yesno ("OK?", "y"); -} - -sub write_tmp { - $_ = $settings_m; - foreach (split) { - print TMP1 "$_ $def{$_}\n" if ($def{$_}); - } - $_ = $settings_f; - foreach (split) { - print TMP2 "$_ $def_f{$_}\n" if ($def_f{$_}); - } -} - -sub inq_m { - $settings = "debug"; - $def{'debug'} = 4 if !$def{'debug'}; - $def{'debug'} = &ask (" - `debug (mgetty)' - This sets the amount of logging `mgetty' will do. A good value is - 4, more details are seen with `5', and `9' is really noisy. Try - it! The log data is written to the file `/tmp/log_mg.cuaxx'.", - $def{'debug'}); - - $settings .= " fax-id"; - $def{'fax-id'} = "00 00 000000" if ! $def{'fax-id'}; - $def{'fax-id'} = &ask (" - `fax-id' - This sets the fax station ID used in fax mode to identify your - site to the caller (usually this is simply your fax phone number). - ", $def{'fax-id'}) ; - $def_f{'fax-id'} = $def{'fax-id'} ; - - $settings .= " speed"; - $def{'speed'} = 38400 if !$def{'speed'}; - $def{'speed'} = &ask (" - `speed' - Specify, as integer value, the port speed to use. Default is - 38400. If the given speed is not valid, `mgetty' complains loudly - and exits.", $def{'speed'}); - - $settings .= " switchbd"; - $def{'switchbd'} = 0 if !$def{'switchbd'}; - $def{'switchbd'} = &ask (" - `switchbd' - Some modems, mainly Rockwell chipsets, switch to 19200 bps when - entering fax mode. Others may need other speed switches (but I - know none). If your modem is Rockwell based, try `switchbd 19200' - if fax reception doesn't work. (*Warning:* if this is set wrongly, - fax reception will definitely fail. For most sane modems, you do - *not need* this.). Set speed or `0'", $def{'switchbd'}); - $def_f{'switchbd'} = $def{'switchbd'}; - - $settings .= " direct"; - $def{'direct'} = "NO" if !$def{'direct'}; - $def{'direct'} = &ask (" - `direct' - Tells mgetty that it is running on a direct line. Mgetty won't try - to initialize any modem, nor will it wait for `RING'. It will just - wait for any character, and then output the issue file and login - prompt. This option is used if you want to connect to machines via - nullmodem cable.", $def{'direct'}); - - $settings .= " blocking"; - $def{'blocking'} = "NO" if !$def{'blocking'}; - $def{'blocking'} = &ask (" - `blocking' - Tells mgetty to open the device in `blocking' mode, that is, the - `open()' system call won't succeed until carrier detect is set. - This is set if `mgetty' is called as `getty'. I'm not sure whether - it's very useful, but I include it for completeness", $def{'blocking'}); - - $settings .= " port-owner"; - $def{'port-owner'} = "uucp" if !$def{'port-owner'}; - $def{'port-owner'} = &ask (" - `port-owner' - If set, mgetty will `chown' the tty line to the given username (you - can specify a string or an integer uid, but the integer must be - valid). This is highly recommended for security purposes: only - give port access to those users you trust not to misuse your modem - lines!", $def{'port-owner'}); - - $settings .= " port-group"; - $def{'port-group'} = "uucp" if !$def{'port-group'}; - $def{'port-group'} = &ask (" - `port-group' - If set, mgetty will `chgrp' the tty line to this group id (which - can be given as group name, or as integer gid). If it's not given, - or not valid, the primary group id of `port-owner' - will be used.", $def{'port-group'}); - - $settings .= " port-mode"; - $def{'port-mode'} = "0660" if !$def{'port-mode'}; - $def{'port-mode'} = &ask (" - `port-mode' - Specifies the permissions to `chmod' the device to. - *Never* make a modem device world-accessible, better use `0660' - or even `0600'.", $def{'port-mode'} ); - - $settings .= " toggle-dtr"; - $def{'toggle-dtr'} = "YES" if !$def{'toggle-dtr'}; - $def{'toggle-dtr'} = &ask (" - `toggle-dtr' - Tells mgetty whether it should lower the DTR line upon startup to - reset modem. Default is `yes', but some (few) modems react - allergic to that and crash.", $def{'toggle-dtr'}); - - $settings .= " toggle-dtr-waittime"; - $def{'toggle-dtr-waittime'} = 500 if !$def{'toggle-dtr-waittime'}; - $def{'toggle-dtr-waittime'} = &ask (" - `toggle-dtr-waittime' - Specifies the time (in ms) to hold the DTR line low.", $def{'toggle-dtr-waittime'} ); - - $settings .= " data-only"; - $def{'data-only'} = "NO" if !$def{'data-only'}; - $def{'data-only'} =&ask (" - `data-only' - Tells `mgetty' to forget about faxing and only use the data part of - the modem. Default is `false'. You need this if your modem can't - distinguish incoming fax and data calls.", $def{'data-only'} ); - - $settings .= " fax-only"; - $def{'fax-only'} = "NO" if !$def{'fax-only'}; - $def{'fax-only'} = &ask (" - `fax-only' - Tells `mgetty' to put the modem in fax-only mode. You need this if - your modem can't distinguish incoming fax and data calls, but you - need fax more important than data; and you need it if you want to - disable data calls for security reasons (this could be achieved - via `login.config' as well)", $def{'fax-only'}); - - $settings .= " modem-type"; - $def{'modem-type'} = "auto" if ! $def{'modem-type'}; - $def{'modem-type'} = &ask (" - `modem-type' - Specifies the kind of modem connected to the port. Valid options are: - * auto - Mgetty will detect the modem type itself (which may occasionally - be not desirable, or it may fail on old modem equipment). - * c2.0 - Modem is a CLASS 2.0 fax mode. Works better than class 2, if - both are available, because its better standardized. Known to - work with USR and ZyXEL. - * cls2 - Modem is a CLASS 2 fax modem, mgetty will not try class 2.0. - * data - Do not try fax initialization - There is no way (yet) to tell mgetty to use *only* fax mode and - refuse data calls with this option, use the `fax-only true' - statement for that.", $def{'modem-type'}); - $def_f{'modem-type'} = $def{'modem-type'}; - - $settings .= " init-chat"; - $def{'init-chat'} = '"" ATS0=0Q0&D3&C1 OK' if ! $def{'init-chat'}; - $def{'init-chat'} = &ask (" - `init-chat' - Tells mgetty the chat sequence to use for initializing the modem. - *Warning*: the sequence starts with *expect*, which will in most - cases be `\"\"' (nothing). This ordering was chosen because UUCP - does it this way, and I wanted to avoid confusion here. - - Example: - - \"\" \\d\\d\\d+++\\d\\d\\dATQ0E1V1H0 OK ATL0M0S0=0 OK AT&K3 OK - init sequence", $def{'init-chat'}); - - $settings .= " force-init-chat"; - $def{'force-init-chat'} = "" if !$def{'force-init-chat'}; - $def{'force-init-chat'} = &ask (" - `force-init-chat' - In some cases, the modem can get stuck in a mode where it won't - react to a simple `AT' command. Usually this happens because the - modem is set to ignore a DTR drop and still has a data connection - to the other side. If you use a voice modem, it could be stuck in - voice mode. - - In these situations, the normal `init-chat' will time out, because - the modem won't send the proper responses back. - - To get the modem back into a sane state, you can use the - `force-init-chat' chat sequence. The default setup will send the - DLE ETX characters, to get voice modems back to life, and then the - `(pause)+++(pause)ATH0' sequence to get the modem back from data - mode to command mode. - - You could prepend this sequence to `init-chat' (it wouldn't harm), - but especially the pauses around the +++ sequence makes this - undesirable slow.", $def{'force-init-chat'}); - - $settings .= " modem-check-time"; - $def{'modem-check-time'} = 3600 if ! $def{'modem-check-time'}; - $def{'modem-check-time'} = &ask (" - `modem-check-time' - Some modems have the nasty tendency to crash silently. With this - option, you tell `mgetty' to check every SECONDS seconds with a - simple `AT...OK' sequence whether the modem still reacts. If not, - `mgetty' will restart itself and do a full modem reset.", $def{'modem-check-time'}); - - $settings .= " rings"; - $def{'rings'} = 1 if !$def{'rings'}; - $def{'rings'} = &ask (" - `rings' - Sets the number of `RING' messages to wait for, before mgetty - picks up the phone. *Warning:* if your modem auto-answers, for - whatever reason, set this to something *different* than the - value set with `ATS0=mmm', otherwise the modems autoanswer and - mgettys manual answer will collide (most modems hang up if a - command is received during auto-answer)", $def{'rings'}); - - - $settings .= " answer-chat"; - $def{'answer-chat'} = '"" ATA CONNECT \c \r' if !$def{'answer-chat'}; - $def{'answer-chat'} =&ask (" - `answer-chat' - This is the command sequence that is used to answer a phone call. - Usually you can leave it at the default ` \"\" ATA CONNECT \\c \\r ', - but for some modems you need `ATS0=1' in place of `ATA' (ATA not - allowed). The extra `\\r' expect string is needed that the code can - grab the full CONNECT XYZ\\R string. It will work without the \\r, - but then the logging information will be less detailed. *Right now, - \\r won't work at all, it's not implemented yet. Don't use it.* - ", $def{'answer-chat'} ); - - $settings .= " answer-chat-timeout"; - $def{'answer-chat-timeout'} = 80 if !$def{'answer-chat-timeout'}; - $def{'answer-chat-timeout'} = &ask (" - `answer-chat-timeout' - During the ANSWER-CHAT, each \"expect\" string must be seen in the - time specified here. Default is 80 seconds. This time should be at - least some 5 seconds longer than the time set with the `ATS7=...' - modem setup command.", $def{'answer-chat-timeout'}); - - $settings .= " autobauding"; - $def{'autobauding'} = "NO" if !$def{'autobauding'}; - $def{'autobauding'} = &ask (" - `autobauding' - Some modems switch their DTE line speed to the communication line - speed after connecting, e.g., after sending `CONNECT 2400', the - modem switches to 2400 bps. Newer modems usually have a switch to - \"lock\" a DTE baud rate, which is strongly recommended. If your - modem insists on doing this speed switch, setting `autobauding' to - YES will make mgetty behave accordingly.", $def{'autobauding'}); - - $settings .= " ringback"; - $def{'ringback'} = "NO" if !$def{'ringback'} ; - $def{'ringback'} = &ask (" - `ringback' - If you have to put your modem and your telephone on the same phone - line, you can switch on \"ringback\" or \"ring-twice\". This means, - mgetty won't answer the phone on the first call, but remember the - call, and pick up on the second call (if it comes in the time - specified by `ringback-time').", $def{'ringback'} ); - - $settings .= " ringback-time"; - $def{'ringback-time'} = "30" if !$def{'ringback-time'} ; - $def{'ringback-time'} = &ask (" - `ringback-time' - This setting specifies how much time may pass between the first - and the second call if \"ringback\" is active.", $def{'ringback-time'}); - - $settings .= " ignore-carrier"; - $def{'ignore-carrier'} = "false" if !$def{'ignore-carrier'} ; - $def{'ignore-carrier'} = &ask (" - `ignore-carrier' - - If your Modem does not assert the DCD (carrier detect) line, or the - serial port or cable or serial driver is broken, it is possible - that `mgetty' or `login' will block after a successful CONNECT - (that means: everything seems to work, but suddenly nothing is sent - to the port anymore. Depending on the operating system used, this - can be before printing the `/etc/issue' file or not before printing - the `password:' prompt. - - To work around this, you can switch off the carrier detection in - software: set `ignore-carrier true'. Default is `false'. - - *WARNING:* If you use this, your system won't be able to detect - when a caller just hangs up instead of cleanly logging out. This - may result in hanging modems, etc.", $def{'ignore-carrier'}); - - $settings .= " issue-file"; - $def{'issue-file'} = "/etc/issue" if !$def{'issue-file'} ; - $def{'issue-file'} = &ask (" - `issue-file' - This is the file printed before the login prompt.", $def{'issue-file'}); - - $settings .= " prompt-waittime"; - $def{'prompt-waittime'} = "500" if !$def{'prompt-waittime'} ; - $def{'prompt-waittime'} = &ask (" - `prompt-waittime' - This specifies how long `mgetty' will wait for modem and line to - settle down (in ms) before printing issue file and login prompt", - $def{'prompt-waittime'}); - - $settings .= " login-prompt"; - $def{'login-prompt'} = "@!login: " if !$def{'login-prompt'} ; - $def{'login-prompt'} = &ask(" - `login-prompt' - This specifies the login prompt that mgetty will output. Some - special characters in this string (and in the issue file, btw) are - recognized and replaced by something else: - * @ system name - * \\n newline - * \\r carriage return - * \\g bell - * \\b backspace (ascii 010) - * \\f form feed (ascii 013) - * \\t TAB - * \\P (and \\L) port name (e.g. ttyS0) - * \\C date and time, in \"ctime()\" format - * \\I Connection string (e.g. 2400/REL) - * \\N (and \\U) number of users currently logged in - * \\S Port speed (e.g. 38400) - * \\D current date in dd/mm/yy format - * \\T current time in hh:mm:ss format - * \\DIGIT character with the specified octal code - - The maximum lenght of the login prompt is limited to 140 - characters (after expansion).", $def{'login-prompt'}); - - $settings .= " login-time"; - $def{'login-time'} = 240 if !$def{'login-time'}; - $def{'login-time'} = &ask (" - `login-time' - This specifies the maximum time the user can take to log in. If no - login has occured after that time, `mgetty' will hang up.", - $def{'login-time'}); - - $settings .= " fax-server-file"; - $def{'fax-server-file'} = &ask (" - `fax-server-file' - Specifies the fax file(s) that is to be sent if someone else calls - your modem in *fax polling mode*, that is, the caller *receives* a - document. - - Normally, the file given is a text file, containing the list of G3 - files to send to the calling machine, one file per line. Comment - lines (starting with \"#\") are ignored. For backward compatibility, - `mgetty' does check whether the named file is a G3 file itself, in - which case this file is sent directly (but then, you can only send - one page). - - Not all modems support fax poll *server* mode, I know that the - ZyXEL and MultiTech do.", $def{'fax-server-file'}); - - $settings .= " diskspace"; - $def{'diskspace'} = 1024 if !$def{'diskspace'}; - $def{'diskspace'} = &ask (" - `diskspace' - This setting tells mgetty the minimum amount of disk space (in KB) that - has to be available in the fax spool directory for fax reception - to be allowed.", $def{'diskspace'}); - - $settings .= " notify"; - $def{'notify'} = "faxadmin" if !$def{'notify'}; - $def{'notify'} = &ask (" - `notify' - This is the address that will get mails if a fax is received. Not - fully tested.", $def{'notify'}); - - $settings .= " fax-owner"; - $def{'fax-owner'} = "uucp" if !$def{'fax-owner'}; - $def{'fax-owner'} = &ask (" - `fax-owner' - If set, mgetty will `chown' the received files to the given username - (you can specify a string or an integer uid, but the integer must be - valid).", $def{'fax-owner'}); - - $settings .= " fax-group"; - $def{'fax-group'} = "modem" if !$def{'fax-group'}; - $def{'fax-group'} = &ask (" - `fax-group' - If set, mgetty will `chgrp' the received files to this group id - (which can be given as group name, or as integer gid).", $def{'fax-group'}); - - $settings .= " fax-mode"; - $def{'fax-mode'} = "0660" if !$def{'fax-mode'}; - $def{'fax-mode'} = &ask (" - `fax-mode' - Specifies the permissions to `chmod' the received files.", $def{'fax-mode'}); -} -sub inq_f { - $settings = "debug"; - $def_f{'debug'} = 4 if !$def_f{'debug'}; - $def_f{'debug'} = &ask (" - `debug (sendfax)' - controls the amount of information written into the fax log file. - `0' means \"totally silent\" (not even errors are written), `9' - is really noisy. I usually use `3' or `4' in normal use, and `6' - for debugging.", $def_f{'debug'}); - - $settings .= " modem-init"; - $def{'modem-init'} = &ask (" - `modem-init' - Specifies an `AT...' command that is to be sent to the modem right - at the *beginning* of all modem talk (even before setting the modem - into fax mode, so this could be an `ATZ' if you want to reset the - modem).", ""); - - $settings .= " modem-handshake"; - $def_f{'modem-handshake'} = "AT&H3" if !$def_f{'modem-handshake'}; - $def_f{'modem-handshake'} = &ask (" - `modem-handshake' - Specifies an `AT...' command that will be sent to the modem at the - *end* of the modem initialization, right before dialing. *Do not - use ATZ or such here*, since resetting the modem will switch off - fax mode.", $def_f{'modem-handshake'}); - - $settings .= " max-tries"; - $def_f{'max-tries'} = 3 if !$def_f{'max-tries'}; - $def_f{'max-tries'} = &ask (" - `max-tries' - Specify the maximum number of tries per page if the receiving end - reports reception errors. If NNN tries do not suffice to - successfully transmit a page, `sendfax' will give up or simply go - on, depending on the setting of `max-tries-continue' (see below). - If this is set to `0', `sendfax' will ignore retransmission - requests and simply go on.", $def_f{'max-tries'}); - - $settings .= " max-tries-continue"; - $def_f{'max-tries-continue'} = "YES" if !$def_f{'max-tries-continue'}; - $def_f{'max-tries-continue'} = &ask (" - `max-tries-continue' - After the maximum number of tries for one page are reached, - `sendfax' can report an error and abort (`max-tries-continue NO'), - or go on with the next page (YES). - - For \"mission critical\" faxes, I'd set it to NO, but since the page - quality is most often quite good even if reported as \"page bad\", - the default is YES.", $def_f{'max-tries-continue'}); - - $settings .= " speed (fax)"; - $def_f{'speed'} = 38400 if ! $def_f{'speed'}; - $def_f{'speed'} = &ask (" - `speed' - Set the port speed to use for fax send operations. Usually, - `38400' is a good choice, but a few dumb modems (for example, some - based on rockwell chipsets) need `19200' or even `9600'. A few - modems can go higher, but `sendfax' may not support it, and it may - not always work.", $def_f{'speed'}); - - $settings .= " dial-prefix"; - $def_f{'dial-prefix'} = "ATD" if !$def_f{'dial-prefix'}; - $def_f{'dial-prefix'} = &ask (" - `dial-prefix' - This is the command used for dialing out. Usually this will be - something simple, as `ATD' or `ATDP', but if you have an unusual - setup, it could also be something like `ATX0DP0;X4DT' (meaning: - switch off dial-tone detection, pulse-dial `0', back to command - mode, switch on dial-tone detection, and go ahead dialing with - touch tones). The phone number will be sent right after the - `dial-prefix'.", $def_f{'dial-prefix'}); - - $settings .= " poll-dir"; - $def_f{'poll-dir'} = "./" if !$def_f{'poll-dir'}; - $def_f{'poll-dir'} = &ask (" - `poll-dir' - This is used to specify a directory where polled faxes (wheather - maps and such) are to be saved into. Default is the current - directory.", $def_f{'poll-dir'}); - - $settings .= " normal-res"; - $def_f{'normal-res'} = "NO" if !$def_f{'normal-res'}; - $def_f{'normal-res'} = &ask (" - `normal-res' - If set to `yes' or `true' (boolean), `sendfax' won't attempt to - make a fax connection in \"fine resolution\" mode. Normally you - won't need to use that option, since `faxrunq' will set the `-n' - switch if needed.", $def_f{'normal-res'}); - - $settings .= " verbose"; - $def_f{'verbose'} = "NO" if !$def_f{'verbose'}; - $def_f{'verbose'} = &ask (" - `verbose' - If set to `yes' or `true', `sendfax' will output progress reports - on stdout, if set to `no', `sendfax' will only print error and - warning messages.", $def_f{'verbose'}); -} -sub setdef { - local ($p, $l); - $p = shift; - $l = length ($p) + 1; - foreach (keys(%var_m)) { - $def{$_} = substr ($var_m{$_}, $l) if ($var_m{$_} =~ /^$p/); - } - foreach (keys(%var_m)) { - $def{$_} = substr ($var_m{$_}, 1) if (!$def{$_} && $var_m{$_} =~ /^$sep/); - } - foreach (keys(%var_f)) { - $def_f{$_} = substr ($var_f{$_}, $l) if ($var_f{$_} =~ /^$p/); - } - foreach (keys(%var_m)) { - $def_f{$_} = substr ($var_f{$_}, 1) if (!$def_f{$_} && $var_f{$_} =~ /^$sep/); - } -} -sub ask { - ($info, $default, $x) = @_; - print STDERR "\n$info: "; - print STDERR "[$default] " if ($default); - $_ = <STDIN>; - s/^\s*//; - chop; - if ($_ eq "") { - return $default; - } - return $_; -} -sub read_config { - local ($conf, $port, $a, $b); - - $conf = shift; - $port = $sep; - if ( -f $conf) { - open (F, $conf) || die "$!\n"; - while (<F>) { - chop; - s/^\s*//; - next if /^#/; - next if /^$/; - ($a, $b) = split (/[ \t\n]+/, $_, 2); - if ($a eq "port") { - $port = $b; - $var{'ports'} .= "$port "; - } else { - $var{$a} = "$port $b"; - } - } - close F; - } -} - -sub yesno { - print STDERR "$_[0]: "; - print STDERR "[$_[1]] " if ($_[1]); - $_ = <STDIN>; - chop; - $_ = $_[1] if ! $_; - return "y" if /^[Yy].*/; - return "n"; -} diff --git a/comms/spandsp-devel/Makefile b/comms/spandsp-devel/Makefile deleted file mode 100644 index 4b2660ea9803..000000000000 --- a/comms/spandsp-devel/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: spandsp -# Date created: 23 June 2005 -# Whom: wlloyd@slap.net -# -# $FreeBSD$ -# - -PORTNAME= spandsp -DISTVERSION= 0.0.2pre18 -CATEGORIES= comms -MASTER_SITES= ftp://soft-switch.org/pub/spandsp/${PORTNAME}-${DISTVERSION}/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= pav - -MAINTAINER= ports@FreeBSD.org -COMMENT= Fax DSP library for Asterisk - -LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff - -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/pre.*$//} - -USE_GMAKE= yes -USE_REINPLACE= yes - -USE_LIBTOOL_VER= 15 -CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -INSTALLS_SHLIB= yes - -post-patch: - @${FIND} ${WRKSRC} -name *.c | ${XARGS} ${REINPLACE_CMD} -e 's|<stdint.h>|<inttypes.h>|' - -.include <bsd.port.mk> diff --git a/comms/spandsp-devel/distinfo b/comms/spandsp-devel/distinfo deleted file mode 100644 index fbef42a71658..000000000000 --- a/comms/spandsp-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (spandsp-0.0.2pre18.tar.gz) = b01f2fdd47f30b0b80343ed2f75a7199 -SIZE (spandsp-0.0.2pre18.tar.gz) = 1288267 diff --git a/comms/spandsp-devel/files/patch-src-Makefile.in b/comms/spandsp-devel/files/patch-src-Makefile.in deleted file mode 100644 index 3b8f9a6f252d..000000000000 --- a/comms/spandsp-devel/files/patch-src-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in~ Thu Apr 28 09:03:02 2005 -+++ src/Makefile.in Thu Jun 23 15:27:14 2005 -@@ -211,7 +211,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - MAINTAINERCLEANFILES = Makefile.in --INCLUDES = -I$(top_buildir) -+#INCLUDES = -I$(top_buildir) - lib_LTLIBRARIES = libspandsp.la - libspandsp_la_SOURCES = adsi.c \ - awgn.c \ diff --git a/comms/spandsp-devel/files/patch-src-playout.c b/comms/spandsp-devel/files/patch-src-playout.c deleted file mode 100644 index 2674f62f0de3..000000000000 --- a/comms/spandsp-devel/files/patch-src-playout.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/playout.c~ Fri Feb 4 14:19:30 2005 -+++ src/playout.c Thu Jun 23 15:35:06 2005 -@@ -37,6 +37,7 @@ - #include <stdlib.h> - #include <string.h> - #include <limits.h> -+#include <sys/types.h> - - #include "spandsp/telephony.h" - #include "spandsp/playout.h" diff --git a/comms/spandsp-devel/files/patch-src-power_meter.c b/comms/spandsp-devel/files/patch-src-power_meter.c deleted file mode 100644 index 5209632685e7..000000000000 --- a/comms/spandsp-devel/files/patch-src-power_meter.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/power_meter.c.orig Thu Jun 30 22:40:33 2005 -+++ src/power_meter.c Thu Jun 30 22:41:05 2005 -@@ -72,6 +72,10 @@ - } - /*- End of function --------------------------------------------------------*/ - -+#ifndef INFINITY -+#define INFINITY (float)HUGE_VAL -+#endif -+ - float power_meter_dbm0(power_meter_t *meter) - { - float val; diff --git a/comms/spandsp-devel/files/patch-src-spandsp-dc_restore.h b/comms/spandsp-devel/files/patch-src-spandsp-dc_restore.h deleted file mode 100644 index d2f63ad0d8e4..000000000000 --- a/comms/spandsp-devel/files/patch-src-spandsp-dc_restore.h +++ /dev/null @@ -1,14 +0,0 @@ ---- src/spandsp/dc_restore.h.orig Tue Jan 18 15:05:48 2005 -+++ src/spandsp/dc_restore.h Thu Jun 30 22:35:33 2005 -@@ -85,6 +85,11 @@ - } - /*- End of function --------------------------------------------------------*/ - -+#ifndef INT16_MAX -+#define INT16_MAX 0x7fff -+#define INT16_MIN (-0x7fff-1) -+#endif -+ - static inline int16_t saturate(int32_t amp) - { - if (amp > INT16_MAX) diff --git a/comms/spandsp-devel/files/patch-src-t31.c b/comms/spandsp-devel/files/patch-src-t31.c deleted file mode 100644 index 7ffd6abfd2d6..000000000000 --- a/comms/spandsp-devel/files/patch-src-t31.c +++ /dev/null @@ -1,28 +0,0 @@ ---- src/t31.c.orig Thu Jun 30 23:07:14 2005 -+++ src/t31.c Thu Jun 30 23:10:28 2005 -@@ -51,19 +51,12 @@ - t31_profile_t profiles[3] = - { - { -- .echo = TRUE, -- .verbose = TRUE, -- .result_code_format = ASCII_RESULT_CODES, -- .pulse_dial = FALSE, -- .double_escape = FALSE, -- .s_regs[0] = 0, -- .s_regs[3] = '\r', -- .s_regs[4] = '\n', -- .s_regs[5] = '\b', -- .s_regs[6] = 1, -- .s_regs[7] = 60, -- .s_regs[8] = 5, -- .s_regs[10] = 0 -+ TRUE, -+ TRUE, -+ ASCII_RESULT_CODES, -+ FALSE, -+ FALSE, -+ { 0, 0, 0, '\r', '\n', '\b', 1, 60, 5, 0 } - } - }; - diff --git a/comms/spandsp-devel/pkg-descr b/comms/spandsp-devel/pkg-descr deleted file mode 100644 index a19fea158bbc..000000000000 --- a/comms/spandsp-devel/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Spandsp is a DSP library to support fax functions in the Asterisk PBX. -Basically it implements a software fax machine to fax out or in. - -WWW: http://www.soft-switch.org/ diff --git a/comms/spandsp-devel/pkg-plist b/comms/spandsp-devel/pkg-plist deleted file mode 100644 index 513350cfab0c..000000000000 --- a/comms/spandsp-devel/pkg-plist +++ /dev/null @@ -1,57 +0,0 @@ -include/spandsp.h -include/spandsp/adsi.h -include/spandsp/alaw_ulaw.h -include/spandsp/arctan2.h -include/spandsp/awgn.h -include/spandsp/bert.h -include/spandsp/biquad.h -include/spandsp/complex.h -include/spandsp/complex_filters.h -include/spandsp/dc_restore.h -include/spandsp/dds.h -include/spandsp/ec_disable_detector.h -include/spandsp/echo.h -include/spandsp/fir.h -include/spandsp/fsk.h -include/spandsp/g168models.h -include/spandsp/hdlc.h -include/spandsp/ima_adpcm.h -include/spandsp/mmx.h -include/spandsp/modem_echo.h -include/spandsp/oki_adpcm.h -include/spandsp/oss.h -include/spandsp/playout.h -include/spandsp/plc.h -include/spandsp/power_meter.h -include/spandsp/queue.h -include/spandsp/schedule.h -include/spandsp/sig_tone.h -include/spandsp/super_tone_rx.h -include/spandsp/super_tone_tx.h -include/spandsp/t30.h -include/spandsp/t30_fcf.h -include/spandsp/t31.h -include/spandsp/t35.h -include/spandsp/t4.h -include/spandsp/telephony.h -include/spandsp/time_scale.h -include/spandsp/timing.h -include/spandsp/tone_detect.h -include/spandsp/tone_generate.h -include/spandsp/v17rx.h -include/spandsp/v17tx.h -include/spandsp/v22bis.h -include/spandsp/v27ter_rx.h -include/spandsp/v27ter_tx.h -include/spandsp/v29rx.h -include/spandsp/v29tx.h -include/spandsp/v42.h -include/spandsp/v8.h -include/spandsp/vector.h -lib/libspandsp.a -lib/libspandsp.so -lib/libspandsp.so.0 -%%DATADIR%%/global-tones.xml -%%DATADIR%%/tones.dtd -@dirrm %%DATADIR%% -@dirrm include/spandsp diff --git a/comms/spandsp-devel5/Makefile b/comms/spandsp-devel5/Makefile deleted file mode 100644 index 4b2660ea9803..000000000000 --- a/comms/spandsp-devel5/Makefile +++ /dev/null @@ -1,34 +0,0 @@ -# New ports collection makefile for: spandsp -# Date created: 23 June 2005 -# Whom: wlloyd@slap.net -# -# $FreeBSD$ -# - -PORTNAME= spandsp -DISTVERSION= 0.0.2pre18 -CATEGORIES= comms -MASTER_SITES= ftp://soft-switch.org/pub/spandsp/${PORTNAME}-${DISTVERSION}/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= pav - -MAINTAINER= ports@FreeBSD.org -COMMENT= Fax DSP library for Asterisk - -LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff - -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/pre.*$//} - -USE_GMAKE= yes -USE_REINPLACE= yes - -USE_LIBTOOL_VER= 15 -CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" - -INSTALLS_SHLIB= yes - -post-patch: - @${FIND} ${WRKSRC} -name *.c | ${XARGS} ${REINPLACE_CMD} -e 's|<stdint.h>|<inttypes.h>|' - -.include <bsd.port.mk> diff --git a/comms/spandsp-devel5/distinfo b/comms/spandsp-devel5/distinfo deleted file mode 100644 index fbef42a71658..000000000000 --- a/comms/spandsp-devel5/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (spandsp-0.0.2pre18.tar.gz) = b01f2fdd47f30b0b80343ed2f75a7199 -SIZE (spandsp-0.0.2pre18.tar.gz) = 1288267 diff --git a/comms/spandsp-devel5/files/patch-src-Makefile.in b/comms/spandsp-devel5/files/patch-src-Makefile.in deleted file mode 100644 index 3b8f9a6f252d..000000000000 --- a/comms/spandsp-devel5/files/patch-src-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/Makefile.in~ Thu Apr 28 09:03:02 2005 -+++ src/Makefile.in Thu Jun 23 15:27:14 2005 -@@ -211,7 +211,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - MAINTAINERCLEANFILES = Makefile.in --INCLUDES = -I$(top_buildir) -+#INCLUDES = -I$(top_buildir) - lib_LTLIBRARIES = libspandsp.la - libspandsp_la_SOURCES = adsi.c \ - awgn.c \ diff --git a/comms/spandsp-devel5/files/patch-src-playout.c b/comms/spandsp-devel5/files/patch-src-playout.c deleted file mode 100644 index 2674f62f0de3..000000000000 --- a/comms/spandsp-devel5/files/patch-src-playout.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/playout.c~ Fri Feb 4 14:19:30 2005 -+++ src/playout.c Thu Jun 23 15:35:06 2005 -@@ -37,6 +37,7 @@ - #include <stdlib.h> - #include <string.h> - #include <limits.h> -+#include <sys/types.h> - - #include "spandsp/telephony.h" - #include "spandsp/playout.h" diff --git a/comms/spandsp-devel5/files/patch-src-power_meter.c b/comms/spandsp-devel5/files/patch-src-power_meter.c deleted file mode 100644 index 5209632685e7..000000000000 --- a/comms/spandsp-devel5/files/patch-src-power_meter.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/power_meter.c.orig Thu Jun 30 22:40:33 2005 -+++ src/power_meter.c Thu Jun 30 22:41:05 2005 -@@ -72,6 +72,10 @@ - } - /*- End of function --------------------------------------------------------*/ - -+#ifndef INFINITY -+#define INFINITY (float)HUGE_VAL -+#endif -+ - float power_meter_dbm0(power_meter_t *meter) - { - float val; diff --git a/comms/spandsp-devel5/files/patch-src-spandsp-dc_restore.h b/comms/spandsp-devel5/files/patch-src-spandsp-dc_restore.h deleted file mode 100644 index d2f63ad0d8e4..000000000000 --- a/comms/spandsp-devel5/files/patch-src-spandsp-dc_restore.h +++ /dev/null @@ -1,14 +0,0 @@ ---- src/spandsp/dc_restore.h.orig Tue Jan 18 15:05:48 2005 -+++ src/spandsp/dc_restore.h Thu Jun 30 22:35:33 2005 -@@ -85,6 +85,11 @@ - } - /*- End of function --------------------------------------------------------*/ - -+#ifndef INT16_MAX -+#define INT16_MAX 0x7fff -+#define INT16_MIN (-0x7fff-1) -+#endif -+ - static inline int16_t saturate(int32_t amp) - { - if (amp > INT16_MAX) diff --git a/comms/spandsp-devel5/files/patch-src-t31.c b/comms/spandsp-devel5/files/patch-src-t31.c deleted file mode 100644 index 7ffd6abfd2d6..000000000000 --- a/comms/spandsp-devel5/files/patch-src-t31.c +++ /dev/null @@ -1,28 +0,0 @@ ---- src/t31.c.orig Thu Jun 30 23:07:14 2005 -+++ src/t31.c Thu Jun 30 23:10:28 2005 -@@ -51,19 +51,12 @@ - t31_profile_t profiles[3] = - { - { -- .echo = TRUE, -- .verbose = TRUE, -- .result_code_format = ASCII_RESULT_CODES, -- .pulse_dial = FALSE, -- .double_escape = FALSE, -- .s_regs[0] = 0, -- .s_regs[3] = '\r', -- .s_regs[4] = '\n', -- .s_regs[5] = '\b', -- .s_regs[6] = 1, -- .s_regs[7] = 60, -- .s_regs[8] = 5, -- .s_regs[10] = 0 -+ TRUE, -+ TRUE, -+ ASCII_RESULT_CODES, -+ FALSE, -+ FALSE, -+ { 0, 0, 0, '\r', '\n', '\b', 1, 60, 5, 0 } - } - }; - diff --git a/comms/spandsp-devel5/pkg-descr b/comms/spandsp-devel5/pkg-descr deleted file mode 100644 index a19fea158bbc..000000000000 --- a/comms/spandsp-devel5/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -Spandsp is a DSP library to support fax functions in the Asterisk PBX. -Basically it implements a software fax machine to fax out or in. - -WWW: http://www.soft-switch.org/ diff --git a/comms/spandsp-devel5/pkg-plist b/comms/spandsp-devel5/pkg-plist deleted file mode 100644 index 513350cfab0c..000000000000 --- a/comms/spandsp-devel5/pkg-plist +++ /dev/null @@ -1,57 +0,0 @@ -include/spandsp.h -include/spandsp/adsi.h -include/spandsp/alaw_ulaw.h -include/spandsp/arctan2.h -include/spandsp/awgn.h -include/spandsp/bert.h -include/spandsp/biquad.h -include/spandsp/complex.h -include/spandsp/complex_filters.h -include/spandsp/dc_restore.h -include/spandsp/dds.h -include/spandsp/ec_disable_detector.h -include/spandsp/echo.h -include/spandsp/fir.h -include/spandsp/fsk.h -include/spandsp/g168models.h -include/spandsp/hdlc.h -include/spandsp/ima_adpcm.h -include/spandsp/mmx.h -include/spandsp/modem_echo.h -include/spandsp/oki_adpcm.h -include/spandsp/oss.h -include/spandsp/playout.h -include/spandsp/plc.h -include/spandsp/power_meter.h -include/spandsp/queue.h -include/spandsp/schedule.h -include/spandsp/sig_tone.h -include/spandsp/super_tone_rx.h -include/spandsp/super_tone_tx.h -include/spandsp/t30.h -include/spandsp/t30_fcf.h -include/spandsp/t31.h -include/spandsp/t35.h -include/spandsp/t4.h -include/spandsp/telephony.h -include/spandsp/time_scale.h -include/spandsp/timing.h -include/spandsp/tone_detect.h -include/spandsp/tone_generate.h -include/spandsp/v17rx.h -include/spandsp/v17tx.h -include/spandsp/v22bis.h -include/spandsp/v27ter_rx.h -include/spandsp/v27ter_tx.h -include/spandsp/v29rx.h -include/spandsp/v29tx.h -include/spandsp/v42.h -include/spandsp/v8.h -include/spandsp/vector.h -lib/libspandsp.a -lib/libspandsp.so -lib/libspandsp.so.0 -%%DATADIR%%/global-tones.xml -%%DATADIR%%/tones.dtd -@dirrm %%DATADIR%% -@dirrm include/spandsp |