diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-09-11 20:31:01 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-09-11 20:31:01 +0000 |
commit | 3423c497293aa09c1a44f0f2e725f77b823934ec (patch) | |
tree | 074aa1cbe002bffeb0d7d3ae897acc7fd7fbe3e8 /x11-misc/lightdm-gtk-greeter | |
parent | Version bump (diff) | |
download | gentoo-2-3423c497293aa09c1a44f0f2e725f77b823934ec.tar.gz gentoo-2-3423c497293aa09c1a44f0f2e725f77b823934ec.tar.bz2 gentoo-2-3423c497293aa09c1a44f0f2e725f77b823934ec.zip |
Version bump
(Portage version: 2.1.11.14/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/lightdm-gtk-greeter')
-rw-r--r-- | x11-misc/lightdm-gtk-greeter/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-1.3.1.ebuild | 46 |
2 files changed, 53 insertions, 1 deletions
diff --git a/x11-misc/lightdm-gtk-greeter/ChangeLog b/x11-misc/lightdm-gtk-greeter/ChangeLog index 7f516b01961c..0fd4cf3a13df 100644 --- a/x11-misc/lightdm-gtk-greeter/ChangeLog +++ b/x11-misc/lightdm-gtk-greeter/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/lightdm-gtk-greeter # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog,v 1.8 2012/07/19 21:38:22 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/ChangeLog,v 1.9 2012/09/11 20:31:01 hwoarang Exp $ + +*lightdm-gtk-greeter-1.3.1 (11 Sep 2012) + + 11 Sep 2012; Markos Chandras <hwoarang@gentoo.org> + +lightdm-gtk-greeter-1.3.1.ebuild: + Version bump *lightdm-gtk-greeter-1.1.6 (19 Jul 2012) diff --git a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-1.3.1.ebuild b/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-1.3.1.ebuild new file mode 100644 index 000000000000..cdc604832631 --- /dev/null +++ b/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-1.3.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-1.3.1.ebuild,v 1.1 2012/09/11 20:31:01 hwoarang Exp $ + +EAPI=4 + +DESCRIPTION="LightDM GTK+ Greeter" +HOMEPAGE="http://launchpad.net/lightdm-gtk-greeter" +SRC_URI="http://launchpad.net/lightdm-gtk-greeter/1.4/${PV}/+download/${P}.tar.gz branding? ( +http://dev.gentoo.org/~hwoarang/distfiles/lightdm-gentoo-patch.tar.gz )" + +LICENSE="GPL-3 LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="branding" + +DEPEND="x11-libs/gtk+:3 + >=x11-misc/lightdm-1.2.2" +RDEPEND="!!<x11-misc/lightdm-1.1.1 + x11-libs/gtk+:3 + >=x11-misc/lightdm-1.2.2 + x11-themes/gnome-themes-standard + x11-themes/gnome-icon-theme" + +src_prepare() { + # Ok, this has to be fixed in the tarball but I am too lazy to do it. + # I will fix this once I decide to update the tarball with a new gentoo + # background + # Bug #404467 + if use branding; then + sed -i -e "/xft-hintstyle/s:slight:hintslight:" ${WORKDIR}/${PN}.conf || die + fi +} + +src_install() { + default + + if use branding; then + insinto /etc/lightdm/ + doins "${WORKDIR}"/${PN}.conf + insinto /usr/share/lightdm/backgrounds/ + doins "${WORKDIR}"/gentoo1024x768.png + sed -i -e "/background/s:=.*:=/usr/share/lightdm/backgrounds/gentoo1024x768.png:" \ + "${D}"/etc/lightdm/${PN}.conf || die + fi +} |