aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mrxvt
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2005-08-12 21:52:26 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-12 21:52:26 +0000
commit4dce70dbb585c6751d6ad28d770994a76f172b28 (patch)
tree1f07f5ee6d7dfc852e2a1dd26582cd78adf80ea9 /packages/mrxvt
parentbcd885cfec712825d6638e74582fd9860773b870 (diff)
downloadopenembedded-4dce70dbb585c6751d6ad28d770994a76f172b28.tar.gz
add mrxvt, a multi-tabbed rxvt
Diffstat (limited to 'packages/mrxvt')
-rw-r--r--packages/mrxvt/.mtn2git_empty0
-rw-r--r--packages/mrxvt/files/.mtn2git_empty0
-rw-r--r--packages/mrxvt/files/fix-compile.patch25
-rw-r--r--packages/mrxvt/mrxvt_0.4.1.bb14
4 files changed, 39 insertions, 0 deletions
diff --git a/packages/mrxvt/.mtn2git_empty b/packages/mrxvt/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/mrxvt/.mtn2git_empty
diff --git a/packages/mrxvt/files/.mtn2git_empty b/packages/mrxvt/files/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/mrxvt/files/.mtn2git_empty
diff --git a/packages/mrxvt/files/fix-compile.patch b/packages/mrxvt/files/fix-compile.patch
new file mode 100644
index 0000000000..25794dc5fd
--- /dev/null
+++ b/packages/mrxvt/files/fix-compile.patch
@@ -0,0 +1,25 @@
+
+#
+# Patch managed by http://www.holgerschurig.de/patcher.html
+#
+
+--- mrxvt-0.4.1/src/rxvt.h~fix-compile
++++ mrxvt-0.4.1/src/rxvt.h
+@@ -387,15 +387,8 @@
+ ** which in turn is unsafe without checking.
+ ** Untainted defines the type of data that is safe.
+ */
+-#ifdef __GNUC__
+-# define $tainted
+-# define $untainted
+-# define TAINTED $tainted
+-# define UNTAINTED $untainted
+-#else
+-# define TAINTED
+-# define UNTAINTED
+-#endif
++#define TAINTED
++#define UNTAINTED
+
+
+ /*
diff --git a/packages/mrxvt/mrxvt_0.4.1.bb b/packages/mrxvt/mrxvt_0.4.1.bb
new file mode 100644
index 0000000000..1efbf58d9d
--- /dev/null
+++ b/packages/mrxvt/mrxvt_0.4.1.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "MRXVT is a lightweight and powerful X terminal emulator based on aterm and rxvt"
+HOMEPAGE = "http://materm.sourceforge.net"
+AUTHOR = "Jimmy Zhou <jimmyzhou@users.sf.net>"
+LICENSE = "GPL"
+SECTION = "x11/apps"
+DEPENDS = "x11 xext xpm jpeg libpng"
+PR = "r0"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/materm/mrxvt-${PV}.tar.gz \
+ file://fix-compile.patch;patch=1"
+
+inherit autotools
+
+EXTRA_OECONF = "--enable-everything --disable-debug"