36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/yaydl/yaydl-1.5.2.ebuild,v 1.1 2011/04/03 19:00:39 scarabeus Exp $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Yet Another Youtube DownLoader which is downloading more than youtube"
|
|
HOMEPAGE="http://pdes-net.org/x-haui/"
|
|
SRC_URI="http://pdes-net.org/x-haui/scripts/perl/yaydl_youtubedownloader/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE="encode soundextract"
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-lang/perl
|
|
dev-perl/LWP-UserAgent-Determined
|
|
dev-perl/MP3-Info
|
|
dev-perl/Term-ProgressBar
|
|
dev-perl/URI
|
|
encode? ( || ( virtual/ffmpeg[encode]
|
|
media-video/mplayer[encode,mp3,xvid] ) )
|
|
soundextract? ( || ( virtual/ffmpeg[encode,mp3]
|
|
( media-video/mplayer media-sound/lame ) ) )"
|
|
|
|
src_install() {
|
|
exeinto /usr/bin
|
|
newexe ${PN}.pl ${PN} || die "newexe failed"
|
|
dodoc changelog README || die "dodoc failed"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "${PN} is supporting a lot of video websites."
|
|
elog "Look at ${HOMEPAGE} for more information."
|
|
}
|