diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2018-09-27 19:26:13 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2018-09-27 19:51:53 +0200 |
commit | 10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b (patch) | |
tree | e4d2cd6e4c4d91f7d1793bc5dd9396bfb11ddeb7 /media-video/orion | |
parent | sci-libs/votca-moo: is now part of votca-ctp (diff) | |
download | gentoo-10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b.tar.gz gentoo-10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b.tar.bz2 gentoo-10ae2212f3e609f7f9682a94ac5a02ac4f3ae47b.zip |
media-video/orion: drop old
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Diffstat (limited to 'media-video/orion')
-rw-r--r-- | media-video/orion/Manifest | 2 | ||||
-rw-r--r-- | media-video/orion/orion-1.3.5.ebuild | 40 | ||||
-rw-r--r-- | media-video/orion/orion-1.4.0.ebuild | 49 |
3 files changed, 0 insertions, 91 deletions
diff --git a/media-video/orion/Manifest b/media-video/orion/Manifest index f6b42a17f10b..6168b4a52a55 100644 --- a/media-video/orion/Manifest +++ b/media-video/orion/Manifest @@ -1,3 +1 @@ -DIST orion-1.3.5.tar.gz 3213988 BLAKE2B e4786a277d92caf20ff4aa4f5a31a683e60fc7c163699375f953bfd05b5e4a32920d547e708c900574ad6860ef741bcc39b4e70440f9781f831eb0f052861870 SHA512 afd5540b2a61181c3db051fd39dd42f8a96799d19aab814f5846c5270f13bb0cb8305cd69e09e69cf215aeafb66682cc6d70379e791d6bffc551a38a8c751d0d -DIST orion-1.4.0.tar.gz 3375433 BLAKE2B 8e3b83d89780c46bc8a29cd6e7cdf679f2be9e5176ccc9bc50fc6714bf5aa6178ea138c78d6cd427f6fa7c9977e2af06a54812b380e1a1cdf8321643969c14d6 SHA512 0dadd66f806d9f4bf464e855b38e35cb762ba9cbc1c51a135e5fd489f3a5ebf80117f502eaa8225d0a4a72f15bc8e4858b92866148dc73ecc0d18fd1e1717bed DIST orion-1.6.1.tar.gz 614216 BLAKE2B 8fc0909c1dd433e72d4ed41046d38a861ec48cbe6e93e1a9cc48f31cb3ef381e1b5b998c501d20756883431464eef798859b9ba4d086b89575281dbc17afca69 SHA512 3db0b59a89d2364f2d0586c3f318fc793f73a17d767adb0f44b89830e397be6f24c2ab662b7c84e7d857bc42b952fdf7fa280090313f5e39e37205eb8fb6dc9e diff --git a/media-video/orion/orion-1.3.5.ebuild b/media-video/orion/orion-1.3.5.ebuild deleted file mode 100644 index 59d5d8702da3..000000000000 --- a/media-video/orion/orion-1.3.5.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit qmake-utils - -DESCRIPTION="Cross-platform Twitch client" -HOMEPAGE="https://alamminsalo.github.io/orion/" -SRC_URI="https://github.com/alamminsalo/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+mpv" - -DEPEND="dev-qt/qtquickcontrols:5 - dev-qt/qtsvg:5 - dev-qt/qtwebengine:5 - mpv? ( media-video/mpv[libmpv] ) - !mpv? ( dev-qt/qtmultimedia:5 )" -RDEPEND="${DEPEND}" - -src_configure() { - # TODO: also supports qtav, not yet in portage - local PLAYER - if use mpv; then - PLAYER=mpv - else - PLAYER=multimedia - fi - eqmake5 ${PN}.pro CONFIG+=${PLAYER} -} - -src_install() { - dobin ${PN} - domenu distfiles/*.desktop - - insinto /usr/share/icons/hicolor/scalable/apps - doins distfiles/${PN}.svg -} diff --git a/media-video/orion/orion-1.4.0.ebuild b/media-video/orion/orion-1.4.0.ebuild deleted file mode 100644 index 804460e26d8f..000000000000 --- a/media-video/orion/orion-1.4.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit qmake-utils eutils - -DESCRIPTION="Cross-platform Twitch client" -HOMEPAGE="https://alamminsalo.github.io/orion/" -SRC_URI="https://github.com/alamminsalo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+mpv" - -DEPEND="dev-qt/qtquickcontrols:5 - dev-qt/qtsvg:5 - dev-qt/qtwebengine:5 - mpv? ( media-video/mpv[libmpv] ) - !mpv? ( dev-qt/qtmultimedia:5 )" -RDEPEND="${DEPEND} - !mpv? ( media-plugins/gst-plugins-hls )" - -src_prepare() { - sed -i \ - -e 's:^Icon=/usr/local/share/icons/orion.svg$:Icon=/usr/share/icons/hicolor/scalable/apps/orion.svg:' \ - -e 's:^Categories=Games$:Categories=Game;:' \ - distfiles/*.desktop - eapply_user -} - -src_configure() { - # TODO: also supports qtav, not yet in portage - local PLAYER - if use mpv; then - PLAYER=mpv - else - PLAYER=multimedia - fi - eqmake5 ${PN}.pro CONFIG+=${PLAYER} -} - -src_install() { - dobin ${PN} - domenu distfiles/*.desktop - - insinto /usr/share/icons/hicolor/scalable/apps - doins distfiles/${PN}.svg -} |