79 lines
2.1 KiB
Bash
79 lines
2.1 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_TEST="do"
|
|
inherit desktop optfeature perl-module xdg-utils
|
|
|
|
DESCRIPTION="A command line utility for viewing youtube-videos in Mplayer"
|
|
HOMEPAGE="https://github.com/trizen/youtube-viewer"
|
|
SRC_URI="https://github.com/trizen/youtube-viewer/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="|| ( Artistic-2 GPL-1+ )"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="gtk"
|
|
|
|
RDEPEND="
|
|
dev-perl/Data-Dump
|
|
dev-perl/JSON
|
|
dev-perl/libwww-perl[ssl]
|
|
dev-perl/LWP-Protocol-https
|
|
dev-perl/Term-ReadLine-Gnu
|
|
virtual/perl-Encode
|
|
virtual/perl-File-Path
|
|
virtual/perl-File-Spec
|
|
virtual/perl-Getopt-Long
|
|
virtual/perl-Scalar-List-Utils
|
|
virtual/perl-Term-ANSIColor
|
|
virtual/perl-Term-ReadLine
|
|
virtual/perl-Text-ParseWords
|
|
virtual/perl-Text-Tabs+Wrap
|
|
gtk? (
|
|
dev-perl/Gtk3
|
|
dev-perl/File-ShareDir
|
|
virtual/freedesktop-icon-theme
|
|
x11-libs/gdk-pixbuf:2[jpeg]
|
|
)
|
|
|| ( media-video/ffmpeg[openssl] media-video/ffmpeg[gnutls] )
|
|
|| ( media-video/mpv media-video/mplayer media-video/vlc gtk? ( media-video/smplayer ) )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="dev-perl/Module-Build"
|
|
|
|
src_configure() {
|
|
local myconf
|
|
if use gtk; then
|
|
myconf="--gtk3"
|
|
fi
|
|
|
|
perl-module_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
perl-module_src_install
|
|
|
|
if use gtk; then
|
|
domenu share/gtk-youtube-viewer.desktop
|
|
doicon share/icons/gtk-youtube-viewer.png
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
use gtk && xdg_icon_cache_update
|
|
optfeature "local cache support" dev-perl/LWP-UserAgent-Cached
|
|
optfeature "faster JSON to HASH conversion" dev-perl/JSON-XS
|
|
optfeature "printing results in a fixed-width format (--fixed-width, -W)" dev-perl/Text-CharWidth
|
|
optfeature "live streams support" net-misc/yt-dlp net-misc/youtube-dl
|
|
elog
|
|
elog "Check the configuration file in ~/.config/youtube-viewer/"
|
|
elog "and configure your video player backend."
|
|
elog
|
|
ewarn "Starting with version 3.7.4, youtube-viewer requires the user to"
|
|
ewarn "get their own API key to function. Please refer to README.md or"
|
|
ewarn "https://github.com/trizen/youtube-viewer#logging-in for details!"
|
|
}
|
|
|
|
pkg_postrm() {
|
|
use gtk && xdg_icon_cache_update
|
|
}
|