diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2019-04-19 14:47:27 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2019-04-19 14:47:45 -0500 |
commit | 1df95c202df2f39c879924fefe9d492a6308d0e9 (patch) | |
tree | d130a9e0dd070466abf87a01248ccf8bd44b73b8 /gui-apps/mako | |
parent | dev-lang/gnat-gpl: Fix missing ustat.h for gnat-gpl-2016 (diff) | |
download | gentoo-1df95c202df2f39c879924fefe9d492a6308d0e9.tar.gz gentoo-1df95c202df2f39c879924fefe9d492a6308d0e9.tar.bz2 gentoo-1df95c202df2f39c879924fefe9d492a6308d0e9.zip |
gui-apps/mako: 1.3 bump
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'gui-apps/mako')
-rw-r--r-- | gui-apps/mako/Manifest | 1 | ||||
-rw-r--r-- | gui-apps/mako/mako-1.3.ebuild | 51 | ||||
-rw-r--r-- | gui-apps/mako/mako-9999.ebuild | 2 |
3 files changed, 53 insertions, 1 deletions
diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest index d78133185877..cea20ea3071b 100644 --- a/gui-apps/mako/Manifest +++ b/gui-apps/mako/Manifest @@ -1 +1,2 @@ DIST mako-1.2.tar.gz 34443 BLAKE2B d505cbc7d25755ef3880adceaf8e33c277a90583c37ebd2691cd3d8d142f19f7eedca2ad167c0174723706c6f0a9b0688ddb34ed824e8231330265f1b5e3d645 SHA512 2552590f690a9749e9ef897052ca6aecf70eb01d77b1afe21335c84e257c6c8347abbd7f33150d561e8f52a9ae3a91c7a199a93cecf64a305934886522fc1454 +DIST mako-1.3.tar.gz 46482 BLAKE2B ea7699f713aded0476f3a9b88d90fa8d3bbd4e64e888caa68a98208625cdd15f1261c389dcb8ab43c6fbc77e1ebc0840b378443a1b350ff16adc59b98b9be0a8 SHA512 efada6ac413d80949669df3124ab9979537dcedd535132de57338b484ff2c81da8da59503a14dc2e9bbb266101659dd1d399d66456d383fdd1853d9137587259 diff --git a/gui-apps/mako/mako-1.3.ebuild b/gui-apps/mako/mako-1.3.ebuild new file mode 100644 index 000000000000..60eca46bf3e5 --- /dev/null +++ b/gui-apps/mako/mako-1.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway." +HOMEPAGE="https://github.com/emersion/mako" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/emersion/${PN}.git" +else + SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="+icons" + +DEPEND=" + dev-libs/wayland + x11-libs/pango + x11-libs/cairo + || ( + sys-apps/systemd + sys-auth/elogind + ) + sys-apps/dbus[user-session] + icons? ( + x11-libs/gtk+:3 + x11-libs/gdk-pixbuf + ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + virtual/pkgconfig + app-text/scdoc +" + +src_configure() { + local emesonargs=( + -Dicons=$(usex icons enabled disabled) + "-Dwerror=false" + ) + meson_src_configure +} diff --git a/gui-apps/mako/mako-9999.ebuild b/gui-apps/mako/mako-9999.ebuild index 8f1e8cc64cbb..60eca46bf3e5 100644 --- a/gui-apps/mako/mako-9999.ebuild +++ b/gui-apps/mako/mako-9999.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/emersion/${PN}.git" else SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~arm64 ~x86" fi LICENSE="MIT" |