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.
gentoo-overlay/app-misc/qcma/qcma-9999.ebuild

67 lines
1.5 KiB

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qmake-utils git-r3 xdg-utils
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"
# <ffmpeg-5 for bug #900947
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-5:= )
x11-libs/libnotify:0
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-qt/linguist-tools:5
"
src_prepare() {
# http://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225051.html
sed -r \
-e '/av_register_all/d' \
-i "${S}"/common/avdecoder.h || die "Failed to fix ffmpeg stuff"
rm ChangeLog || die "Failed to rm changelog" # Triggers QA warn (symlink to nowhere)
default
}
src_configure() {
$(qt5_get_bindir)/lrelease common/resources/translations/*.ts || die
eqmake5 PREFIX="${EPREFIX}"/usr qcma.pro CONFIG+="QT5_SUFFIX" $(usex ffmpeg "" CONFIG+="DISABLE_FFMPEG")
}
src_install() {
emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install
einstalldocs
insinto /usr/share/${PN}/translations
doins common/resources/translations/${PN}_*.qm
}
pkg_postinst() {
xdg_desktop_database_update
xdg_icon_cache_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
xdg_desktop_database_update
xdg_icon_cache_update
xdg_mimeinfo_database_update
}