blob: 004679e3b750c72b7c759df0a8bac73fff3ab5d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
DESCRIPTION = "xterm is the standard terminal emulator for the X Window System."
SECTION = "x11/applications"
LICENSE = "MIT-X"
DEPENDS = "libxaw xproto virtual/libx11 xextproto xext xau libxpm ncurses"
SRC_URI = "ftp://invisible-island.net/xterm/${PN}-${PV}.tgz"
inherit autotools pkgconfig
FILES_${PN} += " /usr/lib/X11"
EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
--x-libraries=${STAGING_LIBDIR} \
FREETYPE_CONFIG=${STAGING_BINDIR_CROSS}/freetype-config \
--disable-imake \
--disable-setuid"
do_configure() {
sed -e "s%/usr/contrib/X11R6%${STAGING_LIBDIR}%g" -i configure
oe_runconf
}
do_stage() {
autotools_stage_all
}
|