From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from devils.ext.ti.com (devils.ext.ti.com [198.47.26.153]) by arago-project.org (Postfix) with ESMTPS id AD53652A75 for ; Tue, 19 Aug 2014 16:45:59 +0000 (UTC) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id s7JGjxMT016411 for ; Tue, 19 Aug 2014 11:45:59 -0500 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s7JGjwoc001587 for ; Tue, 19 Aug 2014 11:45:58 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.174.1; Tue, 19 Aug 2014 11:45:58 -0500 Received: from dbdmail01.india.ti.com (dbdmail01.india.ti.com [172.24.162.206]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s7JGjvPS007580; Tue, 19 Aug 2014 11:45:58 -0500 Received: from sdit-build02.dal.design.ti.com (sdit-build02.dal.design.ti.com [10.247.66.5]) by dbdmail01.india.ti.com (8.14.3/8.14.3/SuSE Linux 0.8) with ESMTP id s7JGjsqH017239; Tue, 19 Aug 2014 22:15:56 +0530 From: "Franklin S. Cooper Jr" To: Date: Tue, 19 Aug 2014 11:45:46 -0500 Message-ID: <1408466752-4458-2-git-send-email-fcooper@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1408466752-4458-1-git-send-email-fcooper@ti.com> References: <1408466752-4458-1-git-send-email-fcooper@ti.com> MIME-Version: 1.0 Cc: "Franklin S. Cooper Jr" Subject: [PATCH 2/8] libinput: Add new library which is a optional dependency for Weston X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Aug 2014 16:45:59 -0000 Content-Type: text/plain From: "Franklin S. Cooper Jr" * Libinput separates some of the input handling from Weston. * Also it has newer features and bug fixes that the Weston built in variant doesn't have. Signed-off-by: Franklin S. Cooper Jr --- .../recipes-graphics/wayland/libinput_git.bb | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta-arago-extras/recipes-graphics/wayland/libinput_git.bb diff --git a/meta-arago-extras/recipes-graphics/wayland/libinput_git.bb b/meta-arago-extras/recipes-graphics/wayland/libinput_git.bb new file mode 100644 index 0000000..a3e121e --- /dev/null +++ b/meta-arago-extras/recipes-graphics/wayland/libinput_git.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "libinput is a library to handle input devices in Wayland compositors" +HOMEPAGE = "http://www.freedesktop.org/wiki/Software/libinput/" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://COPYING;md5=673e626420c7f859fbe2be3a9c13632d" + +inherit autotools pkgconfig + +DEPENDS = "libevdev" + +PR = "r0" + +BRANCH = "master" +SRCREV = "bb10ec84d3704fc0fb40591bcbffe90f6c77966d" + +PV = "0.5.0" + +SRC_URI = "git://anongit.freedesktop.org/wayland/libinput;protocol=git;branch=${BRANCH}" + +S = "${WORKDIR}/git" + + -- 1.7.9.5