summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-09-30 03:07:09 +0200
committerLars Wendler <polynomial-c@gentoo.org>2017-09-30 03:07:45 +0200
commit0027b0f53ad9284114371b3e44a250f069aad319 (patch)
tree9d802fcbabfd0a5b8887c4e0b2cb687b5b2938da
parentx11-misc/lightdm-gtk-greeter: Bump to version 2.0.3 (diff)
downloadgentoo-0027b0f53ad9284114371b3e44a250f069aad319.tar.gz
gentoo-0027b0f53ad9284114371b3e44a250f069aad319.tar.bz2
gentoo-0027b0f53ad9284114371b3e44a250f069aad319.zip
x11-misc/lightdm-gtk-greeter: Removed old.
Package-Manager: Portage-2.3.10, Repoman-2.3.3
-rw-r--r--x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild64
1 files changed, 0 insertions, 64 deletions
diff --git a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild b/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild
deleted file mode 100644
index 409a59503716..000000000000
--- a/x11-misc/lightdm-gtk-greeter/lightdm-gtk-greeter-2.0.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit versionator
-
-DESCRIPTION="LightDM GTK+ Greeter"
-HOMEPAGE="https://launchpad.net/lightdm-gtk-greeter"
-SRC_URI="https://launchpad.net/lightdm-gtk-greeter/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz
- branding? ( https://dev.gentoo.org/~hwoarang/distfiles/lightdm-gentoo-patch-2.tar.gz )"
-
-LICENSE="GPL-3 LGPL-3
- branding? ( CC-BY-3.0 )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="ayatana branding"
-
-COMMON_DEPEND="ayatana? ( dev-libs/libindicator:3 )
- x11-libs/gtk+:3
- >=x11-misc/lightdm-1.2.2"
-
-DEPEND="${COMMON_DEPEND}
- dev-util/intltool
- sys-devel/gettext
- xfce-base/exo"
-
-RDEPEND="${COMMON_DEPEND}
- x11-themes/gnome-themes-standard
- >=x11-themes/adwaita-icon-theme-3.14.1"
-
-GENTOO_BG="gentoo-bg_65.jpg"
-
-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
- default
-}
-
-src_configure() {
- econf --enable-kill-on-sigterm \
- $(use_enable ayatana libindicator)
-}
-
-src_install() {
- default
-
- if use branding; then
- insinto /etc/lightdm/
- doins "${WORKDIR}"/${PN}.conf
- insinto /usr/share/lightdm/backgrounds/
- doins "${WORKDIR}"/${GENTOO_BG}
- sed -i -e \
- "/background/s:=.*:=/usr/share/lightdm/backgrounds/${GENTOO_BG}:" \
- "${D}"/etc/lightdm/${PN}.conf || die
- newdoc "${WORKDIR}"/README.txt README-background.txt
- fi
-}