summaryrefslogtreecommitdiff
path: root/lxde-base
diff options
context:
space:
mode:
authorMarcin Deranek <gringo@slonko.net>2017-11-12 21:11:52 +0100
committerMarcin Deranek <gringo@slonko.net>2017-11-12 21:11:52 +0100
commit5eb9bf18511427769a2d15efdc505c7ea7257bdb (patch)
tree8fdd383d40524e8ecba828832d653171c9525649 /lxde-base
parent50808bddd7abfc7c2302e2c1478eaad82db2d348 (diff)
downloadportage-5eb9bf18511427769a2d15efdc505c7ea7257bdb.tar.gz
portage-5eb9bf18511427769a2d15efdc505c7ea7257bdb.tar.bz2
portage-5eb9bf18511427769a2d15efdc505c7ea7257bdb.zip
Already upstream. Removing.
Diffstat (limited to 'lxde-base')
-rw-r--r--lxde-base/lxdm/Manifest2
-rw-r--r--lxde-base/lxdm/lxdm-0.5.3.ebuild79
2 files changed, 0 insertions, 81 deletions
diff --git a/lxde-base/lxdm/Manifest b/lxde-base/lxdm/Manifest
deleted file mode 100644
index ed579d4..0000000
--- a/lxde-base/lxdm/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST lxdm-0.5.3.tar.xz 239132 SHA256 4891efee81c72a400cc6703e40aa76f3f3853833d048b72ec805da0f93567f2f SHA512 0e3539c595a71cb850c1756dd075b8d477a4e111a4167714057cac06650e9587f338f797f14122e7b2a2f4ad35b38cd7172b83e996758abeeaf0146d65bbc26f WHIRLPOOL f0b36b1da0ea558fcd04fe2dbf3b6e65afb1d9f19e4d7fdb1ededfc9e3b35c1135cdb24477ce3fce024029484174c3c7009e76a66fd84694220eee1dccf4802c
-EBUILD lxdm-0.5.3.ebuild 1923 SHA256 793ff57c9383f4c770f9705b7d88e4a88f45e279b9154f6451b68defe6958a40 SHA512 b825c55300db77b4c50e8541b797ddea3ffd2415b709a5b168c5d3aea5c25985d283e6e4876aac9fa06817ca4d5fd605d141b6679330000802780a6c6d2adacc WHIRLPOOL d0e1873645192b12033ae6c2fcf800ec54131236b0ff77a384cc803d6e0eb49e50561a477bf9d419db1dd343b617e91d276cfe34f35e60a8e9b672163d53e9be
diff --git a/lxde-base/lxdm/lxdm-0.5.3.ebuild b/lxde-base/lxdm/lxdm-0.5.3.ebuild
deleted file mode 100644
index 8627457..0000000
--- a/lxde-base/lxdm/lxdm-0.5.3.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r8.ebuild,v 1.2 2013/12/22 12:46:59 pacho Exp $
-
-EAPI="5"
-
-WANT_AUTOMAKE="1.12" #493996
-inherit eutils autotools systemd
-
-DESCRIPTION="LXDE Display Manager"
-HOMEPAGE="http://lxde.org"
-SRC_URI="mirror://sourceforge/lxdm/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-
-IUSE="consolekit debug gnome-keyring gtk3 nls pam selinux systemd"
-
-RDEPEND="consolekit? ( sys-auth/consolekit )
- x11-libs/libxcb
- gtk3? ( x11-libs/gtk+:3 )
- !gtk3? ( x11-libs/gtk+:2 )
- nls? ( sys-devel/gettext )
- pam? ( virtual/pam )"
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.40
- virtual/pkgconfig"
-
-src_prepare() {
- cd "${S}"
- # Upstream bug, tarball contains pre-made lxdm.conf
- rm data/lxdm.conf || die
-
- sed -i -e '/pam_console.so/d' pam/lxdm
-
- if ! use selinux; then
- sed -i -e '/pam_selinux.so/d' pam/lxdm
- fi
- if ! use gnome-keyring; then
- sed -i -e '/pam_gnome_keyring.so/d' pam/lxdm
- fi
- if use systemd; then
- echo -e "[cmd]\nreboot = systemctl reboot\nshutdown = systemctl poweroff" >> data/lxdm.conf.in
- fi
- # Allow user to apply any additional patches without modifing ebuild
- epatch_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 \
- $(use_enable consolekit) \
- $(use_enable gtk3) \
- $(use_enable nls) \
- $(use_enable debug) \
- $(use_with pam)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS COPYING INSTALL README TODO || die
-}
-
-pkg_postinst() {
- echo
- elog "Take into consideration that LXDM is in the early stages of development!"
- echo
-}