Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/smb4k/
Date: Thu, 15 Aug 2019 18:22:45
Message-Id: 1565893346.1682de7892e582e7ab75c9060613ac60b8bca5f3.asturm@gentoo
1 commit: 1682de7892e582e7ab75c9060613ac60b8bca5f3
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 15 17:51:14 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 15 18:22:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1682de78
7
8 net-misc/smb4k: 3.0.2 version bump
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-misc/smb4k/Manifest | 1 +
14 net-misc/smb4k/smb4k-3.0.2.ebuild | 68 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 69 insertions(+)
16
17 diff --git a/net-misc/smb4k/Manifest b/net-misc/smb4k/Manifest
18 index 38b0928d920..0a802d88daf 100644
19 --- a/net-misc/smb4k/Manifest
20 +++ b/net-misc/smb4k/Manifest
21 @@ -1 +1,2 @@
22 DIST smb4k-3.0.1.tar.xz 3826160 BLAKE2B e42d761d67ae6b25e75fc673eb18838607dc36d5c76d4cba63257d09c2e138fcc3b1e3600163188117a020327645b7fe320d4a25f7455f2585cdbcf567e3d941 SHA512 de61d7dc2f63657056d721ac5ef5c12e8c8393b674163c2888a63a58f5779b0efcc47c2acaee782979c4bd9abc008eb457b6fce31d085b3e80c0970a195528b9
23 +DIST smb4k-3.0.2.tar.xz 3824972 BLAKE2B 6f15bac77840669b9f9a6640e35f5b36b76653946bcef9d268452fd813c796480594b40744cf86ec5d79307294fb2f9592dc71013576efcb6c8fc607599778b9 SHA512 b60d50732ba84bae9e58f90ec18bb0fe59185814ec92e4f8adc1e699cfce61019f919fbdac2555b365c495ab1720f62b35b95c063f0c7c9466dc31487b8cb564
24
25 diff --git a/net-misc/smb4k/smb4k-3.0.2.ebuild b/net-misc/smb4k/smb4k-3.0.2.ebuild
26 new file mode 100644
27 index 00000000000..896232bad47
28 --- /dev/null
29 +++ b/net-misc/smb4k/smb4k-3.0.2.ebuild
30 @@ -0,0 +1,68 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +KDE_HANDBOOK="forceoptional"
37 +inherit kde5
38 +
39 +DESCRIPTION="Advanced network neighborhood browser"
40 +HOMEPAGE="https://sourceforge.net/p/smb4k/home/Home/"
41 +
42 +if [[ ${KDE_BUILD_TYPE} = release ]]; then
43 + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
44 + KEYWORDS="~amd64 ~x86"
45 +fi
46 +
47 +LICENSE="GPL-2"
48 +IUSE="plasma"
49 +
50 +DEPEND="
51 + $(add_frameworks_dep kauth)
52 + $(add_frameworks_dep kcompletion)
53 + $(add_frameworks_dep kconfig)
54 + $(add_frameworks_dep kconfigwidgets)
55 + $(add_frameworks_dep kcoreaddons)
56 + $(add_frameworks_dep kcrash)
57 + $(add_frameworks_dep kdbusaddons)
58 + $(add_frameworks_dep ki18n)
59 + $(add_frameworks_dep kiconthemes)
60 + $(add_frameworks_dep kio)
61 + $(add_frameworks_dep kjobwidgets)
62 + $(add_frameworks_dep knotifications)
63 + $(add_frameworks_dep kwallet)
64 + $(add_frameworks_dep kwidgetsaddons)
65 + $(add_frameworks_dep kwindowsystem)
66 + $(add_frameworks_dep kxmlgui)
67 + $(add_frameworks_dep solid)
68 + $(add_qt_dep qtdeclarative)
69 + $(add_qt_dep qtgui)
70 + $(add_qt_dep qtnetwork)
71 + $(add_qt_dep qtprintsupport)
72 + $(add_qt_dep qttest)
73 + $(add_qt_dep qtwidgets)
74 + net-fs/samba[cups]
75 +"
76 +RDEPEND="${DEPEND}
77 + plasma? (
78 + $(add_frameworks_dep plasma)
79 + $(add_qt_dep qtquickcontrols2)
80 + )
81 +"
82 +
83 +src_configure(){
84 + local mycmakeargs=(
85 + -DINSTALL_PLASMOID=$(usex plasma)
86 + )
87 + kde5_src_configure
88 +}
89 +
90 +pkg_postinst() {
91 + kde5_pkg_postinst
92 + elog "Users of Samba 4.7 and above please note that for the time being,"
93 + elog "the following setting has to be added to or changed in the [global]"
94 + elog "section of the smb.conf file:"
95 + elog
96 + elog "[global]"
97 + elog "client max protocol = NT1"
98 +}