diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-05-31 16:49:56 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-05-31 16:49:56 +0200 |
commit | b74845e7a1608a96af70e1b3ae4c6c28e5052e7a (patch) | |
tree | 22bdaa533c93452ddf1b013979cf7daf20825500 /package/xkeyboard-config | |
parent | c2c4438d195748ae5cbe32bae1689e211b027843 (diff) |
fix X issues
- missing xkbcmp
- missing files in libX11
- dependencies to other libraries
Diffstat (limited to 'package/xkeyboard-config')
-rw-r--r-- | package/xkeyboard-config/Config.in | 6 | ||||
-rw-r--r-- | package/xkeyboard-config/Makefile | 28 |
2 files changed, 34 insertions, 0 deletions
diff --git a/package/xkeyboard-config/Config.in b/package/xkeyboard-config/Config.in new file mode 100644 index 000000000..2abb16055 --- /dev/null +++ b/package/xkeyboard-config/Config.in @@ -0,0 +1,6 @@ +config ADK_PACKAGE_XKEYBOARD_CONFIG + prompt "xkeyboard-config............................ X keyboard config" + tristate + default n + help + http://www.x.org diff --git a/package/xkeyboard-config/Makefile b/package/xkeyboard-config/Makefile new file mode 100644 index 000000000..0f537114b --- /dev/null +++ b/package/xkeyboard-config/Makefile @@ -0,0 +1,28 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= xkeyboard-config +PKG_VERSION:= 1.6 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 889e6e10eb7449bf33a5423c40369da5 +PKG_DESCR:= X keyboard config +PKG_SECTION:= x11 +PKG_SITES:= http://xlibs.freedesktop.org/xkbdesc/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,XKEYBOARD_CONFIG,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_STYLE= gnu +BUILD_STYLE= auto +INSTALL_STYLE= auto + +post-install: + ${INSTALL_DIR} ${IDIR_XKEYBOARD_CONFIG}/usr/share/X11/xkb + ${CP} ${WRKINST}/usr/share/X11/xkb/* ${IDIR_XKEYBOARD_CONFIG}/usr/share/X11/xkb + +include ${TOPDIR}/mk/pkg-bottom.mk |