diff options
Diffstat (limited to 'app-misc/mako/mako-1.4.1.ebuild')
-rw-r--r-- | app-misc/mako/mako-1.4.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-misc/mako/mako-1.4.1.ebuild b/app-misc/mako/mako-1.4.1.ebuild new file mode 100644 index 0000000..8f99a74 --- /dev/null +++ b/app-misc/mako/mako-1.4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils meson ninja-utils + +DESCRIPTION="A lightweight Wayland notification daemon" +HOMEPAGE="https://wayland.emersion.fr/mako" + +SRC_URI="https://github.com/emersion/mako/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="elogind systemd" + +RDEPEND=" + dev-libs/wayland + x11-libs/pango + x11-libs/cairo + elogind? ( sys-auth/elogind ) + systemd? ( sys-apps/systemd ) + " + +DEPEND="${RDEPEND} + dev-util/meson + virtual/pkgconfig" + +src_configure() { + local emesonargs=() + meson_src_configure +} |