mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
cb647e5392
* fixes following issue in test-dependencies report: xterm/xterm/latest lost dependency on fontconfig libxft Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
30 lines
1015 B
BlitzBasic
30 lines
1015 B
BlitzBasic
require recipes-graphics/xorg-app/xorg-app-common.inc
|
|
SUMMARY = "xterm is the standard terminal emulator for the X Window System"
|
|
DEPENDS = "libxaw xproto xextproto libxext libxau libxpm ncurses"
|
|
|
|
LIC_FILES_CHKSUM = "file://xterm.h;beginline=3;endline=31;md5=540cf18ccc16bc3c5fea40d2ab5d8d51"
|
|
|
|
SRC_URI = "ftp://invisible-island.net/xterm/${PN}-${PV}.tgz"
|
|
|
|
SRC_URI[md5sum] = "48f6d49b2b6b6933d501d767cbed9254"
|
|
SRC_URI[sha256sum] = "8af29987bda9b77205ebf6233aaa5c347e5f2407310b62ac9ba92a658257f058"
|
|
|
|
EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
|
|
--x-libraries=${STAGING_LIBDIR} \
|
|
FREETYPE_CONFIG=${STAGING_BINDIR_CROSS}/freetype-config \
|
|
--disable-imake \
|
|
--disable-setuid"
|
|
|
|
B = "${S}"
|
|
|
|
do_configure() {
|
|
gnu-configize --force
|
|
sed -e "s%/usr/contrib/X11R6%${STAGING_LIBDIR}%g" -i configure
|
|
oe_runconf
|
|
}
|
|
|
|
FILES_${PN} += " /usr/lib/X11"
|
|
|
|
PACKAGECONFIG ?= ""
|
|
PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig"
|