diff options
Diffstat (limited to 'x11/kde4-workspace/files')
-rw-r--r-- | x11/kde4-workspace/files/freebsd.keytab | 134 | ||||
-rw-r--r-- | x11/kde4-workspace/files/genkdmconf.sh.in | 21 | ||||
-rw-r--r-- | x11/kde4-workspace/files/patch-kdeprint_descriptions_Makefile.in | 13 | ||||
-rw-r--r-- | x11/kde4-workspace/files/patch-kdm-kfrontend-Makefile.in | 12 | ||||
-rw-r--r-- | x11/kde4-workspace/files/patch-ksmserver-legacy.cpp | 13 | ||||
-rw-r--r-- | x11/kde4-workspace/files/patch-kwin_Makefile.in | 11 | ||||
-rw-r--r-- | x11/kde4-workspace/files/patch-kxkb-rules.cpp | 20 | ||||
-rw-r--r-- | x11/kde4-workspace/files/patch-nsplugins-pluginscan.cpp | 11 | ||||
-rw-r--r-- | x11/kde4-workspace/files/pkg-deinstall.in | 17 | ||||
-rw-r--r-- | x11/kde4-workspace/files/pkg-install.in | 21 | ||||
-rw-r--r-- | x11/kde4-workspace/files/pkg-message.in | 20 |
11 files changed, 0 insertions, 293 deletions
diff --git a/x11/kde4-workspace/files/freebsd.keytab b/x11/kde4-workspace/files/freebsd.keytab deleted file mode 100644 index 2607089e1dbe..000000000000 --- a/x11/kde4-workspace/files/freebsd.keytab +++ /dev/null @@ -1,134 +0,0 @@ -# [freebsd.keytab] Konsole Keyboard Table (FreeBSD console keys) -# -# $FreeBSD$ -# -------------------------------------------------------------- - -# NOT TESTED, MAY NEED SOME CLEANUPS -keyboard "freebsd console" - -# -------------------------------------------------------------- -# -# This configuration table allows to customize the -# meaning of the keys. -# -# The syntax is that each entry has the form : -# -# "key" Keyname { ("+"|"-") Modename } ":" (String|Operation) -# -# Keynames are those defined in <qnamespace.h> with the -# "Qt::Key_" removed. (We'd better insert the list here) -# -# Mode names are : -# -# - Shift -# - Alt -# - Control -# -# The VT100 emulation has two modes that can affect the -# sequences emitted by certain keys. These modes are -# under control of the client program. -# -# - Newline : effects Return and Enter key. -# - Application : effects Up and Down key. -# -# - Ansi : effects Up and Down key (This is for VT52, really). -# -# Operations are -# -# - scrollUpLine -# - scrollUpPage -# - scrollDownLine -# - scrollDownPage -# -# - emitSelection -# -# If the key is not found here, the text of the -# key event as provided by QT is emitted, possibly -# preceeded by ESC if the Alt key is pressed. -# -# -------------------------------------------------------------- - -key Escape : "\E" -key Tab : "\t" - -# VT100 can add an extra \n after return. -# The NewLine mode is set by an escape sequence. - -key Return-NewLine : "\r" -key Return+NewLine : "\r\n" - -# Some desperately try to save the ^H. - -key Backspace : "\x08" # Control H -key Delete : "\E[3~" - -# These codes are for the VT52 mode of VT100 -# The Ansi mode (i.e. VT100 mode) is set by -# an escape sequence - -key Up -Shift-Ansi : "\EA" -key Down -Shift-Ansi : "\EB" -key Right-Shift-Ansi : "\EC" -key Left -Shift-Ansi : "\ED" - -# VT100 emits a mode bit together -# with the arrow keys.The AppCuKeys -# mode is set by an escape sequence. - -key Up -Shift+Ansi+AppCuKeys : "\EOA" -key Down -Shift+Ansi+AppCuKeys : "\EOB" -key Right-Shift+Ansi+AppCuKeys : "\EOC" -key Left -Shift+Ansi+AppCuKeys : "\EOD" - -key Up -Shift+Ansi-AppCuKeys : "\E[A" -key Down -Shift+Ansi-AppCuKeys : "\E[B" -key Right-Shift+Ansi-AppCuKeys : "\E[C" -key Left -Shift+Ansi-AppCuKeys : "\E[D" - -# FreeBSD functions keys F1-F5 differ from Xterm - -key F1 : "\E[[A" -key F2 : "\E[[B" -key F3 : "\E[[C" -key F4 : "\E[[D" -key F5 : "\E[[E" - -key F6 : "\E[17~" -key F7 : "\E[18~" -key F8 : "\E[19~" -key F9 : "\E[20~" -key F10 : "\E[21~" -key F11 : "\E[23~" -key F12 : "\E[24~" - -key Home : "\E[1~" -key End : "\E[4~" - -key Prior -Shift : "\E[5~" -key Next -Shift : "\E[6~" -key Insert-Shift : "\E[2~" - -# Keypad-Enter. See comment on Return above. - -key Enter+NewLine : "\r\n" -key Enter-NewLine : "\r" - -key Space +Control : "\x00" - -# some of keys are used by konsole. - -key Up +Shift : scrollLineUp -key Prior +Shift : scrollPageUp -key Down +Shift : scrollLineDown -key Next +Shift : scrollPageDown - -key ScrollLock : scrollLock - -#---------------------------------------------------------- - -# keypad characters as offered by Qt -# cannot be recognized as such. - -#---------------------------------------------------------- - -# Following other strings as emitted by konsole. diff --git a/x11/kde4-workspace/files/genkdmconf.sh.in b/x11/kde4-workspace/files/genkdmconf.sh.in deleted file mode 100644 index 3a730a071407..000000000000 --- a/x11/kde4-workspace/files/genkdmconf.sh.in +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ - -# some defs -GENKDMCONF=%%PREFIX%%/bin/genkdmconf -KDMCONFDIR=%%PREFIX%%/share/config/kdm - -#first, set a path for an X app -PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin -export PATH - -#Configure kdm if needed -if [ ! -r ${KDMCONFDIR}/kdmrc ]; then - echo "Generating KDM configuration"; - ${GENKDMCONF} --no-old --in ${KDMCONFDIR}; -else - echo "Updating KDM configuration"; - ${GENKDMCONF} --in ${KDMCONFDIR}; - -fi diff --git a/x11/kde4-workspace/files/patch-kdeprint_descriptions_Makefile.in b/x11/kde4-workspace/files/patch-kdeprint_descriptions_Makefile.in deleted file mode 100644 index 5cf57be2d1c7..000000000000 --- a/x11/kde4-workspace/files/patch-kdeprint_descriptions_Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ ---- kdeprint/descriptions/Makefile.in.orig Wed Jan 26 12:17:44 2005 -+++ kdeprint/descriptions/Makefile.in Wed Jan 26 12:19:25 2005 -@@ -773,8 +773,8 @@ - - printers.cpp: sortthem - : > printers.cpp -- for i in `find /usr/share/cups/model -type f ! -name '*.gz'`; do perl $(srcdir)/readppd < $$i >> printers.cpp; done -- for i in `find /usr/share/cups/model -type f -name '*.gz'`; do \ -+ for i in `find %%LOCALBASE%%/share/cups/model -type f ! -name '*.gz'`; do perl $(srcdir)/readppd < $$i >> printers.cpp; done -+ for i in `find %%LOCALBASE%%/share/cups/model -type f -name '*.gz'`; do \ - gzip -cd $$i | perl $(srcdir)/readppd >> printers.cpp; done - iconv -flatin1 -tutf-8 printers.cpp > printers.new - mv printers.new printers.cpp diff --git a/x11/kde4-workspace/files/patch-kdm-kfrontend-Makefile.in b/x11/kde4-workspace/files/patch-kdm-kfrontend-Makefile.in deleted file mode 100644 index a81fd6da8f38..000000000000 --- a/x11/kde4-workspace/files/patch-kdm-kfrontend-Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- kdm/kfrontend/Makefile.in.orig Wed Feb 25 14:57:47 2004 -+++ kdm/kfrontend/Makefile.in Wed Feb 25 14:58:17 2004 -@@ -1149,9 +1149,6 @@ - uninstall-kde_moduleLTLIBRARIES uninstall-recursive - - --install-data-local: genkdmconf -- ./genkdmconf --in $(DESTDIR)$(kde_confdir)/kdm --face-src $(srcdir)/pics $(GENKDMCONF_FLAGS) -- - messages: - $(XGETTEXT) $(kdm_greet_SOURCES) -o $(podir)/kdmgreet.pot - # Tell versions [3.59,3.63) of GNU make to not export all variables. diff --git a/x11/kde4-workspace/files/patch-ksmserver-legacy.cpp b/x11/kde4-workspace/files/patch-ksmserver-legacy.cpp deleted file mode 100644 index 553e15953605..000000000000 --- a/x11/kde4-workspace/files/patch-ksmserver-legacy.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- ksmserver/legacy.cpp.orig Sun Feb 12 16:47:39 2006 -+++ ksmserver/legacy.cpp Sun Feb 12 16:48:55 2006 -@@ -36,6 +36,10 @@ - - #include "server.h" - -+#ifdef HAVE_SYS_TIME_H -+#include <sys/time.h> -+#endif -+ - #include <unistd.h> - - #include <qtimer.h> diff --git a/x11/kde4-workspace/files/patch-kwin_Makefile.in b/x11/kde4-workspace/files/patch-kwin_Makefile.in deleted file mode 100644 index 866922634d9d..000000000000 --- a/x11/kde4-workspace/files/patch-kwin_Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- kwin/Makefile.in.orig Mon Mar 21 13:23:39 2005 -+++ kwin/Makefile.in Mon Mar 21 13:23:53 2005 -@@ -605,7 +605,7 @@ - xdg_menudir = @xdg_menudir@ - INCLUDES = -I$(srcdir)/lib $(all_includes) - @include_kompmgr_TRUE@KOMPMGR = kompmgr --SUBDIRS = lib . killer kcmkwin pics clients oldheaders data $(KOMPMGR) -+SUBDIRS = lib . killer kcmkwin pics clients oldheaders data - #>- lib_LTLIBRARIES = - #>+ 1 - lib_LTLIBRARIES = libkdeinit_kwin.la diff --git a/x11/kde4-workspace/files/patch-kxkb-rules.cpp b/x11/kde4-workspace/files/patch-kxkb-rules.cpp deleted file mode 100644 index 03baa696dcce..000000000000 --- a/x11/kde4-workspace/files/patch-kxkb-rules.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- kxkb/rules.cpp (revision 504758) -+++ kxkb/rules.cpp (working copy) -@@ -300,7 +300,7 @@ - */ - const QString KeyRules::getLayout(const QString &layvar) const - { -- static const char* LAYOUT_PATTERN = "[a-z0-9_-]*"; -+ static const char* LAYOUT_PATTERN = "[a-zA-Z0-9_-]*"; - QString varLine = layvar.stripWhiteSpace(); - QRegExp rx(LAYOUT_PATTERN); - int pos = rx.search(varLine, 0); -@@ -318,7 +318,7 @@ - */ - const QString KeyRules::getVariant(const QString &layvar) const - { -- static const char* VARIANT_PATTERN = "\\([a-z0-9_-]*\\)"; -+ static const char* VARIANT_PATTERN = "\\([a-zA-Z0-9_-]*\\)"; - QString varLine = layvar.stripWhiteSpace(); - QRegExp rx(VARIANT_PATTERN); - int pos = rx.search(varLine, 0); diff --git a/x11/kde4-workspace/files/patch-nsplugins-pluginscan.cpp b/x11/kde4-workspace/files/patch-nsplugins-pluginscan.cpp deleted file mode 100644 index 904ef5903342..000000000000 --- a/x11/kde4-workspace/files/patch-nsplugins-pluginscan.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- nsplugins/pluginscan.cpp.orig Sat Mar 13 21:07:58 2004 -+++ nsplugins/pluginscan.cpp Sat Mar 13 21:08:50 2004 -@@ -457,6 +457,8 @@ - paths.append("/usr/lib64/netscape/plugins"); - paths.append("/usr/lib64/mozilla/plugins"); - paths.append("$MOZILLA_HOME/plugins"); -+ paths.append("/usr/local/lib/linux-flashplugin6"); -+ paths.append("/usr/X11R6/lib/linux-flashplugin6"); - config->writeEntry( "scanPaths", paths ); - } - diff --git a/x11/kde4-workspace/files/pkg-deinstall.in b/x11/kde4-workspace/files/pkg-deinstall.in deleted file mode 100644 index e33dd4caa775..000000000000 --- a/x11/kde4-workspace/files/pkg-deinstall.in +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -if [ "$2" != "POST-DEINSTALL" ]; then - exit 0 -fi - -boguscreatenewentry=%%PREFIX%%/share/templates/.keep_me - -if [ ! -f $boguscreatenewentry ]; then - touch $boguscreatenewentry -fi - -exit 0 - diff --git a/x11/kde4-workspace/files/pkg-install.in b/x11/kde4-workspace/files/pkg-install.in deleted file mode 100644 index fee72a16fe3c..000000000000 --- a/x11/kde4-workspace/files/pkg-install.in +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -if [ "$2" != "POST-INSTALL" ]; then - exit 0 -fi - -boguscreatenewentry=%%PREFIX%%/share/templates/.keep_me -kdmrcscript=%%PREFIX%%/etc/rc.d/genkdmconf.sh - -if [ -f $kdmrcscript ]; then - sh -c "$kdmrcscript" -fi - -if [ -f $boguscreatenewentry ]; then - rm -f $boguscreatenewentry -fi - -exit 0 diff --git a/x11/kde4-workspace/files/pkg-message.in b/x11/kde4-workspace/files/pkg-message.in deleted file mode 100644 index 4c4756fe4617..000000000000 --- a/x11/kde4-workspace/files/pkg-message.in +++ /dev/null @@ -1,20 +0,0 @@ -This port has installed fonts into %%PREFIX%%/share/fonts - -You'll have to add %%PREFIX%%/share/fonts -to your X font path by either: - -$ xset fp+ %%PREFIX%%/share/fonts -$ xset fp rehash - -or by adding it to your X-server configuration file (usually -/etc/X11/XF86Config or %%X11BASE%%/lib/X11/XF86Config) and -restarting the X-server. - -You also have to make the new path known to fontconfig by -adding a - -<dir>%%PREFIX%%/share/fonts</dir> line to either - -%%X11BASE%%/etc/fonts/local.conf or ~/.fonts.conf and running - -fc-cache -f (as root if you edited local.conf) afterwards. |