diff options
author | Vadim Misbakh-Soloviov <mva@gentoo.org> | 2019-10-26 00:45:26 +0700 |
---|---|---|
committer | Vadim Misbakh-Soloviov <mva@gentoo.org> | 2019-10-26 00:45:26 +0700 |
commit | 76a7dc6dc5e2537f8d4771aca1d709695038f13b (patch) | |
tree | a9e68a6db56d640665078142650eeedc5eb8a3c9 /app-misc/qcma/qcma-9999.ebuild | |
parent | Revert "net-irc/inspircd: remove unused patch" (diff) | |
download | gentoo-76a7dc6dc5e2537f8d4771aca1d709695038f13b.tar.gz gentoo-76a7dc6dc5e2537f8d4771aca1d709695038f13b.tar.bz2 gentoo-76a7dc6dc5e2537f8d4771aca1d709695038f13b.zip |
app-misc/qcma: new package
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Vadim Misbakh-Soloviov <mva@gentoo.org>
Diffstat (limited to 'app-misc/qcma/qcma-9999.ebuild')
-rw-r--r-- | app-misc/qcma/qcma-9999.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-misc/qcma/qcma-9999.ebuild b/app-misc/qcma/qcma-9999.ebuild new file mode 100644 index 000000000000..7c2734bf0313 --- /dev/null +++ b/app-misc/qcma/qcma-9999.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit qmake-utils git-r3 + +DESCRIPTION="Cross-platform content manager assistant for the PS Vita" +HOMEPAGE="https://github.com/codestation/qcma" +EGIT_REPO_URI="https://github.com/codestation/qcma.git" + +LICENSE="GPL-3" +SLOT="0" + +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") +} |