system/tilda: Updated for version 1.1.11 + new maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Ryan P.C. McQuen 2014-04-13 09:53:35 +07:00 committed by Willy Sudiarto Raharjo
parent 8c75fe4b43
commit 05e996ba9e
5 changed files with 16 additions and 32 deletions

View file

@ -1,4 +1,4 @@
Tilda is a Linux terminal taking after the likeness of many classic
terminals from first person shooter games, Quake, Doom and Half-Life
(to name a few), where the terminal has no border and is hidden from
the desktop until a key is pressed.
the desktop until a key is pressed (default key is F1).

View file

@ -1,13 +0,0 @@
Index: tilda-0.9.6/src/tomboykeybinder.h
===================================================================
--- tilda-0.9.6.orig/src/tomboykeybinder.h
+++ tilda-0.9.6/src/tomboykeybinder.h
@@ -2,7 +2,7 @@
#ifndef __TOMBOY_KEY_BINDER_H__
#define __TOMBOY_KEY_BINDER_H__
-#include <glib/gtypes.h>
+#include <glib.h>
G_BEGIN_DECLS

View file

@ -13,7 +13,7 @@ tilda: terminals from first person shooter games, Quake, Doom and Half-Life
tilda: (to name a few), where the terminal has no border and is hidden from
tilda: the desktop until a key is pressed.
tilda:
tilda: http://tilda.sourceforge.net/
tilda: https://github.com/lanoxx/tilda
tilda:
tilda:
tilda:

View file

@ -3,6 +3,7 @@
# Slackware build script for tilda
#
# Copyright 2009 Erik W. Hanson, Minneapolis, MN, USA
# Copyright 2014 Ryan P.C. McQuen, WA, ryan.q@linux.com
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,8 +24,8 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=tilda
VERSION=0.9.6
BUILD=${BUILD:-2}
VERSION=${VERSION:-1.1.11}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -54,9 +55,9 @@ fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cd $PRGNAM-$VERSION || exit 1
rm -rf $PRGNAM-$PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
cd $PRGNAM-$PRGNAM-$VERSION || exit 1
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
@ -64,12 +65,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
# Starting with glib 2.32 it is now mandatory to
# include glib.h instead of individual headers.
patch -p1 -i $CWD/glib-single-include.patch
CFLAGS="$SLKCFLAGS" \
./configure \
./autogen.sh \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \

View file

@ -1,10 +1,10 @@
PRGNAM="tilda"
VERSION="0.9.6"
HOMEPAGE="http://tilda.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/tilda/tilda-0.9.6.tar.gz"
MD5SUM="b44ebe04fdfd312e9ddc5e0ed77f4289"
VERSION="1.1.11"
HOMEPAGE="https://github.com/lanoxx/tilda"
DOWNLOAD="https://github.com/lanoxx/tilda/archive/tilda-1.1.11.tar.gz"
MD5SUM="1be3729ea3018677e8e71b839001dfbd"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="confuse"
MAINTAINER="Erik Hanson"
EMAIL="erik@slackbuilds.org"
REQUIRES="confuse vte3"
MAINTAINER="Ryan P.C. McQuen"
EMAIL="ryan.q@linux.com"