blob: 75858a8109371164fc0f702f516f89960c0128df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-viewer/youtube-viewer-3.0.3.ebuild,v 1.2 2012/11/20 18:43:53 hasufell Exp $
EAPI=4
inherit perl-module vcs-snapshot
DESCRIPTION="A command line utility for viewing youtube-videos in Mplayer"
HOMEPAGE="http://trizen.googlecode.com"
SRC_URI="https://github.com/trizen/youtube-viewer/tarball/${PV} -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk"
RDEPEND="
>=dev-lang/perl-5.10.0
dev-perl/Data-Dump
dev-perl/libwww-perl
dev-perl/XML-Fast
|| ( media-video/mplayer[X,network]
media-video/mplayer2[X,network] )
virtual/perl-File-Spec
virtual/perl-Getopt-Long
virtual/perl-Scalar-List-Utils
virtual/perl-Term-ANSIColor
gtk? (
dev-perl/gtk2-perl
!net-misc/gtk-youtube-viewer
virtual/freedesktop-icon-theme
x11-libs/gdk-pixbuf:2[X,jpeg]
)"
DEPEND="virtual/perl-Module-Build"
SRC_TEST="do"
S=${WORKDIR}/${P}/WWW-YoutubeViewer
# build system installs files on "perl Build.PL" too
# do all the work in src_install
src_configure() { :; }
src_compile() { :; }
src_install() {
use gtk && local myconf="--gtk-youtube-viewer"
perl-module_src_configure
perl-module_src_install
}
pkg_postinst() {
perl-module_pkg_postinst
einfo
elog "optional dependencies:"
elog " dev-perl/TermReadKey (to get the terminal width size)"
elog " dev-perl/Term-ReadLine-Gnu (for a better STDIN support)"
elog " net-misc/gcap (for retrieving Youtube closed captions)"
einfo
}
|