From dbffe56f58d40a9a456baeba5d488c9f968a352a Mon Sep 17 00:00:00 2001 From: root Date: Fri, 23 Aug 2013 02:07:26 -0700 Subject: Fri Aug 23 02:06:53 PDT 2013 --- community/tilda/PKGBUILD | 31 +++++++++++++++++++++++-------- community/tilda/tab-count-fix.patch | 11 +++++++++++ community/tilda/tilda.changelog | 28 ++++++++++++++++------------ 3 files changed, 50 insertions(+), 20 deletions(-) create mode 100755 community/tilda/tab-count-fix.patch (limited to 'community/tilda') diff --git a/community/tilda/PKGBUILD b/community/tilda/PKGBUILD index 787e5f40d..a5b425ed8 100644 --- a/community/tilda/PKGBUILD +++ b/community/tilda/PKGBUILD @@ -1,21 +1,34 @@ -# $Id: PKGBUILD 95282 2013-08-08 19:28:31Z jlichtblau $ +# $Id: PKGBUILD 96249 2013-08-22 17:19:28Z alucryd $ # Maintainer: Jaroslav Lichtblau # Contributor: Douglas Soares de Andrade # Contributor: William Rea pkgname=tilda pkgver=1.1.7 -pkgrel=1 +pkgrel=3 pkgdesc="A Gtk based drop down terminal for Linux and Unix" arch=('i686' 'x86_64') url="https://github.com/lanoxx/tilda" license=('GPL') -depends=('vte3' 'confuse' 'gtk3') -source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz) -sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7') +depends=('vte3' 'confuse') +source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz + start-hidden-fix.patch + tab-count-fix.patch) +sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7' + 'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96' + '5d80a76f904a2094cd7b156654ea6d1860c319fc6c18927f2fb342c0f477c110') + +prepare() { + cd $pkgname-$pkgname-$pkgver + + patch -Np1 -i ../start-hidden-fix.patch + patch -Np1 -i ../tab-count-fix.patch + sed 's/Exec=.*/Exec=tilda/; s/Icon=.*/Icon=tilda/' -i tilda.desktop.in + +} build() { - cd $srcdir/$pkgname-$pkgname-$pkgver + cd $pkgname-$pkgname-$pkgver ./autogen.sh ./configure --prefix=/usr @@ -23,7 +36,9 @@ build() { } package() { - cd $srcdir/$pkgname-$pkgname-$pkgver + cd $pkgname-$pkgname-$pkgver - make DESTDIR=${pkgdir} install + make DESTDIR="$pkgdir" install } + +# vim: ts=2 sw=2 et: diff --git a/community/tilda/tab-count-fix.patch b/community/tilda/tab-count-fix.patch new file mode 100755 index 000000000..b0e1522a1 --- /dev/null +++ b/community/tilda/tab-count-fix.patch @@ -0,0 +1,11 @@ +--- a/src/tilda_window.c ++++ b/src/tilda_window.c +@@ -378,7 +378,7 @@ static gboolean goto_tab_generic (tilda_window *tw, guint tab_number) + + if (g_list_length (tw->terms) > (tab_number-1)) + { +- goto_tab (tw, g_list_length (tw->terms) - tab_number); ++ goto_tab (tw, tab_number - 1); + return TRUE; + } + diff --git a/community/tilda/tilda.changelog b/community/tilda/tilda.changelog index f5a9e46d9..9885de98e 100644 --- a/community/tilda/tilda.changelog +++ b/community/tilda/tilda.changelog @@ -1,18 +1,22 @@ -2013-08-08 Jaroslav Lichtblau - * tilda 1.1.7-1 +2013-08-22 Maxime Gauduin + * tilda 1.1.7-3 + * Fixes FS#36542, FS#36516 and FS#36543 -2012-06-02 Jaroslav Lichtblau - * FS#29754 fixed +2013-08-08 Jaroslav Lichtblau + * tilda 1.1.7-1 -2011-08-28 Jaroslav Lichtblau - * FS#25762 fixed +2012-06-02 Jaroslav Lichtblau + * FS#29754 fixed -2008-04-29 Mateusz Herych - * Updated for x86_64 - 0.9.6 +2011-08-28 Jaroslav Lichtblau + * FS#25762 fixed -2008-04-28 Douglas Soares de Andrade - * Updated for i686 - 0.9.6 +2008-04-29 Mateusz Herych + * Updated for x86_64 - 0.9.6 -2007-12-30 Douglas Soares de Andrade - * Updated to newer version - 0.9.5 +2008-04-28 Douglas Soares de Andrade + * Updated for i686 - 0.9.6 + +2007-12-30 Douglas Soares de Andrade + * Updated to newer version - 0.9.5 -- cgit v1.2.3-54-g00ecf