31 lines
683 B
Bash
31 lines
683 B
Bash
|
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
|
||
|
|
EAPI=6
|
||
|
|
|
||
|
|
inherit cmake-utils
|
||
|
|
|
||
|
|
DESCRIPTION="QT based program for creating stop motion videos"
|
||
|
|
HOMEPAGE="http://www.qstopmotion.org"
|
||
|
|
SRC_URI="https://phoenixnap.dl.sourceforge.net/project/qstopmotion/Version_${PV//./_}/qstopmotion-${PV}-Source.tar.gz"
|
||
|
|
|
||
|
|
LICENSE="GPL-2"
|
||
|
|
SLOT="0"
|
||
|
|
KEYWORDS="amd64 x86"
|
||
|
|
IUSE=""
|
||
|
|
|
||
|
|
S="${WORKDIR}/${P}-Source"
|
||
|
|
|
||
|
|
DEPEND="dev-qt/qtcore:5
|
||
|
|
media-video/ffmpeg
|
||
|
|
media-libs/gstreamer
|
||
|
|
media-libs/libgphoto2
|
||
|
|
media-libs/libv4l"
|
||
|
|
RDEPEND="${DEPEND}"
|
||
|
|
|
||
|
|
src_configure() {
|
||
|
|
local mycmakeargs=( '-DCMAKE_BUILD_TYPE=Release' )
|
||
|
|
cmake-utils_src_configure
|
||
|
|
}
|
||
|
|
|