diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-07-28 13:09:19 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-07-28 13:09:19 +0000 |
commit | c8539d4676c3d87eae8d3a96b4018bcd02f09ff2 (patch) | |
tree | e925b796fdb69bee66f1c52eaf9b33dea06f0bac /kde-base/kdeutils/files | |
parent | Update to KDE 3.4.2. (diff) | |
download | gentoo-2-c8539d4676c3d87eae8d3a96b4018bcd02f09ff2.tar.gz gentoo-2-c8539d4676c3d87eae8d3a96b4018bcd02f09ff2.tar.bz2 gentoo-2-c8539d4676c3d87eae8d3a96b4018bcd02f09ff2.zip |
Update to KDE 3.4.2.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'kde-base/kdeutils/files')
-rw-r--r-- | kde-base/kdeutils/files/digest-kdeutils-3.4.2 | 1 | ||||
-rw-r--r-- | kde-base/kdeutils/files/kdeutils-3.4-configure.patch | 76 |
2 files changed, 77 insertions, 0 deletions
diff --git a/kde-base/kdeutils/files/digest-kdeutils-3.4.2 b/kde-base/kdeutils/files/digest-kdeutils-3.4.2 new file mode 100644 index 000000000000..14ea8b02ce39 --- /dev/null +++ b/kde-base/kdeutils/files/digest-kdeutils-3.4.2 @@ -0,0 +1 @@ +MD5 62500e5ee043937592ebc6ad91dd670d kdeutils-3.4.2.tar.bz2 2290150 diff --git a/kde-base/kdeutils/files/kdeutils-3.4-configure.patch b/kde-base/kdeutils/files/kdeutils-3.4-configure.patch new file mode 100644 index 000000000000..939faa527246 --- /dev/null +++ b/kde-base/kdeutils/files/kdeutils-3.4-configure.patch @@ -0,0 +1,76 @@ +diff -Nur kdeutils-3.4.2.orig/kmilo/configure.in.in kdeutils-3.4.2/kmilo/configure.in.in +--- kdeutils-3.4.2.orig/kmilo/configure.in.in 2005-05-23 14:09:22.000000000 +0200 ++++ kdeutils-3.4.2/kmilo/configure.in.in 2005-07-26 14:42:57.000000000 +0200 +@@ -9,6 +9,15 @@ + dnl --------------------------------------------------------------------- + dnl PowerBook IPC Library + ++AC_ARG_WITH(powerbook, ++ [AC_HELP_STRING(--with-powerbook, ++ [enable support for PPC PowerBook @<:@default=check@:>@])], ++ [], with_powerbook=check) ++ ++have_pbbipc="" ++have_pbb="" ++if test "x$with_powerbook" != xno; then ++ + KDE_CHECK_LIB(pbbipc, create_msgport, + [ + KEYBOARD_LIBS="-lpbbipc $KEYBOARD_LIBS" +@@ -23,6 +32,10 @@ + have_pbb=true + ]) + ++if test "x$with_powerbook" != xcheck && test -z "$have_pbbipc$have_pbb"; then ++ AC_MSG_ERROR([--with-powerbook was given, but test for libpbb failed]) ++fi ++fi + + AM_CONDITIONAL(include_kmilo_powerbook, test x$have_pbbipc = xtrue) + AM_CONDITIONAL(include_kmilo_pbb, test x$have_pbb = xtrue) +diff -Nur kdeutils-3.4.2.orig/ksim/monitors/snmp/configure.in.in kdeutils-3.4.2/ksim/monitors/snmp/configure.in.in +--- kdeutils-3.4.2.orig/ksim/monitors/snmp/configure.in.in 2005-05-23 14:09:17.000000000 +0200 ++++ kdeutils-3.4.2/ksim/monitors/snmp/configure.in.in 2005-07-26 14:43:14.000000000 +0200 +@@ -1,17 +1,20 @@ ++AC_ARG_WITH(snmp, ++ [AC_HELP_STRING(--with-snmp, ++ [enable support for SNMP @<:@default=check@:>@])], ++ [], with_snmp=check) ++ ++enable_snmp=no ++if test "x$with_snmp" != xno; then ++ KDE_CHECK_HEADER( net-snmp/library/snmp_api.h, [ have_netsnmp_h=yes ], [ have_netsnmp_h=no ] ) + +-KDE_CHECK_HEADER( net-snmp/library/snmp_api.h, [ have_netsnmp_h=yes ], [ have_netsnmp_h=no ] ) +- +-enable_snmp= +- +-if test "$have_netsnmp_h" = yes; then ++ if test "$have_netsnmp_h" = yes; then + KDE_CHECK_LIB( netsnmp, snmp_sess_init, [ + AC_SUBST( LIBSNMP, "-lnetsnmp" ) + enable_snmp=yes + ], [], [] ) +-fi +- +-if test "$enable_snmp" != yes; then ++ fi + ++ if test "$enable_snmp" != yes; then + AC_MSG_CHECKING([if libnetsnmp needs -lcrypto]) + + dnl use a different symbol to prevent autoconf from caching +@@ -22,7 +25,11 @@ + ], [ + AC_MSG_RESULT(no) + ], [-lcrypto] ) +-fi ++ fi + +-AM_CONDITIONAL(include_ksim_monitors_snmp, test -n "$enable_snmp") ++ if test "x$with_snmp" != xcheck && test "x$enable_snmp" != xyes; then ++ AC_MSG_ERROR([--with-snmp was given, but test for net-snmp failed]) ++ fi ++fi + ++AM_CONDITIONAL(include_ksim_monitors_snmp, test "x$enable_snmp" = xyes) |