Date: Tue, 19 Jun 2018 14:00:08 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472789 - in head/graphics/digikam: . files Message-ID: <201806191400.w5JE086P001360@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Tue Jun 19 14:00:07 2018 New Revision: 472789 URL: https://svnweb.freebsd.org/changeset/ports/472789 Log: graphics/digikam: fix build when not using make jobs Due to incompletely specified cmake targets the build can fail, as a generated file containging the git-version is missing -- as that is always empty in releases anyway, ignore that whole thing. Added: head/graphics/digikam/files/patch-core_app_utils_digikam__version.h.cmake.in (contents, props changed) head/graphics/digikam/files/patch-extra_kipi-plugins_common_libkipiplugins_tools_kpversion.cpp (contents, props changed) Modified: head/graphics/digikam/Makefile Modified: head/graphics/digikam/Makefile ============================================================================== --- head/graphics/digikam/Makefile Tue Jun 19 13:55:54 2018 (r472788) +++ head/graphics/digikam/Makefile Tue Jun 19 14:00:07 2018 (r472789) @@ -2,7 +2,7 @@ PORTNAME= digikam DISTVERSION= 5.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME} DIST_SUBDIR= KDE/digikam/${PORTVERSION} Added: head/graphics/digikam/files/patch-core_app_utils_digikam__version.h.cmake.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/digikam/files/patch-core_app_utils_digikam__version.h.cmake.in Tue Jun 19 14:00:07 2018 (r472789) @@ -0,0 +1,11 @@ +--- core/app/utils/digikam_version.h.cmake.in.orig 2018-06-16 08:50:14 UTC ++++ core/app/utils/digikam_version.h.cmake.in +@@ -34,7 +34,7 @@ + + // Local includes. + +-#include "gitversion.h" ++#define GITVERSION "" + + namespace Digikam + { Added: head/graphics/digikam/files/patch-extra_kipi-plugins_common_libkipiplugins_tools_kpversion.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/digikam/files/patch-extra_kipi-plugins_common_libkipiplugins_tools_kpversion.cpp Tue Jun 19 14:00:07 2018 (r472789) @@ -0,0 +1,11 @@ +--- extra/kipi-plugins/common/libkipiplugins/tools/kpversion.cpp.orig 2018-06-16 09:09:44 UTC ++++ extra/kipi-plugins/common/libkipiplugins/tools/kpversion.cpp +@@ -21,7 +21,7 @@ + * ============================================================ */ + + #include "kpversion.h" +-#include "gitversion.h" ++#define GITVERSION "" + + namespace pluginsVersion { +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806191400.w5JE086P001360>