diff options
author | E. Liddell <ejlddll@warpmail.net> | 2020-06-14 16:16:34 -0400 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-11-29 14:22:25 +0100 |
commit | 58de8263fcaa4acba0df369a017c4a29cacfd99f (patch) | |
tree | e3dcd318dc5264036454a9bf103474870242f69c /trinity-base/juk/juk-14.0.8.ebuild | |
parent | 9b3eddb24c48f766b7d8b09e964b9c321a976e1a (diff) | |
download | tde-packaging-gentoo-58de8263fcaa4acba0df369a017c4a29cacfd99f.tar.gz tde-packaging-gentoo-58de8263fcaa4acba0df369a017c4a29cacfd99f.zip |
14.0.7 and 14.0.8 ebuilds for roughly 40% of tdemultimedia (see the tdemultimedia-meta ebuild for what is missing and why). Note that these have been test-built in minimalist configurations only and additional TSM_EXTRACT_ALSO entries may be needed. Also, some deps that used to be optional aren't anymore.
Signed-off-by: E. Liddell <ejlddll@warpmail.net>
Diffstat (limited to 'trinity-base/juk/juk-14.0.8.ebuild')
-rw-r--r-- | trinity-base/juk/juk-14.0.8.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/trinity-base/juk/juk-14.0.8.ebuild b/trinity-base/juk/juk-14.0.8.ebuild new file mode 100644 index 00000000..cfca8b5c --- /dev/null +++ b/trinity-base/juk/juk-14.0.8.ebuild @@ -0,0 +1,29 @@ +# Copyright 2020 The Trinity Desktop Project +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +TRINITY_MODULE_NAME="tdemultimedia" + +inherit trinity-meta-2 + +DESCRIPTION="Jukebox and music manager for TDE" +KEYWORDS="~amd64 ~x86" + +IUSE="gstreamer musicbrainz" + +RDEPEND="media-libs/akode + media-libs/taglib + gstreamer? ( media-libs/gst-plugins-base ) + musicbrainz? ( media-libs/musicbrainz )" +DEPEND="${RDEPEND}" + +PDEPEND="gstreamer? ( media-plugins/gst-plugins-meta )" + +src_configure() { + mycmakeargs=( + -DWITH_GSTREAMER="$(usex gstreamer)" + -DWITH_MUSICBRAINZ="$(usex musicbrainz)" + ) + + trinity-meta-2_src_configure +} |