Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
Date: Fri, 19 Jul 2019 19:22:50
Message-Id: 1563564153.f5b932720d76ccfb817e61ae65f2412e15b2be10.prometheanfire@gentoo
1 commit: f5b932720d76ccfb817e61ae65f2412e15b2be10
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 19 19:22:33 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 19 19:22:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5b93272
7
8 gui-apps/mako: 1.4 bump
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.16
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 gui-apps/mako/Manifest | 1 +
14 gui-apps/mako/mako-1.4.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
18 index be62f810982..60f90c1b04b 100644
19 --- a/gui-apps/mako/Manifest
20 +++ b/gui-apps/mako/Manifest
21 @@ -1 +1,2 @@
22 DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259
23 +DIST mako-1.4.tar.gz 48418 BLAKE2B ebd3c2f6fb7d51df826cab469c3e12477ec4503e3dfdfb4e9700393c0d994f6d7fcce6f3471d5faf90c5eb4bfa766941b97b0c8a8a556b5639ad5f3612df3082 SHA512 6059103e3a0c0cca5b0f717fbd7522f9a13f3dd3d65fe674e65cc175122a3372041bee2050d253ccb47a2adaa1dfa3180a19276bcdcb20c1e00813d75e1b3683
24
25 diff --git a/gui-apps/mako/mako-1.4.ebuild b/gui-apps/mako/mako-1.4.ebuild
26 new file mode 100644
27 index 00000000000..60eca46bf3e
28 --- /dev/null
29 +++ b/gui-apps/mako/mako-1.4.ebuild
30 @@ -0,0 +1,51 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit meson
37 +
38 +DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
39 +HOMEPAGE="https://github.com/emersion/mako"
40 +
41 +if [[ ${PV} == 9999 ]]; then
42 + inherit git-r3
43 + EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
44 +else
45 + SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 + KEYWORDS="~amd64 ~arm64 ~x86"
47 +fi
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +IUSE="+icons"
52 +
53 +DEPEND="
54 + dev-libs/wayland
55 + x11-libs/pango
56 + x11-libs/cairo
57 + || (
58 + sys-apps/systemd
59 + sys-auth/elogind
60 + )
61 + sys-apps/dbus[user-session]
62 + icons? (
63 + x11-libs/gtk+:3
64 + x11-libs/gdk-pixbuf
65 + )
66 +"
67 +RDEPEND="
68 + ${DEPEND}
69 +"
70 +BDEPEND="
71 + virtual/pkgconfig
72 + app-text/scdoc
73 +"
74 +
75 +src_configure() {
76 + local emesonargs=(
77 + -Dicons=$(usex icons enabled disabled)
78 + "-Dwerror=false"
79 + )
80 + meson_src_configure
81 +}