2024-09-09 08:52:07 +00:00
|
|
|
SECTION = "x11/utils"
|
2024-09-09 08:57:42 +00:00
|
|
|
SUMMARY = "rxvt terminal clone supporting unicode"
|
2024-09-09 08:52:07 +00:00
|
|
|
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."
|
|
|
|
DEPENDS = "virtual/libx11 libxt libxft gdk-pixbuf"
|
|
|
|
|
|
|
|
SRC_URI = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${PV}.tar.bz2 \
|
|
|
|
file://xwc.patch \
|
|
|
|
file://rxvt.desktop \
|
|
|
|
file://rxvt.png"
|
|
|
|
|
|
|
|
inherit autotools update-alternatives
|
|
|
|
|
|
|
|
PROVIDES = "virtual/x-terminal-emulator"
|
2024-09-09 08:57:42 +00:00
|
|
|
ALTERNATIVE_${PN} = "x-terminal-emulator"
|
|
|
|
ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/rxvt"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
CFLAGS_append = " -fpermissive"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
EXTRA_OECONF = "--enable-xim \
|
2024-09-09 08:52:07 +00:00
|
|
|
--enable-utmp --enable-wtmp --enable-lastlog \
|
2024-09-09 08:57:42 +00:00
|
|
|
--with-term=rxvt --enable-keepscrolling \
|
2024-09-09 08:52:07 +00:00
|
|
|
--enable-xft --with-name=rxvt --enable-frills \
|
|
|
|
--enable-swapscreen --enable-transparency \
|
2024-09-09 08:57:42 +00:00
|
|
|
--with-codesets=eu --enable-pointer-blank \
|
2024-09-09 08:52:07 +00:00
|
|
|
--enable-text-blink --enable-rxvt-scroll \
|
2024-09-09 08:57:42 +00:00
|
|
|
--enable-combining --disable-perl \
|
2024-09-09 08:52:07 +00:00
|
|
|
--with-x=${STAGING_DIR_HOST}${prefix}"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
PACKAGECONFIG ??= ""
|
|
|
|
PACKAGECONFIG[startup] = "--enable-startup-notification,--disable-startup-notification,startup-notification,"
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
do_configure_prepend () {
|
2024-09-09 08:57:42 +00:00
|
|
|
if [ ! -e ${S}/acinclude.m4 ]; then
|
|
|
|
cp ${S}/aclocal.m4 ${S}/acinclude.m4
|
|
|
|
fi
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_compile_prepend () {
|
|
|
|
echo '#define UTMP_FILE "${localstatedir}/run/utmp"' >> config.h
|
|
|
|
echo '#define WTMP_FILE "${localstatedir}/log/wtmp"' >> config.h
|
|
|
|
echo '#define LASTLOG_FILE "${localstatedir}/log/lastlog"' >> config.h
|
|
|
|
echo '#define HAVE_XLOCALE 1' >> config.h
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install_append () {
|
|
|
|
install -d ${D}/${datadir}
|
|
|
|
install -d ${D}/${datadir}/applications
|
|
|
|
install -d ${D}/${datadir}/pixmaps/
|
|
|
|
|
|
|
|
install -m 0644 ${WORKDIR}/rxvt.png ${D}/${datadir}/pixmaps
|
|
|
|
install -m 0644 ${WORKDIR}/rxvt.desktop ${D}/${datadir}/applications
|
|
|
|
}
|
|
|
|
|
|
|
|
FILES_${PN} += "${datadir}/applications/rxvt.desktop ${datadir}/pixmaps/rxvt.png"
|