diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-30 22:52:23 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-10-30 22:52:23 +0100 |
commit | 840a187d1427acf128e406df4a993c3a166f626a (patch) | |
tree | 7fe985681d19eb21415cfbb2119d019a7dc4e1c4 /x11-misc | |
parent | sys-process/daemontools-encore: drop 1.11-r1 (diff) | |
download | gentoo-840a187d1427acf128e406df4a993c3a166f626a.tar.gz gentoo-840a187d1427acf128e406df4a993c3a166f626a.tar.bz2 gentoo-840a187d1427acf128e406df4a993c3a166f626a.zip |
x11-misc/wdm: drop 1.28-r8
Bug: https://bugs.gentoo.org/898892
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/wdm/wdm-1.28-r8.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/x11-misc/wdm/wdm-1.28-r8.ebuild b/x11-misc/wdm/wdm-1.28-r8.ebuild deleted file mode 100644 index 1deebf96a564..000000000000 --- a/x11-misc/wdm/wdm-1.28-r8.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools pam toolchain-funcs - -DESCRIPTION="WINGs Display Manager" -HOMEPAGE="https://github.com/voins/wdm" -SRC_URI="http://voins.program.ru/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ppc ~ppc64 ~sparc x86" -IUSE="pam selinux truetype" - -DEPEND=" - virtual/libcrypt:= - >=x11-wm/windowmaker-0.70.0 - x11-libs/libXmu - x11-libs/libXpm - x11-libs/libXt - pam? ( sys-libs/pam ) - truetype? ( x11-libs/libXft ) -" -RDEPEND="${DEPEND} - pam? ( >=sys-auth/pambase-20080219.1 ) -" -BDEPEND=" - sys-devel/gettext - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${P}-terminateServer.patch - "${FILESDIR}"/${P}-remove-fakehome.patch - "${FILESDIR}"/${P}-pkg_config.patch - "${FILESDIR}"/${P}-ar.patch -) - -src_prepare() { - default - eautoreconf -} -src_configure() { - tc-export AR - econf \ - --with-wdmdir="${EPREFIX}"/etc/X11/wdm \ - $(use_enable pam) \ - $(use_enable selinux) -} - -src_install() { - default - - rm -f "${ED}"/etc/pam.d/wdm || die - - if use pam; then - pamd_mimic system-local-login wdm auth account password session - fi -} |