mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
Tuesday, 5 November 2024. Today KDE releases a bugfix update to KDE Plasma 6, versioned 6.2.3. Plasma 6.2 was released in October 2024 with many feature refinements and new modules to complete the desktop experience. This release adds two weeks' worth of new translations and fixes from KDE's contributors. View full Plasma 6.2 changelog: https://kde.org/announcements/changelogs/plasma/6/6.1.5-6.2.0/ Co-authored-by: Tobias C. Berner <tcberner@FreeBSD.org>
13 lines
691 B
CMake
13 lines
691 B
CMake
--- cmake/modules/Findhwdata.cmake.orig 2023-02-21 19:51:03 UTC
|
|
+++ cmake/modules/Findhwdata.cmake
|
|
@@ -10,8 +10,8 @@ if (UNIX AND NOT APPLE)
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
- find_path(hwdata_DIR NAMES hwdata/pnp.ids HINTS /usr/share ENV XDG_DATA_DIRS)
|
|
- find_file(hwdata_PNPIDS_FILE NAMES hwdata/pnp.ids HINTS /usr/share)
|
|
+ find_path(hwdata_DIR NAMES hwdata/pnp.ids HINTS ${CMAKE_INSTALL_PREFIX}/share/hwdata /usr/share ENV XDG_DATA_DIRS)
|
|
+ find_file(hwdata_PNPIDS_FILE NAMES hwdata/pnp.ids HINTS ${CMAKE_INSTALL_PREFIX}/share/hwdata /usr/share)
|
|
if (NOT hwdata_DIR OR NOT hwdata_PNPIDS_FILE)
|
|
set(hwdata_FOUND FALSE)
|
|
else()
|