From 7d7e38338e2612cade54229de5886a405ca91ac0 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 28 Mar 2016 12:51:06 +0200 Subject: [PATCH] new package: add package 'libxkbcommon' Signed-off-by: Stephan Raue --- packages/wayland/libxkbcommon/package.mk | 40 ++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 packages/wayland/libxkbcommon/package.mk diff --git a/packages/wayland/libxkbcommon/package.mk b/packages/wayland/libxkbcommon/package.mk new file mode 100644 index 0000000000..ea47f29ba7 --- /dev/null +++ b/packages/wayland/libxkbcommon/package.mk @@ -0,0 +1,40 @@ +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) +# +# OpenELEC is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# OpenELEC is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with OpenELEC. If not, see . +################################################################################ + +PKG_NAME="libxkbcommon" +PKG_VERSION="0.6.0" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="OSS" +PKG_SITE="http://xkbcommon.org" +PKG_URL="http://xkbcommon.org/download/${PKG_NAME}-${PKG_VERSION}.tar.xz" +PKG_DEPENDS_TARGET="toolchain" +PKG_PRIORITY="optional" +PKG_SECTION="wayland" +PKG_SHORTDESC="xkbcommon: a library to handle keyboard descriptions" +PKG_LONGDESC="xkbcommon is a library to handle keyboard descriptions, including loading them from disk, parsing them and handling their state. It's mainly meant for client toolkits, window systems, and other system applications; currently that includes Wayland, kmscon, GTK+, Qt, Clutter, and more. It is also used by some XCB applications for proper keyboard support." + +PKG_IS_ADDON="no" +PKG_AUTORECONF="yes" + +if [ "$DISPLAYSERVER" = "x11" ]; then + PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET xkeyboard-config" + PKG_CONFIGURE_OPTS_TARGET="--enable-x11" +else + PKG_CONFIGURE_OPTS_TARGET="--disable-x11" +fi