summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2021-11-09 08:45:47 -0500
committerBrian Evans <grknight@gentoo.org>2021-11-09 08:45:47 -0500
commitb54fe7cddaeb4ff9a131bad5b2df4e9dca724878 (patch)
tree1f83e6e32cc0e3a22537cbd3590d3170c9066ae0 /lxde-base
parentnet-misc/yt-dlp: remove some non-essential deps / use optfeature (diff)
downloadgentoo-b54fe7cddaeb4ff9a131bad5b2df4e9dca724878.tar.gz
gentoo-b54fe7cddaeb4ff9a131bad5b2df4e9dca724878.tar.bz2
gentoo-b54fe7cddaeb4ff9a131bad5b2df4e9dca724878.zip
lxde-base/lxdm: Drop old revision
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'lxde-base')
-rw-r--r--lxde-base/lxdm/lxdm-0.5.3-r2.ebuild73
1 files changed, 0 insertions, 73 deletions
diff --git a/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild b/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild
deleted file mode 100644
index a09eebe268f8..000000000000
--- a/lxde-base/lxdm/lxdm-0.5.3-r2.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# 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"
-
-DEPEND="
- x11-libs/libxcb
- x11-libs/gtk+:3
- 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=">=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
-}