diff options
Diffstat (limited to 'trinity-apps/amarok')
-rw-r--r-- | trinity-apps/amarok/Manifest | 1 | ||||
-rw-r--r-- | trinity-apps/amarok/amarok-14.1.0.ebuild | 95 |
2 files changed, 0 insertions, 96 deletions
diff --git a/trinity-apps/amarok/Manifest b/trinity-apps/amarok/Manifest index 16451fa0..d52a0b05 100644 --- a/trinity-apps/amarok/Manifest +++ b/trinity-apps/amarok/Manifest @@ -1,2 +1 @@ -DIST amarok-trinity-14.1.0.tar.xz 10020036 BLAKE2B 38ee190e3b0c6ced346704820eee16bd79491bd645eee3c9db1a2af57955eadcefc3b9433d3c187e4ce2af088a67380149c01d97eac068945a58fa9b1dc040e4 SHA512 5ba18f7840885ae32d4d06153e08cceeb9387ecfe76b6d3310a11b8785aca0326bfc658b461a5865af412619d67d1095b5969b4d79076f3b2747f2825632ed7d DIST amarok-trinity-14.1.1.tar.xz 10022440 BLAKE2B 07355af392ce7b76b1137bc102987e933514ac38136c87f6ef7d7bc48130df2c06ddcfcca63869f3cece569900fa13a4b3014975331cd067b1c99ab8f57ff654 SHA512 ac31b9c4117ce05ea2decf49f58618ae988a5e527a48d744ad99f275f64139a3ab8b8f798d3b42e8c14e86a00b83700561784361a9732fd0c1cfcc84c311a739 diff --git a/trinity-apps/amarok/amarok-14.1.0.ebuild b/trinity-apps/amarok/amarok-14.1.0.ebuild deleted file mode 100644 index cf0daccc..00000000 --- a/trinity-apps/amarok/amarok-14.1.0.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Copyright 2020-2023 The Trinity Desktop Project -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -TRINITY_EXTRAGEAR_PACKAGING="yes" -TRINITY_HANDBOOK="optional" - -TRINITY_LANGS="af ar az be bg bn br ca cs cy da de el en_GB eo es - et eu fa fi fr ga gl he hi hu id is it ja ka km ko ku lo lt mk - ms nb nds ne nl nn pa pl pt pt_BR ro ru rw se sk sl sq sr sr@Latn - ss sv ta tg th tr uk uz uz@cyrillic zh_CN zh_TW" - -TRINITY_DOC_LANGS="da de es et fr it nl pl pt pt_BR ru sv" -TRINITY_MODULE_TYPE="applications/multimedia" -inherit trinity-base-2 - -DESCRIPTION="Advanced music player for TDE" -HOMEPAGE="https://trinitydesktop.org/" - -LICENSE="|| ( GPL-2 GPL-3 )" -SLOT="14" -if [[ ${PV} != *9999* ]] ; then - KEYWORDS="~amd64 ~arm64 ~x86" -fi - -# Notes about the ebuild: -# -# - This version supports three engines: Xine, Yauap, and Akode. -# The only ones supported at the moment are Xine and Akode. -# Yauap isn't in Portage tree, but could be added later. -# -# - Rio Karma support needs nonexistent media-libs/libkarma -# -# - No Support for DAAP because it's not tested if that works with Mongrel2. -# -# - Otherwise the ebuild should offer all what can be done with CMake at the moment. - -IUSE="akode amazon ifp inotify ipod konqsidebar mariadb mp4 mtp mysql njb -opengl postgres visualization +xine" - -REQUIRED_USE="|| ( xine akode ) mysql? ( !mariadb )" - -DEPEND=" - dev-db/sqlite - media-libs/taglib - akode? ( ~media-libs/akode-${PV} ) - ifp? ( media-libs/libifp ) - ipod? ( media-libs/libgpod ) - mp4? ( media-libs/libmp4v2 ) - mtp? ( media-libs/libmtp ) - mysql? ( dev-db/mysql-connector-c ) - mariadb? ( dev-db/mariadb-connector-c ) - njb? ( media-libs/libnjb ) - opengl? ( virtual/opengl ) - postgres? ( dev-db/postgresql:= ) - visualization? ( - media-libs/libsdl - media-plugins/libvisual-plugins - ) - xine? ( media-libs/xine-lib ) -" -RDEPEND="${DEPEND} - dev-lang/ruby:* -" - -src_configure() { - local mycmakeargs=( - -DWITH_SYSTEM_SQLITE=ON - -DWITH_DAAP=OFF - -DWITH_RIOKARMA=OFF - -DWITH_YAUAP=OFF - -DWITH_AKODE="$(usex akode)" - -DWITH_AMAZON="$(usex amazon)" - -DWITH_IFP="$(usex ifp)" - -DWITH_INOTIFY="$(usex inotify)" - -DWITH_IPOD="$(usex ipod)" - -DWITH_KONQSIDEBAR="$(usex konqsidebar)" - -DWITH_MP4V2="$(usex mp4)" - -DWITH_MTP="$(usex mtp)" - -DWITH_NJB="$(usex njb)" - -DWITH_OPENGL="$(usex opengl)" - -DWITH_POSTGRESQL="$(usex postgres)" - -DWITH_LIBVISUAL="$(usex visualization)" - -DWITH_XINE="$(usex xine)" - ) - if use mysql ; then - mycmakeargs+=( -DWITH_MYSQL=ON -DMYSQL_CONFIG="${ESYSROOT}/usr/bin/mysql_config" ) - elif use mariadb ; then - mycmakeargs+=( -DWITH_MYSQL=ON -DMYSQL_CONFIG="${ESYSROOT}/usr/bin/mariadb_config" ) - fi - - trinity-base-2_src_configure -} |