blob: af7ae9841196c65df537feb1be315ef8b99d518d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
QT_MINIMAL="4"
inherit base eutils toolchain-funcs flag-o-matic libtool qt4-r2
#MY_P="${PN}-${PV/_/~}"
DESCRIPTION=""
HOMEPAGE="www.kochkin.tk/doku.php/screengen/"
SRC_URI="http://www.kochkin.tk/screengen/devel/screengen-1.10.dev-20161103.tar.bz2"
LICENSE="GPL"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="media-video/ffmpeg
dev-qt/qtgui:4"
DEPEND="${RDEPEND}"
S=${WORKDIR}/screengen
src_configure() {
eqmake4
}
|