mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
media-sound/strawberry: Bump to version 1.0.5
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST strawberry-1.0.4.tar.xz 11208992 BLAKE2B f7a8b000672b55fb667fa4e0f32052adb138b4dbdf2149beec308555ed00417aac0734fe7ede1767bf648d5a10ab527b69f004ffe0b1f8834e65d6dbaf2c52a9 SHA512 e2a90911acd47735715266cb3745910a6e04a2ef4e98b0c9734230a5e2b382cf7d3681fc2e368a361e7a7c53bc0627a88a36e6df6c4f6941d54f65e2424d29ee
|
||||
DIST strawberry-1.0.5.tar.xz 11212028 BLAKE2B 2bb668bc9a4f66a9cdeaa28f47f21bf90f999d5524fa443bc7beaa1d0d7c6dc6727bf4df010fc06989e00fc34d62902add11186908fcf3f1b490c3bf745a9971 SHA512 4c625c75855f87952b274c85b4c5b021b27e75a74d46202ab3ea0aa3c86f510bccdece583483c4ba73e4733f151feb5eac5f5ef5d9a956995979fa307fd8d911
|
||||
|
||||
120
media-sound/strawberry/strawberry-1.0.5.ebuild
Normal file
120
media-sound/strawberry/strawberry-1.0.5.ebuild
Normal file
@@ -0,0 +1,120 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake flag-o-matic plocale xdg
|
||||
|
||||
PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru sv uk zh_CN"
|
||||
|
||||
DESCRIPTION="Modern music player and library organizer based on Clementine and Qt"
|
||||
HOMEPAGE="https://www.strawberrymusicplayer.org/"
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz"
|
||||
KEYWORDS="~amd64 ~ppc64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
|
||||
|
||||
BDEPEND="
|
||||
dev-qt/linguist-tools:5
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
COMMON_DEPEND="
|
||||
dev-db/sqlite:=
|
||||
dev-libs/glib:2
|
||||
dev-libs/protobuf:=
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtnetwork:5[ssl]
|
||||
dev-qt/qtsql:5[sqlite]
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
media-libs/alsa-lib
|
||||
>=media-libs/taglib-1.11.1_p20181028
|
||||
x11-libs/libX11
|
||||
cdda? ( dev-libs/libcdio:= )
|
||||
gstreamer? (
|
||||
>=media-libs/chromaprint-1.4:=
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-base:1.0
|
||||
)
|
||||
ipod? ( >=media-libs/libgpod-0.8.0 )
|
||||
moodbar? ( sci-libs/fftw:3.0 )
|
||||
mtp? ( >=media-libs/libmtp-1.0.0 )
|
||||
pulseaudio? ( media-sound/pulseaudio )
|
||||
vlc? ( media-video/vlc )
|
||||
"
|
||||
# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is required; check if this can be overcome someway;
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
gstreamer? (
|
||||
media-plugins/gst-plugins-meta:1.0
|
||||
media-plugins/gst-plugins-soup:1.0
|
||||
media-plugins/gst-plugins-taglib:1.0
|
||||
)
|
||||
mtp? ( gnome-base/gvfs[mtp] )
|
||||
udisks? ( sys-fs/udisks:2 )
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
>=dev-cpp/gtest-1.8.0
|
||||
dev-libs/boost
|
||||
dev-qt/qttest:5
|
||||
"
|
||||
|
||||
DOCS=( Changelog README.md )
|
||||
|
||||
REQUIRED_USE="
|
||||
cdda? ( gstreamer )
|
||||
|| ( gstreamer vlc )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
plocale_find_changes "src/translations" "" ".po"
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# spotify is not in portage
|
||||
local mycmakeargs=(
|
||||
-DBUILD_WERROR=OFF
|
||||
# avoid automagically enabling of ccache (bug #611010)
|
||||
-DCCACHE_EXECUTABLE=OFF
|
||||
-DENABLE_GIO=ON
|
||||
-DLINGUAS="$(plocale_get_locales)"
|
||||
-DENABLE_AUDIOCD="$(usex cdda)"
|
||||
-DENABLE_GSTREAMER="$(usex gstreamer)"
|
||||
-DENABLE_LIBGPOD="$(usex ipod)"
|
||||
-DENABLE_LIBMTP="$(usex mtp)"
|
||||
-DENABLE_LIBPULSE="$(usex pulseaudio)"
|
||||
-DENABLE_MOODBAR="$(usex moodbar)"
|
||||
-DENABLE_MUSICBRAINZ="$(usex gstreamer)"
|
||||
-DENABLE_SONGFINGERPRINTING="$(usex gstreamer)"
|
||||
-DENABLE_UDISKS2="$(usex udisks)"
|
||||
-DENABLE_VLC="$(usex vlc)"
|
||||
# Disable until we have qt6 in the tree
|
||||
-DWITH_QT6=OFF
|
||||
)
|
||||
|
||||
use !debug && append-cppflags -DQT_NO_DEBUG_OUTPUT
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
xdg_pkg_postinst
|
||||
|
||||
if use gstreamer ; then
|
||||
elog "Note that list of supported formats is controlled by media-plugins/gst-plugins-meta "
|
||||
elog "USE flags. You may be interested in setting aac, flac, mp3, ogg or wavpack USE flags "
|
||||
elog "depending on your preferences"
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user