mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
60 lines
1.0 KiB
Bash
60 lines
1.0 KiB
Bash
# Copyright 2024-2025 Brayan M. Salazar <this.brayan@proton.me>
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake xdg
|
|
|
|
DESCRIPTION="Music Player written in C++ & Qt."
|
|
HOMEPAGE="https://github.com/brookiestein/QBitMPlayer"
|
|
SRC_URI="https://github.com/brookiestein/QBitMPlayer/archive/refs/tags/${PV}.tar.gz -> QBitMPlayer-${PV}.tar.gz"
|
|
S="${WORKDIR}/QBitMPlayer-${PV}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="dbus libnotify video"
|
|
|
|
DEPEND="
|
|
dev-qt/qtmultimedia:6
|
|
dev-qt/qtbase:6[widgets]
|
|
dbus? ( dev-qt/qtbase:6[dbus] )
|
|
libnotify? ( x11-libs/libnotify )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
>=dev-build/cmake-3.28
|
|
dev-qt/qttools:6[linguist]
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DQT_VERSION_MAJOR=6
|
|
)
|
|
|
|
if use dbus; then
|
|
mycmakeargs+=(
|
|
-DENABLE_IPC=1
|
|
)
|
|
fi
|
|
|
|
if use libnotify; then
|
|
mycmakeargs+=(
|
|
-DENABLE_NOTIFICATIONS=1
|
|
)
|
|
fi
|
|
|
|
if use video; then
|
|
mycmakeargs+=(
|
|
-DENABLE_VIDEO_PLAYER=1
|
|
)
|
|
fi
|
|
|
|
cmake_src_configure
|
|
}
|