diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-12-10 07:26:32 +0100 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-12-10 07:26:32 +0100 |
commit | 2c348825da717d6771688449161324e3864d0207 (patch) | |
tree | 733f521def88414d2ac8c17bdd1d247a61eb253b /net/krdc | |
parent | devel/R-cran-lintr: New port: A 'Linter' for R Code (diff) |
KDE: Update KDE Gear to 21.12
KDE Gear 21.12 has landed and comes with a massive number of updates and
new versions of applications and libraries. Literally, dozens of classic
KDE everyday tools and the specialised sophisticated apps you use to
work, be creative and play, are getting refreshers with design
improvements, new features and performance and stability enhancements.
What's new:
https://kde.org/announcements/gear/21.12.0/#whatsnew
Changelog:
https://kde.org/announcements/changelogs/gear/21.12.0/
Diffstat (limited to 'net/krdc')
-rw-r--r-- | net/krdc/Makefile | 2 | ||||
-rw-r--r-- | net/krdc/distinfo | 6 | ||||
-rw-r--r-- | net/krdc/files/patch-CMakeLists.txt | 46 |
3 files changed, 5 insertions, 49 deletions
diff --git a/net/krdc/Makefile b/net/krdc/Makefile index 4fca31089091..40cc0b7a0203 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -17,6 +17,8 @@ USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes +CMAKE_ON= WITH_VNC + OPTIONS_DEFINE= FREERDP DOCS OPTIONS_DEFAULT= FREERDP OPTIONS_SUB= yes diff --git a/net/krdc/distinfo b/net/krdc/distinfo index cab0be17df6c..1beaae394d49 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1636032647 -SHA256 (KDE/release-service/21.08.3/krdc-21.08.3.tar.xz) = a46f93946a40dda92a5af9f9f30707014382cdb5dc2a67ce9dc191b6135e8b49 -SIZE (KDE/release-service/21.08.3/krdc-21.08.3.tar.xz) = 1582296 +TIMESTAMP = 1638570824 +SHA256 (KDE/release-service/21.12.0/krdc-21.12.0.tar.xz) = c1a4bc7be2391ff2e7e8088a18cd50483d2037b6febe698f68eb4d5b5c73a96c +SIZE (KDE/release-service/21.12.0/krdc-21.12.0.tar.xz) = 1583712 diff --git a/net/krdc/files/patch-CMakeLists.txt b/net/krdc/files/patch-CMakeLists.txt deleted file mode 100644 index dbf8d746b05e..000000000000 --- a/net/krdc/files/patch-CMakeLists.txt +++ /dev/null @@ -1,46 +0,0 @@ ---- CMakeLists.txt.orig 2020-08-13 17:06:59 UTC -+++ CMakeLists.txt -@@ -81,24 +81,27 @@ set_package_properties("libssh" PROPERTIES - PURPOSE "Needed to build VNC+SSH tunnel support " - ) - --# Needs porting --find_program(FREERDP_EXECUTABLE xfreerdp) --if(FREERDP_EXECUTABLE) -- set(FREERDP_FOUND true) # mark the package found -- set(FREERDP_EXECUTABLE_FOUND true) --endif(FREERDP_EXECUTABLE) -+option(WITH_FREERDP OFF) -+if (WITH_FREERDP) -+ # Needs porting -+ find_program(FREERDP_EXECUTABLE xfreerdp) -+ if(FREERDP_EXECUTABLE) -+ set(FREERDP_FOUND true) # mark the package found -+ set(FREERDP_EXECUTABLE_FOUND true) -+ endif(FREERDP_EXECUTABLE) - --# dud to allow the dep showing up in feature summary. --# note that this must be after _FOUND is set so it doesn't incorrectly --# set the metadata to not-found. --find_package(freerdp QUIET) -+ # dud to allow the dep showing up in feature summary. -+ # note that this must be after _FOUND is set so it doesn't incorrectly -+ # set the metadata to not-found. -+ find_package(freerdp QUIET) - --set_package_properties(freerdp PROPERTIES -- DESCRIPTION "A free Remote Desktop Protocol (RDP) Implementation" -- URL "https://www.freerdp.com/" -- PURPOSE "The xfreerdp binary is needed for RDP support in KRDC (at runtime)" -- TYPE RUNTIME --) -+ set_package_properties(freerdp PROPERTIES -+ DESCRIPTION "A free Remote Desktop Protocol (RDP) Implementation" -+ URL "https://www.freerdp.com/" -+ PURPOSE "The xfreerdp binary is needed for RDP support in KRDC (at runtime)" -+ TYPE RUNTIME -+ ) -+endif() - - include_directories( - ${CMAKE_CURRENT_SOURCE_DIR} |