commit: 8decba621653577b2cf8852a6fb18be15711baca Author: John M. Harris Jr. <johnmh <AT> johnmh <DOT> me> AuthorDate: Sat Jul 27 02:41:44 2024 +0000 Commit: John M. Harris, Jr. <johnmh <AT> johnmh <DOT> me> CommitDate: Sat Jul 27 02:42:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/user/johnmh.git/commit/?id=8decba62
media-sound/strawberry: new package, add 9999 Signed-off-by: John M. Harris Jr. <johnmh <AT> johnmh.me> media-sound/strawberry/metadata.xml | 20 +++++ media-sound/strawberry/strawberry-9999.ebuild | 113 ++++++++++++++++++++++++++ 2 files changed, 133 insertions(+) diff --git a/media-sound/strawberry/metadata.xml b/media-sound/strawberry/metadata.xml new file mode 100644 index 0000000..aac4c14 --- /dev/null +++ b/media-sound/strawberry/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>John M. Harris, Jr.</name> + </maintainer> + <maintainer type="project"> + <email>[email protected]</email> + <name>Gentoo Sound project</name> + </maintainer> + <use> + <flag name="vlc">Enable <pkg>media-video/vlc</pkg> backend</flag> + <flag name="moodbar">Enable moodbar support</flag> + <flag name="soup">Enable soup support</flag> + </use> + <upstream> + <remote-id type="github">jonaski/strawberry</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-sound/strawberry/strawberry-9999.ebuild b/media-sound/strawberry/strawberry-9999.ebuild new file mode 100644 index 0000000..cf08cec --- /dev/null +++ b/media-sound/strawberry/strawberry-9999.ebuild @@ -0,0 +1,113 @@ +# Copyright 1999-2023 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 ~arm64 ~ppc64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="cdda debug +gstreamer icu ipod moodbar mtp pulseaudio +udisks vlc" + +BDEPEND=" + dev-qt/qttools:6[linguist] + sys-devel/gettext + virtual/pkgconfig +" +COMMON_DEPEND=" + dev-db/sqlite:= + dev-libs/glib:2 + dev-libs/protobuf:= + dev-qt/qtbase:6=[concurrent,dbus,gui,network,sql,sqlite,widgets] + media-libs/alsa-lib + media-libs/taglib + x11-libs/libX11 + cdda? ( dev-libs/libcdio:= ) + gstreamer? ( + media-libs/chromaprint:= + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + ) + icu? ( dev-libs/icu:= ) + ipod? ( media-libs/libgpod ) + moodbar? ( sci-libs/fftw:3.0 ) + mtp? ( media-libs/libmtp ) + pulseaudio? ( media-libs/libpulse ) + 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 + dev-libs/boost +" + +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)" + -DUSE_ICU="$(usex icu)" + -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)" + -DBUILD_WITH_QT6=ON + ) + + 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 +}
