46 lines
918 B
Bash
46 lines
918 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/wlc/wlc-9999.ebuild,v 1.13 2014/11/20 11:47:14 jer Exp $
|
|
|
|
EAPI=5
|
|
inherit cmake-utils eutils toolchain-funcs git-r3
|
|
|
|
DESCRIPTION="wayland compositor library"
|
|
HOMEPAGE="http://github.com/Cloudef/wlc"
|
|
SRC_URI=""
|
|
EGIT_REPO_URI=${EGIT_REPO_URI:="https://github.com/Cloudef/wlc.git"}
|
|
EGIT_BRANCH="master"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
>=dev-libs/wayland-1.7
|
|
x11-libs/pixman
|
|
x11-libs/libxkbcommon
|
|
virtual/udev
|
|
dev-libs/libinput
|
|
x11-libs/libxkbcommon
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
x11-libs/libX11
|
|
x11-libs/libxcb[xkb]
|
|
x11-libs/xcb-util-image
|
|
media-libs/mesa[egl,gles2,wayland]
|
|
"
|
|
|
|
src_prepare() {
|
|
cmake-utils_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
}
|