diff options
Diffstat (limited to 'net-misc/ytfzf/ytfzf-2.1.ebuild')
-rw-r--r-- | net-misc/ytfzf/ytfzf-2.1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/net-misc/ytfzf/ytfzf-2.1.ebuild b/net-misc/ytfzf/ytfzf-2.1.ebuild deleted file mode 100644 index c11320bd52ab..000000000000 --- a/net-misc/ytfzf/ytfzf-2.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit optfeature - -DESCRIPTION="Posix script to find and watch youtube videos from the terminal" -HOMEPAGE="https://github.com/pystardust/ytfzf/" -SRC_URI="https://github.com/pystardust/ytfzf/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="minimal" - -# fzf/mpv/yt-dlp "can" be optfeatures depending on configuration, but depend -# on them so it works as expected out-of-the-box while allowing to disable. -RDEPEND=" - app-misc/jq - net-misc/curl[ssl] - virtual/awk - !minimal? ( - app-shells/fzf - media-video/mpv[lua] - net-misc/yt-dlp - )" - -src_compile() { :; } - -src_install() { - local emakeargs=( - DESTDIR="${D}" - PREFIX="${EPREFIX}"/usr - DOCDIR="${EPREFIX}"/usr/share/doc/${PF} - ) - - emake "${emakeargs[@]}" doc install - einstalldocs - - rm -r "${ED}"/usr/share/licenses || die -} - -pkg_postinst() { - optfeature "external menu support" x11-misc/dmenu - optfeature "in-terminal thumbnails on X11" media-gfx/ueberzug - optfeature "desktop notifications" x11-libs/libnotify - - if [[ ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 2.0; then - elog "Note that >=${PN}-2.0 is a major rewrite and is not compatible with" - elog "configuration and some command arguments of older versions, see the" - elog "newly added ${PN}(1) and ${PN}(5) man pages for more information." - fi -} |