diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-08-29 11:30:04 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-08-29 11:30:04 +0000 |
commit | 8d67f4a547695c3afa1b7cf31fd8e007d8197959 (patch) | |
tree | 5113d3b49f5c883ca9d3a94805325abf68d23a44 /x11/kdelibs3 | |
parent | cbcb596bc03f08fa2d3221ed2b1595b0fe3819ca (diff) | |
download | ports-8d67f4a547695c3afa1b7cf31fd8e007d8197959.tar.gz ports-8d67f4a547695c3afa1b7cf31fd8e007d8197959.zip |
The KDE FreeBSD team is proud to announce the release
of KDE 3.5.10 for FreeBSD. The official KDE 3.5.10 release
notes can be found at:
http://www.kde.org/announcements/announce-3.5.10.php
While not a very exciting release in terms of features,
3.5.10 brings a couple of nice bugfixes and translation
updates to those who choose to stay with KDE 3.5. The
fixes are thinly spread across KPDF with a number of crash
fixes, KGPG and probably most interesting various fixes
in kicker, KDE3's panel:
* Improved visibility on transparent backgrounds
* Themed arrow buttons in applets that were missing them
* Layout and antialiasing fixes in various applets
Approved by: portmgr (erwin/pav)
Notes
Notes:
svn path=/head/; revision=219410
Diffstat (limited to 'x11/kdelibs3')
-rw-r--r-- | x11/kdelibs3/Makefile | 2 | ||||
-rw-r--r-- | x11/kdelibs3/distinfo | 6 | ||||
-rw-r--r-- | x11/kdelibs3/files/patch-kdecore-kpty.cpp | 35 |
3 files changed, 5 insertions, 38 deletions
diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index dce1b6fee566..8912d7ef164d 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -59,9 +59,11 @@ PREFIX= ${KDE_PREFIX} USE_LDCONFIG= ${PREFIX}/lib/kde3 USE_AUTOTOOLS= libtool:15 +CONFIGURE_TARGET=# empty CONFIGURE_ARGS+=--disable-ltdl-install \ --disable-as-needed \ --enable-mt \ + --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \ --x-libraries=${LOCALBASE}/lib --x-includes=${LOCALBASE}/include \ --with-libthai=yes \ --with-lua=no \ diff --git a/x11/kdelibs3/distinfo b/x11/kdelibs3/distinfo index caacbae9e927..bcf90f086630 100644 --- a/x11/kdelibs3/distinfo +++ b/x11/kdelibs3/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdelibs-3.5.9.tar.bz2) = 55e5f00874933d1a7ba7c95e369a205e -SHA256 (KDE/kdelibs-3.5.9.tar.bz2) = 4f92553f3ff50de87a83435fce3bae440c43f0d37a8e80a1736d007f80d8f755 -SIZE (KDE/kdelibs-3.5.9.tar.bz2) = 15568675 +MD5 (KDE/kdelibs-3.5.10.tar.bz2) = 43cd55ed15f63b5738d620ef9f9fd568 +SHA256 (KDE/kdelibs-3.5.10.tar.bz2) = 617e9cb01c70ed4c1b554b373f55deffbd0e12e2cdfeacd7b3d9409372285c72 +SIZE (KDE/kdelibs-3.5.10.tar.bz2) = 15614607 diff --git a/x11/kdelibs3/files/patch-kdecore-kpty.cpp b/x11/kdelibs3/files/patch-kdecore-kpty.cpp deleted file mode 100644 index ec773d0c07c1..000000000000 --- a/x11/kdelibs3/files/patch-kdecore-kpty.cpp +++ /dev/null @@ -1,35 +0,0 @@ ---- kdecore/kpty.cpp -+++ kdecore/kpty.cpp -@@ -127,10 +127,15 @@ - #include <kdebug.h> - #include <kstandarddirs.h> // locate - --// not defined on HP-UX for example --#ifndef CTRL --# define CTRL(x) ((x) & 037) --#endif -+#ifndef CINTR -+#define CINTR 0x03 -+#endif -+#ifndef CQUIT -+#define CQUIT 0x1c -+#endif -+#ifndef CERASE -+#define CERASE 0x7f -+#endif - - #define TTY_GROUP "tty" - -@@ -333,9 +339,9 @@ - ttmode.c_iflag |= IUTF8; - #endif - -- ttmode.c_cc[VINTR] = CTRL('C' - '@'); -- ttmode.c_cc[VQUIT] = CTRL('\\' - '@'); -- ttmode.c_cc[VERASE] = 0177; -+ ttmode.c_cc[VINTR] = CINTR; -+ ttmode.c_cc[VQUIT] = CQUIT; -+ ttmode.c_cc[VERASE] = CERASE; - - _tcsetattr(d->slaveFd, &ttmode); - |