Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jan 2021 21:28:32 +0000 (UTC)
From:      Adriaan de Groot <adridg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r563250 - in head/deskutils: . kongress kongress/files
Message-ID:  <202101292128.10TLSWS4038512@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adridg
Date: Fri Jan 29 21:28:31 2021
New Revision: 563250
URL: https://svnweb.freebsd.org/changeset/ports/563250

Log:
  New port deskutils/kongress, a conference companion
  
  Kongress is a conference companion application. Its purpose is to help
  participants to organize their visit or online participation in a
  conference. It runs well on a (Linux) mobile phone, but works fine
  on a desktop or laptop machine.
  
  Release notes were on the KDE-releases mailing list but I copied
  them into the pkg-descr; they are also available at
  	https://dimitris.cc/kde/2021/01/28/Kongress_1_0.html
  
  There is one patch because I didn't like the Qt5::Test dependency
  and it seems to be optional anyway, MR submitted upstream.

Added:
  head/deskutils/kongress/
  head/deskutils/kongress/Makefile   (contents, props changed)
  head/deskutils/kongress/distinfo   (contents, props changed)
  head/deskutils/kongress/files/
  head/deskutils/kongress/files/patch-git-d0014bedc8b1ef3065bacd35863f1ca5d5f48b29.diff   (contents, props changed)
  head/deskutils/kongress/pkg-descr   (contents, props changed)
  head/deskutils/kongress/pkg-plist   (contents, props changed)
Modified:
  head/deskutils/Makefile

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Fri Jan 29 21:26:11 2021	(r563249)
+++ head/deskutils/Makefile	Fri Jan 29 21:28:31 2021	(r563250)
@@ -136,6 +136,7 @@
     SUBDIR += kmail
     SUBDIR += kmail-account-wizard
     SUBDIR += knotes
+    SUBDIR += kongress
     SUBDIR += kontact
     SUBDIR += korganizer
     SUBDIR += kruler

Added: head/deskutils/kongress/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kongress/Makefile	Fri Jan 29 21:28:31 2021	(r563250)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	kongress
+DISTVERSION=	1.0
+CATEGORIES=	deskutils
+MASTER_SITES=	KDE/stable/${PORTNAME}/${DISTVERSION}
+
+MAINTAINER=	adridg@FreeBSD.org
+COMMENT=	Conference companion application
+
+LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/LICENSES/GPL-3.0-or-later.txt
+
+USES=		cmake compiler:c++17-lang gl kde:5 pkgconfig qt:5 tar:xz
+USE_GL=		gl
+USE_QT=		core dbus declarative gui \
+		network quickcontrols quickcontrols2 \
+		svg widgets \
+		buildtools_build linguist_build qmake_build
+USE_KDE=	calendarcore config coreaddons dbusaddons i18n kirigami2 notifications service \
+		ecm_build
+
+CMAKE_ON=	REMINDERS_ENABLED
+CMAKE_OFF=	BUILD_TESTING
+
+.include <bsd.port.mk>

Added: head/deskutils/kongress/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kongress/distinfo	Fri Jan 29 21:28:31 2021	(r563250)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1611949562
+SHA256 (kongress-1.0.tar.xz) = b12371deceb2fc5580d235f43f299ad08996adb922395f7fb5f8c03213deef82
+SIZE (kongress-1.0.tar.xz) = 418376

