8000 mark-devkit: Bump kde-apps/ktp-text-ui-23.04.3 by geaaru · Pull Request #39 · macaroni-os/kde-kit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mark-devkit: Bump kde-apps/ktp-text-ui-23.04.3 #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kde-apps/ktp-text-ui/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST ktp-text-ui-23.04.3.tar.xz 486656 BLAKE2B c299b42c3812e2d97783791130f10115c03893cc37a3899d044880320c1819e39253a3079b09e7009135b2e39291addf73addbae65f24eed7f4a9ccb1c39a986 SHA512 caaba9452f053873daff8af66fa8c3d441f196d70617ec4c00d60e8e0dd69ff2423a99f45c2e92de43b1b17ccf2b1d5431aa3dd2dc8030509c4683efcdca5f85
56 changes: 56 additions & 0 deletions kde-apps/ktp-text-ui/ktp-text-ui-23.04.3.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Distributed under the terms of the GNU General Public License v2

EAPI=7

FRAMEWORKS_MINIMAL=5.98.0
QT_MINIMAL=5.15.1
inherit kde5

DESCRIPTION="KDE Telepathy text chat window"
HOMEPAGE="https://community.kde.org/KTp"
LICENSE="Apache-2.0 || ( AFL-2.1 BSD ) GPL-2+ LGPL-2.1+ MIT"
SLOT="5"
KEYWORDS="*"
IUSE="speech"

DEPEND="
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwebengine)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
$(add_kdeapps_dep ktp-common-internals otr)
$(add_frameworks_dep karchive)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kemoticons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kpeople)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep sonnet)
>=net-libs/telepathy-qt-0.9.8
speech? ( $(add_qt_dep qtspeech) )
"
RDEPEND="${DEPEND}
$(add_kdeapps_dep ktp-contact-list)
"

src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package speech Qt5TextToSpeech)
)

kde5_src_configure
}
0