diff options
author | 2007-02-05 11:45:28 +0000 | |
---|---|---|
committer | 2007-02-05 11:45:28 +0000 | |
commit | 3aedc5c005e424693130666cb1ee3ca800870019 (patch) | |
tree | 9f8309852db6a8ff8f73fd11d09143fa9b87b4fd | |
parent | Remove unneeded patches. (diff) | |
download | gentoo-2-3aedc5c005e424693130666cb1ee3ca800870019.tar.gz gentoo-2-3aedc5c005e424693130666cb1ee3ca800870019.tar.bz2 gentoo-2-3aedc5c005e424693130666cb1ee3ca800870019.zip |
Remove unneeded patches.
(Portage version: 2.1.2-r7)
-rw-r--r-- | kde-base/ksim/ChangeLog | 6 | ||||
-rw-r--r-- | kde-base/ksim/files/configure-fix-kdeutils-snmp.patch | 46 |
2 files changed, 5 insertions, 47 deletions
diff --git a/kde-base/ksim/ChangeLog b/kde-base/ksim/ChangeLog index f30ee538dc63..bac450090715 100644 --- a/kde-base/ksim/ChangeLog +++ b/kde-base/ksim/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for kde-base/ksim # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/ksim/ChangeLog,v 1.71 2007/02/04 02:55:07 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/ksim/ChangeLog,v 1.72 2007/02/05 11:45:28 flameeyes Exp $ + + 05 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> + -files/configure-fix-kdeutils-snmp.patch: + Remove unneeded patches. 04 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> -ksim-3.5.2.ebuild: Remove old versions. diff --git a/kde-base/ksim/files/configure-fix-kdeutils-snmp.patch b/kde-base/ksim/files/configure-fix-kdeutils-snmp.patch deleted file mode 100644 index 9f48f7f6cf94..000000000000 --- a/kde-base/ksim/files/configure-fix-kdeutils-snmp.patch +++ /dev/null @@ -1,46 +0,0 @@ -Index: ksim/monitors/snmp/configure.in.in -=================================================================== ---- ksim/monitors/snmp/configure.in.in (revision 433553) -+++ ksim/monitors/snmp/configure.in.in (working copy) -@@ -1,17 +1,20 @@ -+AC_ARG_WITH(snmp, -+ [AS_HELP_STRING(--with-snmp, -+ [enable support for SNMP @<:@default=check@:>@])], -+ [], with_snmp=check) - --KDE_CHECK_HEADER( net-snmp/library/snmp_api.h, [ have_netsnmp_h=yes ], [ have_netsnmp_h=no ] ) -+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 ] ) - --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 -+ fi - --if test "$enable_snmp" != yes; then -- -+ 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 -+ -+ if test "x$with_snmp" != xcheck && test "x$enable_snmp" != xyes; then -+ AC_MSG_FAILURE([--with-snmp was given, but test for net-snmp failed]) -+ fi - fi - --AM_CONDITIONAL(include_ksim_monitors_snmp, test -n "$enable_snmp") -- -+AM_CONDITIONAL(include_ksim_monitors_snmp, test "x$enable_snmp" = xyes) |