You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/girara/girara-0.3.1.ebuild

54 lines
1.1 KiB

# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson virtualx
DESCRIPTION="UI library that focuses on simplicity and minimalism"
HOMEPAGE="https://pwmt.org/projects/girara/"
if [[ ${PV} == *999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git"
EGIT_BRANCH="develop"
else
SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~x86"
fi
LICENSE="ZLIB"
SLOT="0"
IUSE="doc libnotify test"
RDEPEND="dev-libs/glib:2
dev-libs/json-c
>=x11-libs/gtk+-3.20:3
>=x11-libs/pango-1.14
libnotify? ( x11-libs/libnotify )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
test? ( dev-libs/check )"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
sed -i -e '/'-Werror.*'/d' meson.build || die "sed failed"
}
src_configure() {
local emesonargs=(
--libdir=/usr/$(get_libdir)
-Denable-json=true
-Denable-docs=$(usex doc true false)
-Denable-notify=$(usex libnotify true false)
)
meson_src_configure
}
src_test() {
virtx meson_src_test
}