# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/cclive/cclive-0.4.7.ebuild,v 1.1 2009/08/25 15:41:38 aballier Exp $ EAPI=2 DESCRIPTION="Command line tool for extracting videos from various websites" HOMEPAGE="http://code.google.com/p/cclive/" SRC_URI="http://cclive.googlecode.com/files/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="perl" RDEPEND=">=net-misc/curl-7.18.0 perl? ( sys-devel/libperl dev-lang/perl dev-perl/HTML-Parser )" DEPEND="${RDEPEND} dev-util/pkgconfig" src_configure() { econf $(use_with perl) } src_install() { emake DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog NEWS README TODO }