1SECTION = "x11/utils" 2SUMMARY = "rxvt terminal clone supporting unicode" 3DESCRIPTION = "rxvt-unicode is a clone of the well known \ 4terminal emulator rxvt, modified to store text in Unicode \ 5(either UCS-2 or UCS-4) and to use locale-correct input and \ 6output. It also supports mixing multiple fonts at the \ 7same time, including Xft fonts." 8HOMEPAGE = "https://rxvt.org/" 9DEPENDS = "virtual/libx11 libxt libxft gdk-pixbuf libxmu libptytty" 10 11SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \ 12 file://xwc.patch \ 13 file://rxvt.desktop \ 14 file://rxvt.png" 15 16inherit autotools pkgconfig update-alternatives 17 18PROVIDES = "virtual/x-terminal-emulator" 19ALTERNATIVE:${PN} = "x-terminal-emulator" 20ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/rxvt" 21 22CFLAGS:append = " -fpermissive" 23 24EXTRA_OECONF = "--enable-xim \ 25 --with-term=rxvt --enable-keepscrolling \ 26 --enable-xft --with-name=rxvt --enable-frills \ 27 --enable-swapscreen --enable-transparency \ 28 --with-codesets=eu --enable-pointer-blank \ 29 --enable-text-blink --enable-rxvt-scroll \ 30 --enable-combining --disable-perl \ 31 --with-x=${STAGING_DIR_HOST}${prefix}" 32 33PACKAGECONFIG ??= "" 34PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification," 35 36do_configure:prepend () { 37 if [ ! -e ${S}/acinclude.m4 ]; then 38 cp ${S}/aclocal.m4 ${S}/acinclude.m4 39 fi 40} 41 42do_compile:prepend () { 43 echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h 44 echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h 45 echo '#define LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h 46 echo '#define HAVE_XLOCALE 1' >> config.h 47} 48 49do_install:append () { 50 install -d ${D}/${datadir} 51 install -d ${D}/${datadir}/applications 52 install -d ${D}/${datadir}/pixmaps/ 53 54 install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/pixmaps 55 install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications 56} 57 58FILES:${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/pixmaps/rxvt.png" 59