1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00

deskutils/ausweisapp2: update to 1.22.5

https://github.com/Governikus/AusweisApp2/releases

Also add dependency on qt5-graphicaleffects, as without that
package the GUI will not be shown.
This commit is contained in:
Christoph Moench-Tegeder 2022-04-25 15:39:48 +02:00
parent a7da34c47f
commit 12c7092e4e
3 changed files with 16 additions and 15 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= ausweisapp2
DISTVERSION= 1.22.2
DISTVERSION= 1.22.5
CATEGORIES= deskutils security
MAINTAINER= freebsd@sysctl.cz
@ -19,8 +19,9 @@ USES= cmake compiler:c++17-lang pkgconfig qmake qt:5 ssl
USE_GITHUB= yes
GH_ACCOUNT= Governikus
GH_PROJECT= AusweisApp2
USE_QT= concurrent core declarative gui network quickcontrols2 svg \
websockets widgets buildtools_build linguisttools_build
USE_QT= concurrent core declarative graphicaleffects gui network \
quickcontrols2 svg websockets widgets \
buildtools_build linguisttools_build
# The VENDOR variable controls the name of the directory in ${PREFIX}/share.
CMAKE_ARGS= -DVENDOR=${PORTNAME}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1640361535
SHA256 (Governikus-AusweisApp2-1.22.2_GH0.tar.gz) = 79d637a976dc1dc5445757a43324f4fe609d844bf90f11c0f62a46c39dc4fea6
SIZE (Governikus-AusweisApp2-1.22.2_GH0.tar.gz) = 10886670
TIMESTAMP = 1650884872
SHA256 (Governikus-AusweisApp2-1.22.5_GH0.tar.gz) = 09787d23663861673a3f7e604a5212ebc9575d149d6b5bd24519417de6d22ccf
SIZE (Governikus-AusweisApp2-1.22.5_GH0.tar.gz) = 11251263

View File

@ -1,17 +1,17 @@
--- cmake/Libraries.cmake.orig 2021-12-24 17:02:28 UTC
--- cmake/Libraries.cmake.orig 2022-04-25 13:11:06 +0200
+++ cmake/Libraries.cmake
@@ -122,11 +122,9 @@ elseif(MAC)
find_library(OSX_FOUNDATION Foundation)
find_library(OSX_SERVICEMANAGEMENT ServiceManagement)
@@ -124,11 +124,9 @@
elseif(UNIX)
find_package(PkgConfig REQUIRED)
- if(LINUX)
- find_library(LIBUDEV NAMES udev ludev libudev)
- if(NOT LIBUDEV)
- pkg_check_modules(UDEV IMPORTED_TARGET libudev)
- if(NOT TARGET PkgConfig::UDEV)
- message(STATUS "Hardware detection disabled - Missing libudev")
- endif()
+ find_library(LIBUDEV NAMES udev ludev libudev)
+ if(NOT LIBUDEV)
+ pkg_check_modules(UDEV IMPORTED_TARGET libudev)
+ if(NOT TARGET PkgConfig::UDEV)
+ message(STATUS "Hardware detection disabled - Missing libudev")
endif()
find_package(PkgConfig REQUIRED)
pkg_check_modules(PCSC REQUIRED libpcsclite)