summaryrefslogtreecommitdiffstats
path: root/abs/core/mv/tilda
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core/mv/tilda')
-rw-r--r--abs/core/mv/tilda/PKGBUILD26
-rw-r--r--abs/core/mv/tilda/config_053
-rw-r--r--abs/core/mv/tilda/tilda.install44
3 files changed, 0 insertions, 123 deletions
diff --git a/abs/core/mv/tilda/PKGBUILD b/abs/core/mv/tilda/PKGBUILD
deleted file mode 100644
index f8422bc..0000000
--- a/abs/core/mv/tilda/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Maintainer: William Rea <sillywilly@gmail.com>
-pkgname=tilda
-pkgver=0.9.6
-pkgrel=2
-pkgdesc="Linux terminal based on classic terminals from first person shooter games."
-url="http://tilda.sourceforge.net"
-license="GPL"
-depends=('vte' 'confuse' 'libglade' 'gtk2')
-makedepends=('gawk')
-source=('tilda-0.9.6.tar.gz' 'config_0')
-arch=('i686')
-build() {
-
- cd $startdir/src/tilda-$pkgver/src
-# patch -p0 < $startdir/src/tilda.patch
- cd $startdir/src/tilda-$pkgver
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install
-
- mkdir -p $startdir/pkg/etc
- cp $startdir/src/config_0 $startdir/pkg/etc/tilda_config
-
-}
-md5sums=('b44ebe04fdfd312e9ddc5e0ed77f4289'
- '754753190e0990cd6fba27b3c931bd0e')
diff --git a/abs/core/mv/tilda/config_0 b/abs/core/mv/tilda/config_0
deleted file mode 100644
index 198afd3..0000000
--- a/abs/core/mv/tilda/config_0
+++ /dev/null
@@ -1,53 +0,0 @@
-tilda_config_version = "0.9.6"
-# image = ""
-# command = ""
-font = "Monospace 15"
-key = "F3"
-title = "Tilda"
-background_color = "white"
-# working_dir = ""
-web_browser = "firefox"
-lines = 7000
-max_width = 1612
-max_height = 532
-min_width = 1
-min_height = 1
-transparency = 0
-x_pos = 1114
-y_pos = 0
-tab_pos = 1
-backspace_key = 0
-delete_key = 1
-d_set_title = 3
-command_exit = 2
-scheme = 3
-slide_sleep_usec = 14607
-animation_orientation = 0
-scrollbar_pos = 2
-back_red = 0
-back_green = 0
-back_blue = 0
-text_red = 65535
-text_green = 65535
-text_blue = 65535
-scroll_background = true
-scroll_on_output = false
-notebook_border = true
-antialias = true
-scrollbar = false
-use_image = false
-grab_focus = true
-above = true
-notaskbar = true
-bold = true
-blinks = true
-scroll_on_key = true
-bell = false
-run_command = false
-pinned = true
-animation = false
-hidden = true
-centered_horizontally = true
-centered_vertically = false
-enable_transparency = false
-double_buffer = false
diff --git a/abs/core/mv/tilda/tilda.install b/abs/core/mv/tilda/tilda.install
deleted file mode 100644
index 42bc9eb..0000000
--- a/abs/core/mv/tilda/tilda.install
+++ /dev/null
@@ -1,44 +0,0 @@
-# This is a default template for a post-install scriptlet. You can
-# remove any functions you don't need (and this header).
-
-# arg 1: the new package version
-pre_install() {
- /bin/true
-}
-
-# arg 1: the new package version
-post_install() {
- MHOME=`cat /etc/passwd | grep "mythtv" | cut -d":" -f6`
- if [ ! -e $MHOME/.keylaunchrc ]
- then
- echo "setting symlink for keylaunch"
- ln -s /etc/keylaunchrc $MHOME/.keylaunchrc
-fi
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-pre_upgrade() {
- /bin/true
-
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-post_upgrade() {
- post_install
-}
-
-# arg 1: the old package version
-pre_remove() {
- /bin/true
-}
-
-# arg 1: the old package version
-post_remove() {
- /bin/true
-}
-
-op=$1
-shift
-$op $*