summaryrefslogtreecommitdiff
path: root/rxvt-unicode
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-06-30 23:28:23 +0000
committerPhil Blundell <philb@gnu.org>2004-06-30 23:28:23 +0000
commit98bca20fa81f57add42c7dc71b64ca81c95fa531 (patch)
tree2e1229c2587aff41bdfee640094e0b9f73975ea8 /rxvt-unicode
parent6c8d9fb47d8a0492dcd7464bc773ee0db34291a3 (diff)
add missing alternatives bits
BKrev: 40e34c97butISl1nQpfz0cHk0QCZZw
Diffstat (limited to 'rxvt-unicode')
-rw-r--r--rxvt-unicode/rxvt-unicode_3.1.oe53
1 files changed, 53 insertions, 0 deletions
diff --git a/rxvt-unicode/rxvt-unicode_3.1.oe b/rxvt-unicode/rxvt-unicode_3.1.oe
index e69de29bb2..2c0be61e14 100644
--- a/rxvt-unicode/rxvt-unicode_3.1.oe
+++ b/rxvt-unicode/rxvt-unicode_3.1.oe
@@ -0,0 +1,53 @@
+DEPENDS = "x11 xt libxft"
+DESCRIPTION = "rxvt-unicode is a clone of the well known \
+terminal emulator rxvt, modified to store text in Unicode \
+(either UCS-2 or UCS-4) and to use locale-correct input and \
+output. It also supports mixing multiple fonts at the \
+same time, including Xft fonts."
+PR = "r1"
+
+SRC_URI = "http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-${PV}.tar.bz2 \
+ file://xim.patch;patch=1 \
+ file://xwc.patch;patch=1"
+
+inherit autotools update-alternatives
+
+PROVIDES = "virtual/x-terminal-emulator"
+ALTERNATIVE_NAME = "x-terminal-emulator"
+ALTERNATIVE_PATH = "${bindir}/rxvt"
+
+CFLAGS_append = " -fpermissive"
+
+EXTRA_OECONF = "--disable-menubar --disable-xim \
+ --enable-utmp --enable-wtmp --enable-lastlog \
+ --disable-strings --with-term=rxvt --enable-keepscrolling \
+ --enable-xft --with-name=rxvt --enable-frills \
+ --enable-swapscreen --enable-transparency \
+ --with-codesets=eu,jp \
+ --enable-cursor-blink --enable-pointer-blank \
+ --enable-text-blink --enable-plain-scroll \
+ --enable-combining --enable-shared \
+ --with-x=${STAGING_LIBDIR}/.."
+EXTRA_OEMAKE = "'XINC=-I${STAGING_INCDIR}' \
+ 'XLIB=-L${STAGING_LIBDIR} -lX11'"
+
+do_configure () {
+ mv autoconf/configure.in . || true
+ rm autoconf/libtool.m4
+ libtoolize --force
+ autotools_do_configure
+ echo '#define RXVT_UTMP_FILE "${localstatedir}/run/utmp"' >> config.h
+ echo '#define RXVT_WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h
+ echo '#define RXVT_LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h
+ echo '#define HAVE_XLOCALE 1' >> config.h
+}
+
+do_compile () {
+ if test -e ${S}/${HOST_SYS}-libtool; then
+ LIBTOOL=${S}/${HOST_SYS}-libtool
+ else
+ LIBTOOL=${S}/libtool
+ fi
+ # docs need "yodl" and I have no idea what that is
+ oe_runmake -C src "LIBTOOL=$LIBTOOL"
+}