29 lines
735 B
Bash
29 lines
735 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 eutils toolchain-funcs git-r3
|
|
|
|
DESCRIPTION="wayland drawing library"
|
|
HOMEPAGE="https://github.com/michaelforney/wld"
|
|
SRC_URI=""
|
|
EGIT_REPO_URI=${EGIT_REPO_URI:="https://github.com/michaelforney/wld.git"}
|
|
EGIT_BRANCH="master"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd"
|
|
VIDEO_CARDS="nouveau intel"
|
|
for card in ${VIDEO_CARDS}; do
|
|
IUSE_VIDEO_CARDS+=" video_cards_${card}"
|
|
done
|
|
IUSE="${IUSE_VIDEO_CARDS} pixman drm wayland static"
|
|
|
|
RDEPEND="
|
|
wayland? dev-libs/wayland
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|