diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-07 00:11:27 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-07 13:59:58 +0100 |
commit | 7f45ce7728de31bb839db16ab19319f026ab0add (patch) | |
tree | 460a42bf534d6aa491db847a52a3026e3758c161 /kde-apps/konsole | |
parent | kde-apps/gwenview: Backport exiv2-0.27 support to 18.08.3 (diff) | |
download | gentoo-7f45ce7728de31bb839db16ab19319f026ab0add.tar.gz gentoo-7f45ce7728de31bb839db16ab19319f026ab0add.tar.bz2 gentoo-7f45ce7728de31bb839db16ab19319f026ab0add.zip |
kde-apps: Add KDE Applications 18.12.2
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/konsole')
-rw-r--r-- | kde-apps/konsole/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/konsole/konsole-18.12.2.ebuild | 57 |
2 files changed, 58 insertions, 0 deletions
diff --git a/kde-apps/konsole/Manifest b/kde-apps/konsole/Manifest index 59b8a9564b6f..9f5e84522bbf 100644 --- a/kde-apps/konsole/Manifest +++ b/kde-apps/konsole/Manifest @@ -1,2 +1,3 @@ DIST konsole-18.08.3.tar.xz 1077100 BLAKE2B 76ffc17c72ef6ccfc9618fd7ae59aeac00f8d686dcbe8fa61ef57248ba494d5dde94bc7f320c373f119e2ae60530d49640be7914aba7868b69e36c3673211f83 SHA512 3dcc5111e7a7fa389dda862b4a895379ffdb7a39d6568b3b958bf36631e3b3424a6abf2b9166f8567fcdf2d2d6f305a2e13f7575ce63549b0ebb4ebc27b33a82 DIST konsole-18.12.1.tar.xz 1093548 BLAKE2B c3ab69b568d7dfa582b220e8b967a57b5f39949afd45c4be03c647d784f673d187ca41220caad2138dfc1a61ac64ba65ccfafb3880b34f001d2e69bae2cbb4cd SHA512 5eae431f624bab778cb7d45de80a7485df92e4d392744b0bcdea5c1fc54e9a557051986bd868f2b2115a0ccae3f8a871531d7095dcbc9e21173395200bf3d9c3 +DIST konsole-18.12.2.tar.xz 1093592 BLAKE2B a91e1803aadebb39b7e2a7663644453659c11d8cced1a7d7d5d665cf04e692d9a898769e9cd71ae69eebd4edba01e0fb6826231b40f835e577e08558179e72de SHA512 3bf32dc9d39dbffb855a043728cca99b21819015a7ca1df56f17f18ec6b5cd5d53bd85f46381bafae72d3747d5b9e6beeff8a79e029800c5af599b169074bf68 diff --git a/kde-apps/konsole/konsole-18.12.2.ebuild b/kde-apps/konsole/konsole-18.12.2.ebuild new file mode 100644 index 000000000000..11e1a86195b7 --- /dev/null +++ b/kde-apps/konsole/konsole-18.12.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="optional" +KDE_TEST="true" +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="KDE's terminal emulator" +HOMEPAGE="https://www.kde.org/applications/system/konsole https://konsole.kde.org" + +KEYWORDS="~amd64 ~x86" +IUSE="X" + +DEPEND=" + $(add_frameworks_dep kbookmarks) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep kjobwidgets) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kinit) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep knotifyconfig) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kpty) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + X? ( x11-libs/libX11 ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package X X11) + ) + + kde5_src_configure +} |