Added: head/deskutils/kongress/files/patch-git-d0014bedc8b1ef3065bacd35863f1ca5d5f48b29.diff
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kongress/files/patch-git-d0014bedc8b1ef3065bacd35863f1ca5d5f48b29.diff	Fri Jan 29 21:28:31 2021	(r563250)
@@ -0,0 +1,48 @@
+diff --git CMakeLists.txt CMakeLists.txt
+index f7e8913..77f7149 100644
+--- CMakeLists.txt
++++ CMakeLists.txt
+@@ -14,6 +14,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
+ 
+ option(REMINDERS_ENABLED "Build with reminders support" ON)
+ 
++include(CTest)
+ include(FeatureSummary)
+ 
+ find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
+@@ -26,7 +27,7 @@ include(KDECMakeSettings)
+ include(KDECompilerSettings NO_POLICY_SCOPE)
+ include(ECMPoQmTools)
+ 
+-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS DBus Core Quick Gui Svg Test Qml QuickControls2 Network)
++find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS DBus Core Quick Gui Svg Qml QuickControls2 Network)
+ 
+ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Config Kirigami2 I18n CalendarCore CoreAddons)
+ 
+@@ -37,7 +38,9 @@ if (ANDROID)
+ else()
+     find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS Widgets)
+ endif()
+-
++if (BUILD_TESTING)
++    find_pacakge(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Test)
++endif()
+ if(NOT ANDROID AND REMINDERS_ENABLED)
+     find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS DBusAddons Notifications Service)
+ endif()
+diff --git src/CMakeLists.txt src/CMakeLists.txt
+index a0f5b6b..456ca1e 100644
+--- src/CMakeLists.txt
++++ src/CMakeLists.txt
+@@ -21,7 +21,10 @@ set(kongress_SRCS
+     )
+ 
+ add_executable(kongress ${kongress_SRCS} ${RESOURCES})
+-target_link_libraries(kongress PRIVATE Qt5::Core Qt5::Qml Qt5::Quick Qt5::Test Qt5::Svg Qt5::QuickControls2 Qt5::Network Qt5::DBus KF5::ConfigCore KF5::I18n KF5::CalendarCore KF5::CoreAddons)
++target_link_libraries(kongress PRIVATE Qt5::Core Qt5::Qml Qt5::Quick Qt5::Svg Qt5::QuickControls2 Qt5::Network Qt5::DBus KF5::ConfigCore KF5::I18n KF5::CalendarCore KF5::CoreAddons)
++if (BUILD_TESTING)
++    target_link_libraries(kongress PRIVATE Qt5::Test)
++endif()
+ 
+ if (ANDROID)
+     target_link_libraries(kongress PRIVATE

Added: head/deskutils/kongress/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kongress/pkg-descr	Fri Jan 29 21:28:31 2021	(r563250)
@@ -0,0 +1,14 @@
+Kongress is a conference companion application. Its purpose is to help
+participants to organize their visit or online participation in a
+conference. It contains the following features:
+- A collection of conferences
+- The scheduled talks
+- Start/end time of each talk (in various timezones)
+- List of favorites and warning on overlapping favorites
+- Reminders before the beginning of the talk
+
+The primary target user-base of Kongress is people attending a
+conference with a Linux mobile phone. It also works on desktop,
+leveraging the convergence capabilities of Kirigami.
+
+WWW: https://apps.kde.org/en/kongress

Added: head/deskutils/kongress/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/kongress/pkg-plist	Fri Jan 29 21:28:31 2021	(r563250)
@@ -0,0 +1,57 @@
+bin/kongress
+bin/kongressac
+share/applications/org.kde.kongress.desktop
+share/dbus-1/services/org.kde.kongressac.service
+share/icons/hicolor/scalable/apps/org.kde.kongress.svg
+share/knotifications5/kongressac.notifyrc
+share/locale/ca/LC_MESSAGES/kongress.qm
+share/locale/ca/LC_MESSAGES/kongressac.qm
+share/locale/ca@valencia/LC_MESSAGES/kongress.qm
+share/locale/ca@valencia/LC_MESSAGES/kongressac.qm
+share/locale/cs/LC_MESSAGES/kongress.qm
+share/locale/cs/LC_MESSAGES/kongressac.qm
+share/locale/da/LC_MESSAGES/kongress.qm
+share/locale/da/LC_MESSAGES/kongressac.qm
+share/locale/de/LC_MESSAGES/kongress.qm
+share/locale/el/LC_MESSAGES/kongress.qm
+share/locale/el/LC_MESSAGES/kongressac.qm
+share/locale/en_GB/LC_MESSAGES/kongress.qm
+share/locale/en_GB/LC_MESSAGES/kongressac.qm
+share/locale/es/LC_MESSAGES/kongress.qm
+share/locale/es/LC_MESSAGES/kongressac.qm
+share/locale/et/LC_MESSAGES/kongress.qm
+share/locale/et/LC_MESSAGES/kongressac.qm
+share/locale/fi/LC_MESSAGES/kongress.qm
+share/locale/fi/LC_MESSAGES/kongressac.qm
+share/locale/fr/LC_MESSAGES/kongress.qm
+share/locale/fr/LC_MESSAGES/kongressac.qm
+share/locale/gl/LC_MESSAGES/kongress.qm
+share/locale/gl/LC_MESSAGES/kongressac.qm
+share/locale/ia/LC_MESSAGES/kongress.qm
+share/locale/ia/LC_MESSAGES/kongressac.qm
+share/locale/it/LC_MESSAGES/kongress.qm
+share/locale/it/LC_MESSAGES/kongressac.qm
+share/locale/ko/LC_MESSAGES/kongress.qm
+share/locale/ko/LC_MESSAGES/kongressac.qm
+share/locale/nl/LC_MESSAGES/kongress.qm
+share/locale/nl/LC_MESSAGES/kongressac.qm
+share/locale/nn/LC_MESSAGES/kongress.qm
+share/locale/nn/LC_MESSAGES/kongressac.qm
+share/locale/pt/LC_MESSAGES/kongress.qm
+share/locale/pt/LC_MESSAGES/kongressac.qm
+share/locale/pt_BR/LC_MESSAGES/kongress.qm
+share/locale/pt_BR/LC_MESSAGES/kongressac.qm
+share/locale/ro/LC_MESSAGES/kongressac.qm
+share/locale/ru/LC_MESSAGES/kongress.qm
+share/locale/ru/LC_MESSAGES/kongressac.qm
+share/locale/sk/LC_MESSAGES/kongress.qm
+share/locale/sk/LC_MESSAGES/kongressac.qm
+share/locale/sl/LC_MESSAGES/kongress.qm
+share/locale/sl/LC_MESSAGES/kongressac.qm
+share/locale/sv/LC_MESSAGES/kongress.qm
+share/locale/sv/LC_MESSAGES/kongressac.qm
+share/locale/uk/LC_MESSAGES/kongress.qm
+share/locale/uk/LC_MESSAGES/kongressac.qm
+share/locale/zh_TW/LC_MESSAGES/kongress.qm
+share/locale/zh_TW/LC_MESSAGES/kongressac.qm
+share/metainfo/org.kde.kongress.appdata.xml



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101292128.10TLSWS4038512>