Index: head/devel/kdbg/Makefile =================================================================== --- head/devel/kdbg/Makefile (revision 411806) +++ head/devel/kdbg/Makefile (revision 411807) @@ -1,37 +1,36 @@ # Created by: Chris D. Faulhaber # $FreeBSD$ PORTNAME= kdbg -PORTVERSION= 2.5.2 -PORTREVISION= 3 +PORTVERSION= 2.5.5 CATEGORIES= devel kde MASTER_SITES= SF/${PORTNAME}/Source%20Code/${PORTVERSION} MAINTAINER= thomas.sander@gmx.de COMMENT= Graphical user interface around gdb using KDE LICENSE= GPLv2 USES= cmake USE_KDE4= kdelibs kdeprefix automoc4 USE_QT4= moc_build qmake_build rcc_build uic_build INSTALLS_ICONS= yes OPTIONS_DEFINE= NLS OPTIONS_DEFAULT=NLS .include .if ${PORT_OPTIONS:MNLS} USES+= gettext PLIST_SUB+= NLS="" .else PLIST_SUB+= NLS="@comment " .endif post-patch: .if empty(PORT_OPTIONS:MNLS) ${REINPLACE_CMD} -e 's|add_subdirectory(po)||g' ${WRKSRC}/CMakeLists.txt .endif .include Index: head/devel/kdbg/distinfo =================================================================== --- head/devel/kdbg/distinfo (revision 411806) +++ head/devel/kdbg/distinfo (revision 411807) @@ -1,2 +1,2 @@ -SHA256 (kdbg-2.5.2.tar.gz) = 92d4586c0e5b99a9d26c91ad2c39664db2b929aea1cd463d3f8495a4a9262ff3 -SIZE (kdbg-2.5.2.tar.gz) = 402686 +SHA256 (kdbg-2.5.5.tar.gz) = 983e4c89258d752f42449e2d257c9e40352b516328132ca5b0b1991b91878879 +SIZE (kdbg-2.5.5.tar.gz) = 417327 Index: head/devel/kdbg/files/patch-kdbg_CMakeLists.txt =================================================================== --- head/devel/kdbg/files/patch-kdbg_CMakeLists.txt (revision 411806) +++ head/devel/kdbg/files/patch-kdbg_CMakeLists.txt (revision 411807) @@ -1,23 +1,23 @@ Required for building with CMake 3.4.0. Submitted via email directly to the upstream author. commit 2624465f87d7782527ee82567fd3a4fdf4c54241 Author: Raphael Kubo da Costa Date: Thu Nov 26 11:58:11 2015 +0100 cmake: Explicitly include the CheckIncludeFiles module. This fixes the build with CMake 3.4.0: kdbg/CMakeLists.txt was previously relying on the module being included indirectly. ---- kdbg/CMakeLists.txt +--- kdbg/CMakeLists.txt.orig 2015-02-22 19:54:42 UTC +++ kdbg/CMakeLists.txt @@ -4,6 +4,7 @@ add_subdirectory(typetables) include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) include(CheckFunctionExists) +include(CheckIncludeFiles) CHECK_INCLUDE_FILES(pty.h HAVE_PTY_H) CHECK_INCLUDE_FILES(libutil.h HAVE_LIBUTIL_H)