diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/pidgin-hotkeys | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/pidgin-hotkeys')
-rw-r--r-- | community/pidgin-hotkeys/PKGBUILD | 31 | ||||
-rw-r--r-- | community/pidgin-hotkeys/pidgin-hotkeys.patch | 24 |
2 files changed, 0 insertions, 55 deletions
diff --git a/community/pidgin-hotkeys/PKGBUILD b/community/pidgin-hotkeys/PKGBUILD deleted file mode 100644 index bd2130cab..000000000 --- a/community/pidgin-hotkeys/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: PKGBUILD 80723 2012-12-01 13:56:24Z fyan $ -# Maintainer: Felix Yan <felixonmars@gmail.com> -# Contributor: Lukas Fleischer <archlinux at cryptocrack dot de> -# Contributor: detto <detto-brumm@freenet.de> - -pkgname=pidgin-hotkeys -pkgver=0.2.4 -pkgrel=2 -pkgdesc="A Pidgin plugin that allows you to define global hotkeys." -arch=('i686' 'x86_64') -url="http://pidgin-hotkeys.sourceforge.net" -license=('GPL') -depends=('pidgin') -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" - "pidgin-hotkeys.patch") -md5sums=('553aae7319861af9e8716bfe0ba45c30' - '0726353af56270164d7af88470722dd0') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - patch -Np0 -i ../pidgin-hotkeys.patch - - ./configure --prefix=/usr - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install -} diff --git a/community/pidgin-hotkeys/pidgin-hotkeys.patch b/community/pidgin-hotkeys/pidgin-hotkeys.patch deleted file mode 100644 index 427295981..000000000 --- a/community/pidgin-hotkeys/pidgin-hotkeys.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- src/hotkeys.c 2007-06-22 20:37:00.000000000 +0200 -+++ src/hotkeys.c 2008-04-18 16:08:46.000000000 +0200 -@@ -152,15 +152,19 @@ - - if ((l = get_pending_list(1))) - { -- pidgin_conv_present_conversation((PurpleConversation *)l->data); -+ PurpleConversation *conv = l->data; -+ pidgin_conv_present_conversation(conv); - - #ifdef GDK_WINDOWING_X11 - { - GtkWindow *gtkwindow; -+ PidginConversation *gtkconv = PIDGIN_CONVERSATION(conv); - -- gtkwindow = GTK_WINDOW(pidgin_conv_get_window(PIDGIN_CONVERSATION((PurpleConversation *)l->data))->window); -+ gtkwindow = GTK_WINDOW(pidgin_conv_get_window(PIDGIN_CONVERSATION(conv))->window); - /*gtk_window_present(gtkwindow);*/ - hacky_active_window(GTK_WIDGET(gtkwindow)); -+ -+ pidgin_conv_window_switch_gtkconv(gtkconv->win, gtkconv); - } - #endif - g_list_free(l); |