247efc2552bb61703a62490a34dca7182cf21699
[vuplus_openembedded] / rxvt-unicode / rxvt-unicode_3.1.oe
1 SECTION = "x11/utils"
2 DEPENDS = "x11 xt libxft"
3 DESCRIPTION = "rxvt-unicode is a clone of the well known \
4 terminal emulator rxvt, modified to store text in Unicode \
5 (either UCS-2 or UCS-4) and to use locale-correct input and \
6 output. It also supports mixing multiple fonts at the \
7 same time, including Xft fonts."
8 PR = "r1"
9
10 SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \
11         file://xim.patch;patch=1 \
12         file://xwc.patch;patch=1"
13
14 inherit autotools update-alternatives
15
16 PROVIDES = "virtual/x-terminal-emulator"
17 ALTERNATIVE_NAME = "x-terminal-emulator"
18 ALTERNATIVE_PATH = "${bindir}/rxvt"
19
20 CFLAGS_append = " -fpermissive"
21
22 EXTRA_OECONF = "--disable-menubar --disable-xim \
23                 --enable-utmp --enable-wtmp --enable-lastlog \
24                 --disable-strings --with-term=rxvt --enable-keepscrolling \
25                 --enable-xft --with-name=rxvt --enable-frills \
26                 --enable-swapscreen --enable-transparency \
27                 --with-codesets=eu,jp \
28                 --enable-cursor-blink --enable-pointer-blank \
29                 --enable-text-blink --enable-plain-scroll \
30                 --enable-combining --enable-shared \
31                 --with-x=${STAGING_LIBDIR}/.."
32 EXTRA_OEMAKE = "'XINC=-I${STAGING_INCDIR}' \
33                 'XLIB=-L${STAGING_LIBDIR} -lX11'"
34
35 do_configure () {
36         mv autoconf/configure.in . || true
37         rm autoconf/libtool.m4
38         libtoolize --force
39         autotools_do_configure
40         echo '#define RXVT_UTMP_FILE "${localstatedir}/run/utmp"' >> config.h
41         echo '#define RXVT_WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h
42         echo '#define RXVT_LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h
43         echo '#define HAVE_XLOCALE 1' >> config.h
44 }
45
46 do_compile () {
47         if test -e ${S}/${HOST_SYS}-libtool; then
48                 LIBTOOL=${S}/${HOST_SYS}-libtool
49         else
50                 LIBTOOL=${S}/libtool
51         fi
52         # docs need "yodl" and I have no idea what that is
53         oe_runmake -C src "LIBTOOL=$LIBTOOL"
54 }