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.
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
49 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 kdiff3-1.10.0.tar.xz 1073920 BLAKE2B 146a52805797742e377cc3b7291df7f9495f4e9b0c4bae53b5e0a1081c0a125603a966e2f8a8d6bafc24c437559ab3394e6cacc35007f265563e14d78af5f842 SHA512 5126605aec2ac0a7537f9fae583e54947015cead205ababcfddb44b4992f417633eab2a1bc3b06fffe2a427befa4d9e1efe9c13abdc5d9c3c4aaa1dde10d066d | ||
DIST kdiff3-1.10.1.tar.xz 1111276 BLAKE2B 7a5d73d839471bb407c3fec7f67375a25128d04ffe9d75d367b7794d204a670bfb80d118e9b179f785b9d37010911c1588684c7b8fce125a7f2dc86aa56f53f3 SHA512 d1a92bb86c6ba77bda9a33c5ab6da7456775bf5281e4ce0dc391c5671de71b3e34669e9fdcce1af8090c91b4f84cf954b6ae73497924aaf7ca181eff5e594b15 | ||
DIST kdiff3-1.10.2.tar.xz 1112600 BLAKE2B 095bf797c076ee52b65dbf67b948b7767252c793024a1cf45a522dc98393265d912a30c1a167ffdce3c575bdbbe878fe71d15f4c634fd07bc3bfefd227f2396b SHA512 cbf63eae296370174c97a52213f436e326c1c1c576506d83ebca0a4c443b95aa4d69593df0e6688e13d5f187d60c81bfeb198f3681c2df8a4cfd6279bbd9cd7d |
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,48 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_HANDBOOK="optional" | ||
KFMIN=5.82.0 | ||
QTMIN=5.15.5 | ||
VIRTUALX_REQUIRED="test" | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="Frontend to diff3 based on KDE Frameworks" | ||
HOMEPAGE="https://apps.kde.org/kdiff3/ https://userbase.kde.org/KDiff3" | ||
SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
IUSE="" | ||
|
||
COMMON_DEPEND=" | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtprintsupport-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
>=kde-frameworks/kconfig-${KFMIN}:5 | ||
>=kde-frameworks/kconfigwidgets-${KFMIN}:5 | ||
>=kde-frameworks/kcoreaddons-${KFMIN}:5 | ||
>=kde-frameworks/kcrash-${KFMIN}:5 | ||
>=kde-frameworks/ki18n-${KFMIN}:5 | ||
>=kde-frameworks/kio-${KFMIN}:5 | ||
>=kde-frameworks/kparts-${KFMIN}:5 | ||
>=kde-frameworks/ktextwidgets-${KFMIN}:5 | ||
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5 | ||
>=kde-frameworks/kxmlgui-${KFMIN}:5 | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
dev-libs/boost | ||
" | ||
RDEPEND="${COMMON_DEPEND} | ||
sys-apps/diffutils | ||
" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DBUILD_WITH_QT6=OFF | ||
) | ||
ecm_src_configure | ||
} |