diff options
author | Brian Evans <grknight@gentoo.org> | 2021-02-07 09:30:02 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2021-02-07 09:33:48 -0500 |
commit | 941587666974f3be867ff2dd18c68d92881403d0 (patch) | |
tree | 9e5db7391c5833961856ed63e473e63caf24c563 /lxde-base/lxdm | |
parent | app-crypt/gnupg: Drop old (diff) | |
download | gentoo-941587666974f3be867ff2dd18c68d92881403d0.tar.gz gentoo-941587666974f3be867ff2dd18c68d92881403d0.tar.bz2 gentoo-941587666974f3be867ff2dd18c68d92881403d0.zip |
lxde-base/lxdm: Drop gtk3 USE; Replace eutils for l10n inherit
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'lxde-base/lxdm')
-rw-r--r-- | lxde-base/lxdm/lxdm-0.5.3-r2.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild b/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild index b15ace55d6d0..b19ecf62963d 100644 --- a/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild +++ b/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -# Using strip-linguas in eutils -inherit eutils autotools systemd +inherit l10n autotools systemd DESCRIPTION="LXDE Display Manager" HOMEPAGE="https://wiki.lxde.org/en/LXDM" @@ -14,12 +13,11 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~ppc x86" -IUSE="debug elogind +gtk3 nls pam systemd" +IUSE="debug elogind nls pam systemd" DEPEND=" x11-libs/libxcb - gtk3? ( x11-libs/gtk+:3 ) - !gtk3? ( x11-libs/gtk+:2 ) + x11-libs/gtk+:3 nls? ( sys-devel/gettext ) pam? ( sys-libs/pam )" # We only use the pam modules and not actually link to the code @@ -59,7 +57,7 @@ src_configure() { --with-xconn=xcb \ --with-systemdsystemunitdir=$(systemd_get_systemunitdir) \ --disable-consolekit \ - $(use_enable gtk3) \ + --enable-gtk3 \ $(use_enable nls) \ $(use_enable debug) \ $(use_with pam) |