From: "Brian Evans" <grknight@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxdm/
Date: Sat, 28 Aug 2021 13:15:06 +0000 (UTC) [thread overview]
Message-ID: <1630156439.a6a71ccec26b31c625be0bbc3bb3c2f7b45c42fd.grknight@gentoo> (raw)
commit: a6a71ccec26b31c625be0bbc3bb3c2f7b45c42fd
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 28 13:13:59 2021 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Sat Aug 28 13:13:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a71cce
lxde-base/lxdm: Update dependencies
Closes: https://bugs.gentoo.org/810329
Signed-off-by: Brian Evans <grknight <AT> gentoo.org>
lxde-base/lxdm/lxdm-0.5.3-r3.ebuild | 83 +++++++++++++++++++++++++++++++++++++
1 file changed, 83 insertions(+)
diff --git a/lxde-base/lxdm/lxdm-0.5.3-r3.ebuild b/lxde-base/lxdm/lxdm-0.5.3-r3.ebuild
new file mode 100644
index 00000000000..0e23294b03a
--- /dev/null
+++ b/lxde-base/lxdm/lxdm-0.5.3-r3.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools strip-linguas systemd
+
+DESCRIPTION="LXDE Display Manager"
+HOMEPAGE="https://wiki.lxde.org/en/LXDM"
+SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+
+IUSE="debug elogind nls pam systemd"
+
+# Although cairo, gdk-pixbuf, and pango are not directly checked and often forced by gtk+
+# They are directly referenced in the C code of the greeter and config util
+DEPEND="
+ dev-libs/glib:2
+ x11-libs/cairo
+ x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:3
+ x11-libs/pango
+ x11-libs/libX11
+ x11-libs/libxcb:0=
+ virtual/libcrypt:0=
+ pam? ( sys-libs/pam )"
+# We only use the pam modules and not actually link to the code
+RDEPEND="${DEPEND}
+ elogind? ( sys-auth/elogind[pam] )
+ systemd? ( sys-apps/systemd[pam] )
+"
+BDEPEND="
+ app-text/iso-codes
+ >=dev-util/intltool-0.40
+ virtual/pkgconfig
+ nls? ( sys-devel/gettext )
+"
+DOCS=( AUTHORS README TODO )
+
+REQUIRED_USE="?? ( elogind systemd ) elogind? ( pam ) systemd? ( pam )"
+
+src_prepare() {
+ # Upstream bug, tarball contains pre-made lxdm.conf
+ rm "${S}"/data/lxdm.conf || die
+
+ # Fix consolekit and selinux
+ eapply "${FILESDIR}/${P}-pam.patch"
+ # Apply all upstream fixes in git until 2016-11-11
+ eapply "${FILESDIR}/lxdm-0.5.3-upstream-fixes.patch"
+ eapply_user
+
+ # this replaces the bootstrap/autogen script in most packages
+ eautoreconf
+
+ # process LINGUAS
+ if use nls; then
+ einfo "Running intltoolize ..."
+ intltoolize --force --copy --automake || die
+ strip-linguas -i "${S}/po" || die
+ fi
+}
+src_configure() {
+ econf --enable-password \
+ --with-x \
+ --with-xconn=xcb \
+ --with-systemdsystemunitdir=$(systemd_get_systemunitdir) \
+ --disable-consolekit \
+ --enable-gtk3 \
+ $(use_enable nls) \
+ $(use_enable debug) \
+ $(use_with pam)
+}
+
+src_install() {
+ default_src_install
+
+ #Use Gentoo specific Xsession startup file
+ exeinto /etc/${PN}
+ doexe "${FILESDIR}"/Xsession
+}
next reply other threads:[~2021-08-28 13:15 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-28 13:15 Brian Evans [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-01-01 5:23 [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxdm/ Brian Evans
2023-01-01 5:21 Brian Evans
2022-02-11 20:46 Arthur Zamarin
2021-11-09 13:46 Brian Evans
2021-11-09 0:46 Sam James
2021-11-08 6:22 Sam James
2021-11-07 21:38 Sam James
2021-11-07 13:35 Jakov Smolić
2021-08-27 20:06 Sam James
2021-07-23 5:54 Yixun Lan
2021-06-30 10:15 Ulrich Müller
2021-02-15 10:49 Sam James
2021-02-15 0:38 Sam James
2021-02-07 15:09 Brian Evans
2021-02-07 14:33 Brian Evans
2020-12-02 23:21 Sam James
2020-10-06 18:06 Mikle Kolyada
2020-05-11 6:55 Joonas Niilola
2019-10-12 20:26 Mikle Kolyada
2019-05-26 11:38 Mikle Kolyada
2018-04-08 22:42 Patrice Clement
2016-08-14 18:13 Brian Evans
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1630156439.a6a71ccec26b31c625be0bbc3bb3c2f7b45c42fd.grknight@gentoo \
--to=grknight@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox