You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1017 B
44 lines
1017 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit qmake-utils vcs-snapshot
|
|
|
|
GIT_COMMIT="65f0eab8ca0640447d2e84cdc5fadc66d2c07efb"
|
|
|
|
DESCRIPTION="Cross-platform content manager assistant for the PS Vita"
|
|
HOMEPAGE="https://github.com/codestation/qcma"
|
|
SRC_URI="https://github.com/codestation/qcma/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
|
IUSE="+ffmpeg"
|
|
|
|
DEPEND="
|
|
dev-libs/glib:2
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtsql:5
|
|
dev-qt/qtwidgets:5
|
|
media-libs/vitamtp:0
|
|
ffmpeg? ( media-video/ffmpeg:0 )
|
|
x11-libs/libnotify:0
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
dev-qt/linguist-tools
|
|
"
|
|
|
|
src_prepare() {
|
|
rm ChangeLog || die "Failed to rm changelog" # Triggers QA warn (symlink to nowhere)
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
lrelease common/resources/translations/*.ts
|
|
eqmake5 PREFIX="${D}"/usr qcma.pro CONFIG+="QT5_SUFFIX" $(usex ffmpeg "" CONFIG+="DISABLE_FFMPEG")
|
|
}
|