diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2021-07-11 21:54:18 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2021-07-11 21:59:56 -0500 |
commit | f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f (patch) | |
tree | e256a7d36e4087bf2d7bb24dc61b5bbbb5987e5e /gui-apps | |
parent | sys-apps/tcp-wrappers: add 7.6.31 (diff) | |
download | gentoo-f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f.tar.gz gentoo-f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f.tar.bz2 gentoo-f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f.zip |
gui-apps/mako: 1.6 bump
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
Diffstat (limited to 'gui-apps')
-rw-r--r-- | gui-apps/mako/Manifest | 1 | ||||
-rw-r--r-- | gui-apps/mako/mako-1.6.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest index b52304f50a66..6f776759d1a1 100644 --- a/gui-apps/mako/Manifest +++ b/gui-apps/mako/Manifest @@ -1 +1,2 @@ DIST mako-1.5.tar.gz 57077 BLAKE2B 0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269 SHA512 64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47 +DIST mako-1.6.tar.gz 60468 BLAKE2B 77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13 SHA512 1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf diff --git a/gui-apps/mako/mako-1.6.ebuild b/gui-apps/mako/mako-1.6.ebuild new file mode 100644 index 000000000000..3387b2f9bc15 --- /dev/null +++ b/gui-apps/mako/mako-1.6.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 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} + >=dev-libs/wayland-protocols-1.21 +" +BDEPEND=" + virtual/pkgconfig + app-text/scdoc +" + +src_configure() { + local emesonargs=( + -Dicons=$(usex icons enabled disabled) + "-Dwerror=false" + ) + meson_src_configure +} |