diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-09-07 20:29:32 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-09-07 20:29:32 +0200 |
commit | 996987a2817587de8e6dd587fdfdf8897d383ae4 (patch) | |
tree | d607e47be660333a574a1618e0f090dd0f0ea60a /kde-apps/kmailtransport | |
parent | media-radio/flrig: Version bump (diff) | |
download | gentoo-996987a2817587de8e6dd587fdfdf8897d383ae4.tar.gz gentoo-996987a2817587de8e6dd587fdfdf8897d383ae4.tar.bz2 gentoo-996987a2817587de8e6dd587fdfdf8897d383ae4.zip |
kde-apps: Add KDE Applications 17.08.1
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'kde-apps/kmailtransport')
-rw-r--r-- | kde-apps/kmailtransport/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/kmailtransport/kmailtransport-17.08.1.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/kde-apps/kmailtransport/Manifest b/kde-apps/kmailtransport/Manifest index 9e499d69ec0a..b2da6fd126d8 100644 --- a/kde-apps/kmailtransport/Manifest +++ b/kde-apps/kmailtransport/Manifest @@ -1,2 +1,3 @@ DIST kmailtransport-17.04.3.tar.xz 226360 SHA256 d91c4e7a3dbb05979b86455bfc272e7a2cbe1d534b7305011cb3ca0f70171c35 SHA512 d41211d04608a8406767485567da92c6932073c43df843b71428d765dfc15f6432600f4c1f098884e14f7425349144035dd733862b5d4d450b552c5f1326600e WHIRLPOOL e50a93d8598ee79dbf7f5a7030bb8f4fbb4fb0ef991e7ba2c66503fdea57f3c893ad239bebb0696f7edcdff5b77e410ab99bb9afb6d2c798097576796ac1f360 DIST kmailtransport-17.08.0.tar.xz 232756 SHA256 1f081c610b604131ebaa529ddee22d750c9fb762ea2039518deadf5e66c638d2 SHA512 e28b195b64c0b7618676eaebdd76519de4e84914e11db5d07c7591f7c46939af90306180fcc77ea22384ab1122b39e28376790acb930816632db212f34b66096 WHIRLPOOL 921a1a80ac1dba308b9019ccdb4a108c3dd3f2d1dc8f0450edaac87f65e7538fc7ac5c55a7f1e93e05cfbc19cff9eaee7857b05b64ed07cdb7e269ee138d6c34 +DIST kmailtransport-17.08.1.tar.xz 232748 SHA256 48addcf7195ddefed01ce519c62baa07d9a6376319058c45da854719195b1de5 SHA512 6f6dbed0a51b5feade4cae2999567995466d1c04d3847781b2cf89393991a15cb7d5036626f8b2003203a773e62bc09469a4333b71821626142222319c6c81fd WHIRLPOOL 4fb30804a0913296f89211f18500d65569287002797bcd0e408924ec835a2a666fb516f0e0bae032df9cbf315b48d3fc69bd7e9dda7dbed43aec5c8a91f810a6 diff --git a/kde-apps/kmailtransport/kmailtransport-17.08.1.ebuild b/kde-apps/kmailtransport/kmailtransport-17.08.1.ebuild new file mode 100644 index 000000000000..5a2e83108b8f --- /dev/null +++ b/kde-apps/kmailtransport/kmailtransport-17.08.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_HANDBOOK="forceoptional" +KDE_TEST="true" +inherit kde5 + +DESCRIPTION="Mail transport service" +LICENSE="LGPL-2.1+" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=" + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kwallet) + $(add_frameworks_dep kwidgetsaddons) + $(add_kdeapps_dep akonadi) + $(add_kdeapps_dep akonadi-mime) + $(add_kdeapps_dep kmime) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtnetwork) + $(add_qt_dep qtwidgets) + dev-libs/cyrus-sasl +" +DEPEND="${COMMON_DEPEND} + test? ( $(add_frameworks_dep ktextwidgets) ) +" +RDEPEND="${COMMON_DEPEND} + !kde-apps/kdepim-l10n + !kde-apps/kdepimlibs:4 +" + +RESTRICT+=" test" + +src_prepare() { + kde5_src_prepare + + if ! use_if_iuse handbook ; then + sed -e "/add_subdirectory(doc)/I s/^/#DONOTCOMPILE /" \ + -i kioslave/CMakeLists.txt || die "failed to comment add_subdirectory(doc)" + fi +} |