mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
10
package/xterm/Config.in
Normal file
10
package/xterm/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_XTERM
|
||||
bool "xterm"
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_NCURSES
|
||||
select BR2_PACKAGE_XLIB_LIBXAW
|
||||
help
|
||||
xterm terminal emulator
|
||||
|
||||
http://invisible-island.net/xterm/
|
||||
2
package/xterm/xterm.hash
Normal file
2
package/xterm/xterm.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 66fb2f6c35b342148f549c276b12a3aa3fb408e27ab6360ddec513e14376150b xterm-327.tgz
|
||||
35
package/xterm/xterm.mk
Normal file
35
package/xterm/xterm.mk
Normal file
@@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# xterm
|
||||
#
|
||||
################################################################################
|
||||
|
||||
XTERM_VERSION = 327
|
||||
XTERM_SOURCE = xterm-$(XTERM_VERSION).tgz
|
||||
XTERM_SITE = http://invisible-mirror.net/archives/xterm
|
||||
XTERM_DEPENDENCIES = ncurses xlib_libXaw host-pkgconf
|
||||
XTERM_LICENSE = MIT
|
||||
XTERM_LICENSE_FILES = version.c
|
||||
XTERM_CONF_OPTS = --enable-256-color \
|
||||
--x-includes=$(STAGING_DIR)/usr/include \
|
||||
--x-libraries=$(STAGING_DIR)/usr/lib
|
||||
|
||||
# Avoid freetype2 path poisoning by imake
|
||||
XTERM_CONF_ENV = ac_cv_path_IMAKE=""
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXFT),y)
|
||||
XTERM_DEPENDENCIES += xlib_libXft
|
||||
XTERM_CONF_OPTS += --enable-freetype \
|
||||
--with-freetype-config=auto
|
||||
else
|
||||
XTERM_CONF_OPTS += --disable-freetype
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXINERAMA),y)
|
||||
XTERM_DEPENDENCIES += xlib_libXinerama
|
||||
XTERM_CONF_OPTS += --with-xinerama
|
||||
else
|
||||
XTERM_CONF_OPTS += --without-xinerama
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user