blob: 4953d392dad1c4d754e3d5b096137a163b673700 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/cclive/cclive-0.6.5.ebuild,v 1.2 2011/01/07 19:51:34 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="test offensive"
RDEPEND=">=media-libs/quvi-0.2.0
>=dev-libs/libpcre-7.8[cxx]"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf \
--with-man \
$(use_enable test tests)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
}
src_test() {
emake check || die "emake test failed"
}
|