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.2.tar.xz 1112600 BLAKE2B 095bf797c076ee52b65dbf67b948b7767252c793024a1cf45a522dc98393265d912a30c1a167ffdce3c575bdbbe878fe71d15f4c634fd07bc3bfefd227f2396b SHA512 cbf63eae296370174c97a52213f436e326c1c1c576506d83ebca0a4c443b95aa4d69593df0e6688e13d5f187d60c81bfeb198f3681c2df8a4cfd6279bbd9cd7d | ||
DIST kdiff3-1.10.3.tar.xz 1112224 BLAKE2B 0ec1b1d749fdc3b9669c508793efe12d7fac0f4efe36e39a7a7425f5b9ddaf2ff14152963f29b2a823d8e05518f151e6106d08a372b25fcab5a36222163ce9db SHA512 368621b7576d75973fba30ed2089cb249e3e695198996c4ffd1440ca0caffabc7540504dce559d9d2647609bbfe1645dc67198cd8b1d1c592a0d2a4332818f69 |
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 | ||
} |