aboutsummaryrefslogtreecommitdiffstats
path: root/x11/kdelibs3
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2008-08-29 19:30:04 +0800
committermiwi <miwi@FreeBSD.org>2008-08-29 19:30:04 +0800
commitc1905bd8bb28d08294925be827c2ac5f3bb8993d (patch)
treec5ca0dcdcc17c405ec5fdc18b5f112f8080faf7f /x11/kdelibs3
parentdedc75d37f4fc348a94c7959091749daaaf2fecd (diff)
downloadfreebsd-ports-gnome-c1905bd8bb28d08294925be827c2ac5f3bb8993d.tar.gz
freebsd-ports-gnome-c1905bd8bb28d08294925be827c2ac5f3bb8993d.tar.zst
freebsd-ports-gnome-c1905bd8bb28d08294925be827c2ac5f3bb8993d.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)
Diffstat (limited to 'x11/kdelibs3')
-rw-r--r--x11/kdelibs3/Makefile2
-rw-r--r--x11/kdelibs3/distinfo6
-rw-r--r--x11/kdelibs3/files/patch-kdecore-kpty.cpp35
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);
-