gentoo-ebuilds/media-sound/coquillo/coquillo-2.0.1-r1.ebuild
Nicolas PARLANT 738a7097e1
media-sound/coquillo: fix build with taglib-2
https://github.com/sjuvonen/coquillo/pull/12.patch
update EAPI 7 -> 8
Add media-libs/taglib:= slot op, ABI break imminent

Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2024-12-28 01:04:40 +01:00

39 lines
796 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop qmake-utils
DESCRIPTION="GUI audio tagger based on Qt and taglib"
HOMEPAGE="https://www.linux-apps.com/content/show.php/Coquillo?content=141896"
SRC_URI="https://github.com/sjuvonen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
media-libs/musicbrainz:5=
media-libs/taglib:=
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}"/${PN}-2.0.1-fix-build-taglib2.patch )
src_configure() {
eqmake5
}
src_install() {
dobin ${PN}
doicon extra/${PN}.png
domenu extra/${PN}.desktop
einstalldocs
}