blob: ff2c8f009db95af21170b306c73b6e6bb5c6aaac [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SECTION = "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."
Andrew Geissler90fd73c2021-03-05 15:25:55 -06008HOMEPAGE = "https://rxvt.org/"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009DEPENDS = "virtual/libx11 libxt libxft gdk-pixbuf libxmu"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
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
Brad Bishop316dfdd2018-06-25 12:45:53 -040016inherit autotools pkgconfig update-alternatives
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017
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 --enable-utmp --enable-wtmp --enable-lastlog \
26 --with-term=rxvt --enable-keepscrolling \
27 --enable-xft --with-name=rxvt --enable-frills \
28 --enable-swapscreen --enable-transparency \
29 --with-codesets=eu --enable-pointer-blank \
30 --enable-text-blink --enable-rxvt-scroll \
31 --enable-combining --disable-perl \
32 --with-x=${STAGING_DIR_HOST}${prefix}"
33
Andrew Geisslerd1e89492021-02-12 15:35:20 -060034EXTRA_OECONF_append_libc-musl = " --disable-wtmp --disable-lastlog"
Andrew Geissler475cb722020-07-10 16:00:51 -050035
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036PACKAGECONFIG ??= ""
37PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification,"
38
39do_configure_prepend () {
40 if [ ! -e ${S}/acinclude.m4 ]; then
41 cp ${S}/aclocal.m4 ${S}/acinclude.m4
42 fi
43}
44
45do_compile_prepend () {
46 echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h
47 echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h
48 echo '#define LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h
49 echo '#define HAVE_XLOCALE 1' >> config.h
50}
51
52do_install_append () {
53 install -d ${D}/${datadir}
54 install -d ${D}/${datadir}/applications
55 install -d ${D}/${datadir}/pixmaps/
56
57 install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/pixmaps
58 install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications
59}
60
61FILES_${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/pixmaps/rxvt.png"