blob: f4f8ae43a1e911869dda58a8b44e6755c6d155f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="Multiplatform shader editor inspired by Apple's OpenGL Shader Builder"
HOMEPAGE="https://gitlab.com/mazes_80/qshaderedit/"
SRC_URI="https://gitlab.com/mazes_80/${PN}/-/archive/${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/glew:0
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5"
RDEPEND="${DEPEND}"
DOCS=( AUTHORS ChangeLog )
|