summaryrefslogtreecommitdiff
path: root/community/dvtm
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-31 03:27:12 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-31 03:27:12 +0000
commit5a81550adad5ccde4ad6924cfee2b2ef96d02c98 (patch)
tree5baa7121fc2147a5e1aae552ff6a715922e35aaa /community/dvtm
parent53db844f5c8c3d0a6752bb40f65c613020084541 (diff)
Tue Dec 31 03:24:15 UTC 2013
Diffstat (limited to 'community/dvtm')
-rw-r--r--community/dvtm/0001-Makefile-respect-DESTDIR-in-tic-invocation.patch25
-rw-r--r--community/dvtm/PKGBUILD16
-rw-r--r--community/dvtm/config.h2
3 files changed, 7 insertions, 36 deletions
diff --git a/community/dvtm/0001-Makefile-respect-DESTDIR-in-tic-invocation.patch b/community/dvtm/0001-Makefile-respect-DESTDIR-in-tic-invocation.patch
deleted file mode 100644
index 9ce462240..000000000
--- a/community/dvtm/0001-Makefile-respect-DESTDIR-in-tic-invocation.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 4ab5ed57a3b53e0271cf50f256cd7904c50cac55 Mon Sep 17 00:00:00 2001
-From: Douglas Jerome <douglas@ttylinux.org>
-Date: Wed, 15 May 2013 14:33:31 +0200
-Subject: [PATCH] Makefile: respect ${DESTDIR} in tic invocation
-
----
- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index ff85deb..eb849f4 100644
---- a/Makefile
-+++ b/Makefile
-@@ -55,7 +55,7 @@ install: dvtm
- @sed "s/VERSION/${VERSION}/g" < dvtm.1 > ${DESTDIR}${MANPREFIX}/man1/dvtm.1
- @chmod 644 ${DESTDIR}${MANPREFIX}/man1/dvtm.1
- @echo installing terminfo description
-- @tic -s dvtm.info
-+ @tic -o ${DESTDIR}/usr/share/terminfo -s dvtm.info
-
- uninstall:
- @echo removing executable file from ${DESTDIR}${PREFIX}/bin
---
-1.8.3.450.gf3f2a46
-
diff --git a/community/dvtm/PKGBUILD b/community/dvtm/PKGBUILD
index bedae4873..96c1e20b6 100644
--- a/community/dvtm/PKGBUILD
+++ b/community/dvtm/PKGBUILD
@@ -1,28 +1,24 @@
-# $Id: PKGBUILD 92416 2013-06-04 19:05:34Z lfleischer $
+# $Id: PKGBUILD 103206 2013-12-30 02:12:50Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Giorgio Lando <patroclo7@gmail.com>
# Contributor: bender02 at gmx dot com
pkgname=dvtm
-pkgver=0.9
-pkgrel=2
+pkgver=0.10
+pkgrel=1
pkgdesc='Dynamic virtual terminal manager.'
arch=('i686' 'x86_64')
url='http://www.brain-dump.org/projects/dvtm/'
license=('MIT')
depends=('ncurses')
source=("http://www.brain-dump.org/projects/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'config.h'
- '0001-Makefile-respect-DESTDIR-in-tic-invocation.patch')
-md5sums=('7de1103abb0ca410f7250cf89f019a38'
- '41107e5e84a8572f70d6cb111b4e07f8'
- 'c85d8265ced45d014a7d3f05134bf6a1')
+ 'config.h')
+md5sums=('0c7167dc898df1693c20e2a34ba3e947'
+ '15dd5c17d39fca0e043577985ee1c6a6')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 -i ../0001-Makefile-respect-DESTDIR-in-tic-invocation.patch
-
cp "${srcdir}/config.h" .
sed -i 's/CFLAGS =/CFLAGS +=/' config.mk
}
diff --git a/community/dvtm/config.h b/community/dvtm/config.h
index 48367695a..727dce4c1 100644
--- a/community/dvtm/config.h
+++ b/community/dvtm/config.h
@@ -77,7 +77,6 @@ static Key keys[] = {
{ MOD, '8', { focusn, { "8" } } },
{ MOD, '9', { focusn, { "9" } } },
{ MOD, 'q', { quit, { NULL } } },
- { MOD, 'G', { escapekey, { NULL } } },
{ MOD, 'a', { togglerunall, { NULL } } },
{ MOD, 'r', { redraw, { NULL } } },
{ MOD, 'X', { lock, { NULL } } },
@@ -89,6 +88,7 @@ static Key keys[] = {
{ MOD, KEY_PPAGE, { scrollback, { "-1" } } },
{ MOD, KEY_NPAGE, { scrollback, { "1" } } },
{ MOD, KEY_F(1), { create, { "man dvtm", "dvtm help" } } },
+ { MOD, MOD, { send, { (const char []){MOD, 0} } } },
};
static const ColorRule colorrules[] = {