From: Yegor Yefremov Date: Fri, 13 Dec 2013 08:13:32 +0000 (+0100) Subject: xconsole: add new package X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d23c700e2d9a4bcf73e303bbcb9554117ff9275;p=buildroot.git xconsole: add new package Signed-off-by: Yegor Yefremov Signed-off-by: Peter Korsgaard --- diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in index 15e2f8b671..fe0674c783 100644 --- a/package/x11r7/Config.in +++ b/package/x11r7/Config.in @@ -88,6 +88,7 @@ if BR2_PACKAGE_XORG7 source package/x11r7/xapp_xclipboard/Config.in source package/x11r7/xapp_xclock/Config.in source package/x11r7/xapp_xcmsdb/Config.in + source package/x11r7/xapp_xconsole/Config.in source package/x11r7/xapp_xcursorgen/Config.in source package/x11r7/xapp_xdbedizzy/Config.in source package/x11r7/xapp_xditview/Config.in diff --git a/package/x11r7/xapp_xconsole/Config.in b/package/x11r7/xapp_xconsole/Config.in new file mode 100644 index 0000000000..7863afd6ea --- /dev/null +++ b/package/x11r7/xapp_xconsole/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_XAPP_XCONSOLE + bool "xconsole" + select BR2_PACKAGE_XLIB_LIBX11 + select BR2_PACKAGE_XLIB_LIBXAW + select BR2_PACKAGE_XLIB_LIBXT + select BR2_PACKAGE_XPROTO_XPROTO + select BR2_PACKAGE_XLIB_LIBXMU + help + xconsole - monitor system console messages with X diff --git a/package/x11r7/xapp_xconsole/xapp_xconsole.mk b/package/x11r7/xapp_xconsole/xapp_xconsole.mk new file mode 100644 index 0000000000..b04b73718b --- /dev/null +++ b/package/x11r7/xapp_xconsole/xapp_xconsole.mk @@ -0,0 +1,15 @@ +################################################################################ +# +# xapp_xconsole +# +################################################################################ + +XAPP_XCONSOLE_VERSION = 1.0.6 +XAPP_XCONSOLE_SOURCE = xconsole-$(XAPP_XCONSOLE_VERSION).tar.bz2 +XAPP_XCONSOLE_SITE = http://xorg.freedesktop.org/releases/individual/app +XAPP_XCONSOLE_LICENSE = MIT +XAPP_XCONSOLE_LICENSE_FILES = COPYING +XAPP_XCONSOLE_DEPENDENCIES = xlib_libX11 xlib_libXaw xlib_libXt xproto_xproto \ + xlib_libXmu + +$(eval $(autotools-package))