aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2018-05-01 21:35:40 +0200
committerJohannes Huber <johu@gentoo.org>2018-05-01 21:35:40 +0200
commit6edc019871d150031a6cbb311730d4e9ba6ce7b7 (patch)
treeed8a22b74e21ac5e0d47f71bebdef06e63b203e3
parentmedia-sound/tomahawk: Drop obsolete patch (diff)
downloadjohu-6edc019871d150031a6cbb311730d4e9ba6ce7b7.tar.gz
johu-6edc019871d150031a6cbb311730d4e9ba6ce7b7.tar.bz2
johu-6edc019871d150031a6cbb311730d4e9ba6ce7b7.zip
media-sound/tomahawk: Remove package
Dead upstream.
-rw-r--r--media-sound/tomahawk/metadata.xml16
-rw-r--r--media-sound/tomahawk/tomahawk-9999.ebuild76
2 files changed, 0 insertions, 92 deletions
diff --git a/media-sound/tomahawk/metadata.xml b/media-sound/tomahawk/metadata.xml
deleted file mode 100644
index a36075a..0000000
--- a/media-sound/tomahawk/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>johu@gentoo.org</email>
- <name>Johannes Huber</name>
- </maintainer>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
- <use>
- <flag name="hatchet">Enable support for the synchronisation through Hatchet</flag>
- <flag name="telepathy">Enable support for the real-time communication framework telepathy</flag>
- </use>
-</pkgmetadata>
diff --git a/media-sound/tomahawk/tomahawk-9999.ebuild b/media-sound/tomahawk/tomahawk-9999.ebuild
deleted file mode 100644
index 3f7ea6a..0000000
--- a/media-sound/tomahawk/tomahawk-9999.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
- SRC_URI="http://download.tomahawk-player.org/${P}.tar.bz2"
- KEYWORDS="~amd64 ~x86"
-else
- EGIT_REPO_URI="https://github.com/tomahawk-player/${PN}.git"
-fi
-
-DESCRIPTION="Multi-source social music player"
-HOMEPAGE="https://www.tomahawk-player.org/"
-
-LICENSE="GPL-3 BSD"
-SLOT="0"
-IUSE="+hatchet telepathy xmpp"
-
-CDEPEND="
- $(add_frameworks_dep attica)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork)
- $(add_qt_dep qtsql)
- $(add_qt_dep qtsvg)
- $(add_qt_dep qtwebkit)
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtx11extras)
- $(add_qt_dep qtxml)
- app-crypt/qca:2[qt5(+)]
- dev-cpp/lucene++
- dev-cpp/sparsehash
- dev-libs/boost:=
- dev-libs/qtkeychain:=[qt5(+)]
- >=dev-libs/quazip-0.7.2[qt5(+)]
- >=media-libs/liblastfm-1.0.9-r1[qt5(+)]
- >=media-libs/taglib-1.8.0
- media-video/vlc:=[flac,dvbpsi,ffmpeg,mp3]
- >=net-libs/gnutls-3.2:=
- x11-libs/libX11
- hatchet? ( dev-cpp/websocketpp )
- telepathy? ( >=net-libs/telepathy-qt-0.9.7-r1[qt5(+)] )
- xmpp? ( >=net-libs/jreen-1.3.0[qt5(+)] )
-"
-DEPEND="${CDEPEND}
- $(add_qt_dep designer)
- $(add_qt_dep linguist-tools)
- $(add_qt_dep qtconcurrent)
-"
-RDEPEND="${CDEPEND}
- app-crypt/qca:2[ssl]
-"
-
-DOCS=( AUTHORS ChangeLog README.md )
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_CRASHREPORTER=OFF
- -DBUILD_TESTS=OFF
- -DBUILD_TOOLS=OFF
- -DBUILD_WITH_QT4=OFF
- -DWITH_KDE4=OFF
- -DBUILD_HATCHET=$(usex hatchet)
- -DWITH_TelepathyQt=$(usex telepathy)
- -DWITH_Jreen=$(usex xmpp)
- )
-
- if [[ ${KDE_BUILD_TYPE} != live ]]; then
- mycmakeargs+=( -DBUILD_RELEASE=ON )
- fi
-
- kde5_src_configure
-}