summaryrefslogtreecommitdiff
path: root/community/tilda
diff options
context:
space:
mode:
Diffstat (limited to 'community/tilda')
-rw-r--r--community/tilda/PKGBUILD35
-rw-r--r--community/tilda/tilda-conf-sigsegv.patch11
-rw-r--r--community/tilda/tilda-fix.patch24
-rw-r--r--community/tilda/tilda-glib2.patch11
-rw-r--r--community/tilda/tilda.changelog8
5 files changed, 14 insertions, 75 deletions
diff --git a/community/tilda/PKGBUILD b/community/tilda/PKGBUILD
index 19ba559f2..787e5f40d 100644
--- a/community/tilda/PKGBUILD
+++ b/community/tilda/PKGBUILD
@@ -1,42 +1,29 @@
-# $Id: PKGBUILD 71879 2012-06-02 18:37:37Z jlichtblau $
+# $Id: PKGBUILD 95282 2013-08-08 19:28:31Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=tilda
-pkgver=0.9.6
-pkgrel=6
-pkgdesc="Linux terminal based on classic terminals from first person shooter games"
+pkgver=1.1.7
+pkgrel=1
+pkgdesc="A Gtk based drop down terminal for Linux and Unix"
arch=('i686' 'x86_64')
-url="http://tilda.sourceforge.net"
+url="https://github.com/lanoxx/tilda"
license=('GPL')
-depends=('vte' 'confuse' 'libglade')
-makedepends=('gawk')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
- tilda-fix.patch tilda-glib2.patch tilda-conf-sigsegv.patch)
-sha256sums=('b3bd0f63eb83a5001ef26056ca116e5f8005d454f8f82a94f334868862068411'
- 'ceac38bb33a0e8141f7b6cbc55807c999729319f2fdfaa3c375aa1a541d29729'
- 'c71cdd8cdc1fdd76c919605c6b7a1b89e4929d20630db17145e6c2b584c8aaf9'
- 'e28c731c0ca94210d5e4f4b7dd0eee9952405593f1d06e4ab2d87ee299e3e533')
+depends=('vte3' 'confuse' 'gtk3')
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7')
build() {
- cd $srcdir/$pkgname-$pkgver
-
-# gdk && desktop file fix FS#25762
- patch -p0 -i ${srcdir}/$pkgname-fix.patch
-
-# glib2 fix
- patch -p0 -i ${srcdir}/$pkgname-glib2.patch
-
-# fix segfaults on malformed config files FS#29754
- patch -p0 -i ${srcdir}/$pkgname-conf-sigsegv.patch
+ cd $srcdir/$pkgname-$pkgname-$pkgver
+ ./autogen.sh
./configure --prefix=/usr
make
}
package() {
- cd $srcdir/$pkgname-$pkgver
+ cd $srcdir/$pkgname-$pkgname-$pkgver
make DESTDIR=${pkgdir} install
}
diff --git a/community/tilda/tilda-conf-sigsegv.patch b/community/tilda/tilda-conf-sigsegv.patch
deleted file mode 100644
index a48aad0a3..000000000
--- a/community/tilda/tilda-conf-sigsegv.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/key_grabber.c 2008-04-08 00:12:31.000000000 +0200
-+++ src/key_grabber.c 2012-05-17 19:43:25.227699421 +0200
-@@ -257,7 +257,7 @@
- gboolean tilda_keygrabber_bind (const gchar *keystr, tilda_window *tw)
- {
- /* Empty strings are no good */
-- if (strcmp ("", keystr) == 0)
-+ if (!keystr || strcmp ("", keystr) == 0)
- return FALSE;
-
- return tomboy_keybinder_bind (keystr, onKeybindingPull, tw);
diff --git a/community/tilda/tilda-fix.patch b/community/tilda/tilda-fix.patch
deleted file mode 100644
index a6d273c26..000000000
--- a/community/tilda/tilda-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/key_grabber.c 2008-04-08 01:12:31.000000000 +0300
-+++ src/key_grabber.c 2009-10-16 17:39:16.399679408 +0300
-@@ -190,7 +190,7 @@
- * Overriding the user time here seems to work a lot better than calling
- * gtk_window_present_with_time() here, or at the end of the function. I have
- * no idea why, they should do the same thing. */
-- gdk_x11_window_set_user_time (GTK_WIDGET(tw->window)->window,
-+ gdk_x11_window_set_user_time (GTK_WIDGET(tw->window),
- tomboy_keybinder_get_current_event_time());
- gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), config_getint ("y_pos"));
- gtk_widget_show (GTK_WIDGET(tw->window));
-
---- tilda.desktop.in 2007-03-16 04:53:34.000000000 +0100
-+++ tilda.desktop.in 2011-08-28 19:08:53.000000000 +0200
-@@ -2 +1,0 @@
--Encoding=UTF-8
-@@ -4,2 +3,2 @@
--Exec=@BINDIR@/tilda
--Icon=@PIXMAPSDIR@/tilda.png
-+Exec=tilda
-+Icon=tilda
-@@ -8 +7 @@
--Categories=GNOME;GTK;Application;Utility;TerminalEmulator;
-+Categories=GNOME;GTK;Utility;TerminalEmulator;System;
diff --git a/community/tilda/tilda-glib2.patch b/community/tilda/tilda-glib2.patch
deleted file mode 100644
index 2d048e565..000000000
--- a/community/tilda/tilda-glib2.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/tomboykeybinder.h 2007-07-15 04:31:19.000000000 +0200
-+++ src/tomboykeybinder.h 2012-05-17 19:42:06.613150329 +0200
-@@ -2,7 +2,7 @@
- #ifndef __TOMBOY_KEY_BINDER_H__
- #define __TOMBOY_KEY_BINDER_H__
-
--#include <glib/gtypes.h>
-+//#include <glib/gtypes.h>
-
- G_BEGIN_DECLS
-
diff --git a/community/tilda/tilda.changelog b/community/tilda/tilda.changelog
index 4248e9a32..f5a9e46d9 100644
--- a/community/tilda/tilda.changelog
+++ b/community/tilda/tilda.changelog
@@ -1,20 +1,18 @@
-2012-06-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+2013-08-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * tilda 1.1.7-1
+2012-06-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* FS#29754 fixed
2011-08-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
-
* FS#25762 fixed
2008-04-29 Mateusz Herych <heniekk@gmail.com>
-
* Updated for x86_64 - 0.9.6
2008-04-28 Douglas Soares de Andrade <dsa@aur.archlinux.org>
-
* Updated for i686 - 0.9.6
2007-12-30 Douglas Soares de Andrade <dsa@aur.archlinux.org>
-
* Updated to newer version - 0.9.5