blob: 0cd62c456030167b492a1f819e0ae81c1877259f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/vget/vget-0.3.6.ebuild,v 1.1 2009/09/12 08:51:44 patrick Exp $
DESCRIPTION="Tool to download videos from the veoh.com service."
HOMEPAGE="http://segfault.gr/projects/lang/en/projects_id/15/secid/28/"
SRC_URI="http://segfault.gr/uploads/projects/releases/vget/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="net-misc/curl
sys-libs/ncurses
dev-libs/libxml2"
src_compile() {
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
dodoc README CHANGELOG || die "dodoc failed"
}
|