diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2019-12-06 22:33:11 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2019-12-06 22:33:24 +0100 |
commit | a0d03eea4c731c9a87694e563933f97c42f498e3 (patch) | |
tree | eddd3b923b402ade553e56a67d7f7cac24ef257f /x11-misc/picom | |
parent | virtual/perl-Module-CoreList: Remove 5.30.0 version (diff) | |
download | gentoo-a0d03eea4c731c9a87694e563933f97c42f498e3.tar.gz gentoo-a0d03eea4c731c9a87694e563933f97c42f498e3.tar.bz2 gentoo-a0d03eea4c731c9a87694e563933f97c42f498e3.zip |
x11-misc/picom: fix typos on DEPEND vars and "_" in USE flag
Thanks Yaroslav for the notification (also spotted by qa-reports)
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'x11-misc/picom')
-rw-r--r-- | x11-misc/picom/metadata.xml | 2 | ||||
-rw-r--r-- | x11-misc/picom/picom-7.5.ebuild | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/x11-misc/picom/metadata.xml b/x11-misc/picom/metadata.xml index 5307197cc779..1cda4a2c157c 100644 --- a/x11-misc/picom/metadata.xml +++ b/x11-misc/picom/metadata.xml @@ -6,7 +6,7 @@ <name>Bernard Cafarelli</name> </maintainer> <use> - <flag name="config_file">Enable config file support</flag> + <flag name="config-file">Enable config file support</flag> <flag name="drm">Enable support for using drm for vsync</flag> <flag name="opengl">Enable features that require opengl (opengl backend, and opengl vsync methods)</flag> </use> diff --git a/x11-misc/picom/picom-7.5.ebuild b/x11-misc/picom/picom-7.5.ebuild index d3dd53d723d8..ecbc28097b10 100644 --- a/x11-misc/picom/picom-7.5.ebuild +++ b/x11-misc/picom/picom-7.5.ebuild @@ -13,18 +13,18 @@ SRC_URI="https://github.com/yshui/picom/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MPL-2.0 MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+config_file dbus doc +drm opengl pcre" +IUSE="+config-file dbus doc +drm opengl pcre" REQUIRED_USE="${PYTHON_REQUIRED_USE}" -RDPEPEND="${PYTHON_DEPS} +RDEPEND="${PYTHON_DEPS} dev-libs/libev dev-libs/uthash x11-libs/libX11 x11-libs/libxcb x11-libs/libXext x11-libs/pixman - config_file? ( + config-file? ( dev-libs/libconfig dev-libs/libxdg-basedir ) @@ -32,14 +32,14 @@ RDPEPEND="${PYTHON_DEPS} drm? ( x11-libs/libdrm ) opengl? ( virtual/opengl ) pcre? ( dev-libs/libpcre )" -DEPEND="${RDPEND} +DEPEND="${RDEPEND} x11-base/xorg-proto" BDEPEND="virtual/pkgconfig doc? ( app-text/asciidoc )" src_configure() { local emesonargs=( - $(meson_use config_file) + $(meson_use config-file config_file) $(meson_use dbus) $(meson_use doc build_docs) $(meson_use opengl) |