diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-11-29 18:46:09 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-11-29 18:46:09 +0000 |
commit | eae17aae28f615a81c26caabe4c378845fbba469 (patch) | |
tree | 0ce5c1c30909345afb19e5261d3ac9d9d00b91e1 /kde-base/kdelibs/files | |
parent | Keyworded ~sparc wrt #113875 (diff) | |
download | gentoo-2-eae17aae28f615a81c26caabe4c378845fbba469.tar.gz gentoo-2-eae17aae28f615a81c26caabe4c378845fbba469.tar.bz2 gentoo-2-eae17aae28f615a81c26caabe4c378845fbba469.zip |
Remove KDE 3.5 prereleases.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'kde-base/kdelibs/files')
6 files changed, 0 insertions, 64 deletions
diff --git a/kde-base/kdelibs/files/digest-kdelibs-3.5.0_beta2 b/kde-base/kdelibs/files/digest-kdelibs-3.5.0_beta2 deleted file mode 100644 index b443e55e83fa..000000000000 --- a/kde-base/kdelibs/files/digest-kdelibs-3.5.0_beta2 +++ /dev/null @@ -1 +0,0 @@ -MD5 03605259028c1779a7ab7b7fe4f75514 kdelibs-3.4.92.tar.bz2 15306618 diff --git a/kde-base/kdelibs/files/digest-kdelibs-3.5.0_rc1 b/kde-base/kdelibs/files/digest-kdelibs-3.5.0_rc1 deleted file mode 100644 index bbe43d122415..000000000000 --- a/kde-base/kdelibs/files/digest-kdelibs-3.5.0_rc1 +++ /dev/null @@ -1 +0,0 @@ -MD5 6433e694f335845f21f544970cbe465a kdelibs-3.5.0_rc1.tar.bz2 15349971 diff --git a/kde-base/kdelibs/files/digest-kdelibs-3.5_beta1-r1 b/kde-base/kdelibs/files/digest-kdelibs-3.5_beta1-r1 deleted file mode 100644 index 15fc1f6a2f69..000000000000 --- a/kde-base/kdelibs/files/digest-kdelibs-3.5_beta1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 9981060a65037471f561ca11b2501792 kdelibs-3.4.91.tar.bz2 15267497 diff --git a/kde-base/kdelibs/files/kdelibs-3.5.0_beta2-kwallet-stdint.patch b/kde-base/kdelibs/files/kdelibs-3.5.0_beta2-kwallet-stdint.patch deleted file mode 100644 index 186403d80a61..000000000000 --- a/kde-base/kdelibs/files/kdelibs-3.5.0_beta2-kwallet-stdint.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- kwallet/backend/sha1.cc.old 2005-10-17 21:41:09.000000000 +0100 -+++ kwallet/backend/sha1.cc 2005-10-17 21:41:04.000000000 +0100 -@@ -26,6 +26,9 @@ - #ifdef HAVE_SYS_BITYPES_H - #include <sys/bitypes.h> /* For uintXX_t on Tru64 */ - #endif -+#ifdef HAVE_STDINT_H -+#include <stdint.h> -+#endif - - #include "sha1.h" - #include <string.h> diff --git a/kde-base/kdelibs/files/kdelibs-3.5_beta1-configure-acl.patch b/kde-base/kdelibs/files/kdelibs-3.5_beta1-configure-acl.patch deleted file mode 100644 index f3182dd5b7b6..000000000000 --- a/kde-base/kdelibs/files/kdelibs-3.5_beta1-configure-acl.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff -Nur kdelibs-3.4.91.orig/configure.in.in kdelibs-3.4.91/configure.in.in ---- kdelibs-3.4.91.orig/configure.in.in 2005-09-10 10:27:50.000000000 +0200 -+++ kdelibs-3.4.91/configure.in.in 2005-09-19 16:26:01.000000000 +0200 -@@ -48,16 +48,27 @@ - AC_HEADER_STDC - AC_CHECK_HEADERS(sys/param.h sys/mman.h sys/time.h sysent.h strings.h sys/stat.h sys/select.h paths.h malloc.h limits.h sys/soundcard.h dlfcn.h termios.h) - --USE_POSIX_ACL="yes" -+AC_ARG_WITH(acl, -+ [AC_HELP_STRING(--with-acl, -+ [enable support for POSIX ACLs @<:@default=check@:>@])], -+ [], with_acl=check) -+ - ACL_LIBS="" --KDE_CHECK_HEADER(sys/xattr.h, ,[USE_POSIX_ACL="no"]) --KDE_CHECK_HEADER(sys/acl.h, ,[USE_POSIX_ACL="no"]) --KDE_CHECK_HEADER(acl/libacl.h, ,[USE_POSIX_ACL="no"]) --KDE_CHECK_LIB(acl,acl_init, ,[USE_POSIX_ACL="no"]) -+if test "x$with_acl" != xno; then -+ USE_POSIX_ACL="yes" -+ KDE_CHECK_HEADER(sys/xattr.h, ,[USE_POSIX_ACL="no"]) -+ KDE_CHECK_HEADER(sys/acl.h, ,[USE_POSIX_ACL="no"]) -+ KDE_CHECK_HEADER(acl/libacl.h, ,[USE_POSIX_ACL="no"]) -+ KDE_CHECK_LIB(acl,acl_init, ,[USE_POSIX_ACL="no"]) - --if test $USE_POSIX_ACL = "yes" ; then -+ if test $USE_POSIX_ACL = "yes" ; then - ACL_LIBS="-lacl -lattr" - AC_DEFINE([USE_POSIX_ACL], 1, [Define if system has POSIX ACL support.]) -+ fi -+ -+ if test "x$with_acl" != xcheck && test "$USE_POSIX_ACL" != "yes"; then -+ AC_MSG_ERROR([--with-acl was given, but test for POSIX ACLs failed]) -+ fi - fi - AC_SUBST(ACL_LIBS) - diff --git a/kde-base/kdelibs/files/kioslave-pumount-devname.patch b/kde-base/kdelibs/files/kioslave-pumount-devname.patch deleted file mode 100644 index 6281301b2125..000000000000 --- a/kde-base/kdelibs/files/kioslave-pumount-devname.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: kdelibs-3.4.91/kioslave/file/file.cc -=================================================================== ---- kdelibs-3.4.91/kioslave/file/file.cc.orig -+++ kdelibs-3.4.91/kioslave/file/file.cc -@@ -1621,6 +1621,7 @@ bool FileProtocol::pumount(const QString - } - - if (dev.isEmpty()) return false; -+ if (dev.endsWith("/")) dev.truncate(dev.length()-1); - - QString epath = getenv("PATH"); - QString path = QString::fromLatin1("/sbin:/bin"); |