diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2006-02-03 11:04:36 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2006-02-03 11:04:36 +0000 |
commit | 3f0972407640edc461ca98511a010bbea29691f5 (patch) | |
tree | 8d2674b34a00dbadb123e2a03d7e6fe5c6fe9848 /x11/kdebase4-runtime | |
parent | ea33fe5ff375ae8e1a7bc407dbfce7edeb3fb6b9 (diff) |
Notes
Diffstat (limited to 'x11/kdebase4-runtime')
-rw-r--r-- | x11/kdebase4-runtime/Makefile | 1 | ||||
-rw-r--r-- | x11/kdebase4-runtime/files/patch-kxkb-rules.cpp | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/x11/kdebase4-runtime/Makefile b/x11/kdebase4-runtime/Makefile index 61a78c1eb313..9b0309095966 100644 --- a/x11/kdebase4-runtime/Makefile +++ b/x11/kdebase4-runtime/Makefile @@ -8,6 +8,7 @@ PORTNAME= kdebase PORTVERSION= ${KDE_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src diff --git a/x11/kdebase4-runtime/files/patch-kxkb-rules.cpp b/x11/kdebase4-runtime/files/patch-kxkb-rules.cpp new file mode 100644 index 000000000000..03baa696dcce --- /dev/null +++ b/x11/kdebase4-runtime/files/patch-kxkb-rules.cpp @@ -0,0 +1,20 @@ +--- 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); |