summaryrefslogtreecommitdiff
path: root/community/lightdm-gtk3-greeter
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-07-03 03:35:01 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-07-03 03:35:01 +0000
commit92723c41135cfb106d37d4343603e63dc99922ca (patch)
tree6190f189700c2e68570eefbfded247965b1bde5a /community/lightdm-gtk3-greeter
parent35f5198d4a73e45c4e9e22d638f5bfd5b9b4bc62 (diff)
Thu Jul 3 03:30:43 UTC 2014
Diffstat (limited to 'community/lightdm-gtk3-greeter')
-rwxr-xr-xcommunity/lightdm-gtk3-greeter/PKGBUILD43
-rw-r--r--community/lightdm-gtk3-greeter/lightdm-gtk-greeter.install13
-rw-r--r--community/lightdm-gtk3-greeter/tooltip-focus.patch24
3 files changed, 0 insertions, 80 deletions
diff --git a/community/lightdm-gtk3-greeter/PKGBUILD b/community/lightdm-gtk3-greeter/PKGBUILD
deleted file mode 100755
index 8f8a514f3..000000000
--- a/community/lightdm-gtk3-greeter/PKGBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD 110106 2014-04-24 08:37:24Z alucryd $
-# Maintainer: Maxime Gauduin <alucryd@gmail.com>
-# Contributor: Padfoot <padfoot@exemail.com.au>
-
-pkgname=lightdm-gtk3-greeter
-pkgver=1.8.4
-pkgrel=2
-epoch=1
-pkgdesc='GTK+ greeter for LightDM'
-arch=('i686' 'x86_64')
-url='https://launchpad.net/lightdm-gtk-greeter'
-license=('GPL3' 'LGPL3')
-depends=('gtk3' 'lightdm')
-makedepends=('exo' 'gnome-doc-utils' 'gobject-introspection' 'intltool')
-provides=("${pkgname/3/}")
-conflicts=("${pkgname/3/2}")
-backup=('etc/lightdm/lightdm-gtk-greeter.conf')
-install="${pkgname/3/}.install"
-source=("https://launchpad.net/${pkgname/3/}/${pkgver%.?}/${pkgver}/+download/${pkgname/3/}-${pkgver}.tar.gz"
- 'tooltip-focus.patch')
-sha256sums=('cb3e93bfcb8fbaf109e01080dc75ec9a6803afcb68acbf9eef3799be927a2c6c'
- '2dcf615181fc57cfcc02601d4d9845ef23af60a0a322a5208989849b279deec7')
-
-prepare() {
- cd ${pkgname/3/}-${pkgver}
-
- patch -Np1 -i ../tooltip-focus.patch
-}
-
-build() {
- cd ${pkgname/3/}-${pkgver}
-
- ./configure --prefix='/usr' --sbindir='/usr/bin' --sysconfdir='/etc' --libexecdir='/usr/lib/lightdm' --disable-static
- make
-}
-
-package() {
- cd ${pkgname/3/}-${pkgver}
-
- make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:
diff --git a/community/lightdm-gtk3-greeter/lightdm-gtk-greeter.install b/community/lightdm-gtk3-greeter/lightdm-gtk-greeter.install
deleted file mode 100644
index b72f4439b..000000000
--- a/community/lightdm-gtk3-greeter/lightdm-gtk-greeter.install
+++ /dev/null
@@ -1,13 +0,0 @@
-post_install() {
- gtk-update-icon-cache -ftq usr/share/icons/hicolor
-}
-
-post_update() {
- post_install
-}
-
-post_remove() {
- post_install
-}
-
-# vim: ts=2 sw=2 et:
diff --git a/community/lightdm-gtk3-greeter/tooltip-focus.patch b/community/lightdm-gtk3-greeter/tooltip-focus.patch
deleted file mode 100644
index 9444222a9..000000000
--- a/community/lightdm-gtk3-greeter/tooltip-focus.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/src/lightdm-gtk-greeter.c 2014-03-26 10:28:44 +0000
-+++ b/src/lightdm-gtk-greeter.c 2014-04-23 11:04:01 +0000
-@@ -2203,6 +2203,7 @@
- Window keyboard_xid = 0;
- GdkDisplay* display = gdk_x11_lookup_xdisplay (xevent->xmap.display);
- GdkWindow* win = gdk_x11_window_foreign_new_for_display (display, xwin);
-+ GdkWindowTypeHint win_type = gdk_window_get_type_hint (win);
-
- /* Check to see if this window is our onboard window, since we don't want to focus it. */
- if (keyboard_win)
-@@ -2211,8 +2212,10 @@
- #else
- keyboard_xid = gdk_x11_drawable_get_xid (keyboard_win);
- #endif
--
-- if (xwin != keyboard_xid && gdk_window_get_type_hint (win) != GDK_WINDOW_TYPE_HINT_NOTIFICATION)
-+
-+ if (xwin != keyboard_xid
-+ && win_type != GDK_WINDOW_TYPE_HINT_TOOLTIP
-+ && win_type != GDK_WINDOW_TYPE_HINT_NOTIFICATION)
- {
- gdk_window_focus (win, GDK_CURRENT_TIME);
- /* Make sure to keep keyboard above */
-