forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-frameworks/kdnssd: 5.105.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST kdnssd-5.102.0.tar.xz 2280668 BLAKE2B 137d16249b1a4cecd6603d9e3f3ecdec203ac985969635b8fee5ce9afafe6b851e918406c6090b19ae239c59c46c7392223202222741b9fe7f9b029ad82c75d2 SHA512 e1e2b12e2c55bf316966d1ffb02b1c7edf84f68e17bddfd5d73bc2bc97565bbf7597481dca37dd30f31f98f0d17d6d3940fbc3c77cee3376af9daa08c43ed943 | ||
DIST kdnssd-5.104.0.tar.xz 2280772 BLAKE2B f11c7c72dbbbdaa1ada9649c610ecccdfbb39955bd77ce1d12cf5b1a038c65f2711b6d10ea0e4de36124209a9e1120d9fab8e97e085dea6f59d8467990ebabdd SHA512 feb42744178fd982e6c417c2eb9646d0394d99f163959b3fc07cebb32ed04984214ef3305530e89ffef0823c64fce89ed4c09cda483b8ff23adab8077dedb8cf | ||
DIST kdnssd-5.105.0.tar.xz 2280516 BLAKE2B 0a3023f1e8e6a39e0ea81bc44425c89e6dd945d59ac0165790c1f19c5416bbe75587d44bab5e8b767247d05fc65e2ccc29464e2400a38e969c7f1f881d82cf34 SHA512 b9f8fa6f80fe72329fd1ce369af04041fc3e8ee4567516cac8da8a894ed5df0c1bd08b5a4a384bb897afbe1e16d287db05f9628e8359290995b9a93d94c7ac90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
QTMIN=5.15.5 | ||
inherit ecm frameworks.kde.org | ||
|
||
DESCRIPTION="Framework for network service discovery using Zeroconf" | ||
|
||
LICENSE="LGPL-2+" | ||
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" | ||
IUSE="zeroconf" | ||
|
||
DEPEND=" | ||
>=dev-qt/qtnetwork-${QTMIN}:5 | ||
zeroconf? ( | ||
>=dev-qt/qtdbus-${QTMIN}:5 | ||
net-dns/avahi[mdnsresponder-compat] | ||
) | ||
" | ||
RDEPEND="${DEPEND}" | ||
BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package zeroconf Avahi) | ||
) | ||
use zeroconf || mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_DNSSD=ON ) | ||
|
||
ecm_src_configure | ||
} |