public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in lxde-base/lxdm: lxdm-0.4.1-r9.ebuild ChangeLog
@ 2013-12-23  7:43 Pavel Kazakov (nullishzero)
  0 siblings, 0 replies; 2+ messages in thread
From: Pavel Kazakov (nullishzero) @ 2013-12-23  7:43 UTC (permalink / raw
  To: gentoo-commits

nullishzero    13/12/23 07:43:58

  Modified:             ChangeLog
  Added:                lxdm-0.4.1-r9.ebuild
  Log:
  Make pam a conditional subdirectory; bug #469512
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x39E7AB2E)

Revision  Changes    Path
1.32                 lxde-base/lxdm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	22 Dec 2013 13:03:07 -0000	1.31
+++ ChangeLog	23 Dec 2013 07:43:58 -0000	1.32
@@ -1,6 +1,12 @@
 # ChangeLog for lxde-base/lxdm
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.31 2013/12/22 13:03:07 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.32 2013/12/23 07:43:58 nullishzero Exp $
+
+*lxdm-0.4.1-r9 (23 Dec 2013)
+
+  23 Dec 2013; Pavel Kazakov <nullishzero@gentoo.org>
+  +files/lxdm-0.4.1-fix-optional-pam.patch, +lxdm-0.4.1-r9.ebuild:
+  Make pam a conditional subdirectory; bug #469512
 
   22 Dec 2013; Markos Chandras <hwoarang@gentoo.org>
   files/lxdm-0.4.1-optional-consolekit.patch:



1.1                  lxde-base/lxdm/lxdm-0.4.1-r9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild?rev=1.1&content-type=text/plain

Index: lxdm-0.4.1-r9.ebuild
===================================================================
# 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-r9.ebuild,v 1.1 2013/12/23 07:43:58 nullishzero Exp $

EAPI="2"

WANT_AUTOMAKE="1.12" #493996
inherit eutils autotools systemd

DESCRIPTION="LXDE Display Manager"
HOMEPAGE="http://lxde.org"
SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~x86"

IUSE="consolekit debug gtk3 nls pam"

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() {
	# Upstream bug, tarball contains pre-made lxdm.conf
	rm "${S}"/data/lxdm.conf || die

	# There is consolekit
	epatch "${FILESDIR}/${P}-pam_console-disable.patch"
	# Fix null pointer dereference, backported from git
	epatch "${FILESDIR}/${P}-git-fix-null-pointer-deref.patch"

	epatch "${FILESDIR}"/${P}-configure-add-pam.patch

	# 403999
	epatch "${FILESDIR}"/${P}-missing-pam-defines.patch

	# 412025
	epatch "${FILESDIR}"/${P}-event-check.patch

	# 393329 Selinux support
	epatch "${FILESDIR}"/${P}-selinux-support.patch

	# See https://bugs.launchpad.net/ubuntu/+source/lxdm/+bug/922363
	epatch "${FILESDIR}/${P}-fix-pam-100-cpu.patch"

	# Optional Consolekit support. bug #443666
	epatch "${FILESDIR}"/${P}-optional-consolekit.patch

	# 469512
	epatch "${FILESDIR}"/${P}-fix-optional-pam.patch

	# 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 README TODO || die
	systemd_dounit "${FILESDIR}"/${PN}.service
}

pkg_postinst() {
	echo
	elog "Take into consideration that LXDM is in the early stages of development!"
	echo
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in lxde-base/lxdm: lxdm-0.4.1-r9.ebuild ChangeLog
@ 2014-03-03 23:54 Pacho Ramos (pacho)
  0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-03 23:54 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/03 23:54:43

  Modified:             lxdm-0.4.1-r9.ebuild ChangeLog
  Log:
  amd64 stable, bug #499318
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  lxde-base/lxdm/lxdm-0.4.1-r9.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild?r1=1.2&r2=1.3

Index: lxdm-0.4.1-r9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lxdm-0.4.1-r9.ebuild	24 Feb 2014 00:58:33 -0000	1.2
+++ lxdm-0.4.1-r9.ebuild	3 Mar 2014 23:54:43 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 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-r9.ebuild,v 1.2 2014/02/24 00:58:33 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/lxdm-0.4.1-r9.ebuild,v 1.3 2014/03/03 23:54:43 pacho Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc x86"
+KEYWORDS="amd64 ~arm ~ppc x86"
 
 IUSE="consolekit debug gtk3 nls pam"
 



1.34                 lxde-base/lxdm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/lxde-base/lxdm/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	24 Feb 2014 00:58:33 -0000	1.33
+++ ChangeLog	3 Mar 2014 23:54:43 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for lxde-base/lxdm
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.33 2014/02/24 00:58:33 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxdm/ChangeLog,v 1.34 2014/03/03 23:54:43 pacho Exp $
+
+  03 Mar 2014; Pacho Ramos <pacho@gentoo.org> lxdm-0.4.1-r9.ebuild:
+  amd64 stable, bug #499318
 
   23 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> lxdm-0.4.1-r9.ebuild:
   x86 stable wrt bug #499318





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-03-03 23:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-03 23:54 [gentoo-commits] gentoo-x86 commit in lxde-base/lxdm: lxdm-0.4.1-r9.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2013-12-23  7:43 Pavel Kazakov (nullishzero)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox