diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-04-09 13:37:04 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-04-09 13:37:04 +0000 |
commit | ca31dd3f95c32f4643bbfac80ebd1214165175e9 (patch) | |
tree | 08695660838f0ca34428eb0d1b436083aa976bfb /media-video/clive | |
parent | Removing package dev-lang/smalltalkx bug #208666 (diff) | |
download | gentoo-2-ca31dd3f95c32f4643bbfac80ebd1214165175e9.tar.gz gentoo-2-ca31dd3f95c32f4643bbfac80ebd1214165175e9.tar.bz2 gentoo-2-ca31dd3f95c32f4643bbfac80ebd1214165175e9.zip |
version bump
(Portage version: 2.1.5_rc2)
Diffstat (limited to 'media-video/clive')
-rw-r--r-- | media-video/clive/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/clive/clive-0.4.9.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/media-video/clive/ChangeLog b/media-video/clive/ChangeLog index 2033cbe44b96..84e4cd261237 100644 --- a/media-video/clive/ChangeLog +++ b/media-video/clive/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/clive # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.13 2008/03/28 23:36:10 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.14 2008/04/09 13:37:04 aballier Exp $ + +*clive-0.4.9 (09 Apr 2008) + + 09 Apr 2008; Alexis Ballier <aballier@gentoo.org> +clive-0.4.9.ebuild: + version bump 28 Mar 2008; Markus Meier <maekke@gentoo.org> clive-0.4.6.ebuild: amd64/x86 stable, bug #215098 diff --git a/media-video/clive/clive-0.4.9.ebuild b/media-video/clive/clive-0.4.9.ebuild new file mode 100644 index 000000000000..bd644de50f17 --- /dev/null +++ b/media-video/clive/clive-0.4.9.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-0.4.9.ebuild,v 1.1 2008/04/09 13:37:04 aballier Exp $ + +# We inherit distutils to get the pkg_* functions for byte compiling python +inherit versionator distutils + +DESCRIPTION="Command line tool for extracting videos from Youtube, Google Video, Dailymotion, Guba (free) and Stage6 websites" +HOMEPAGE="http://home.gna.org/clive/" +SRC_URI="http://dl.gna.org/clive/$(get_version_component_range 1-2 ${PV})/src/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="doc" + +RDEPEND=">=dev-lang/python-2.4" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_compile() { + econf $(use_with doc) + emake || die "emake failed" + if use doc; then + emake dox || die "failed to create the documentation" + fi +} + +src_test() { + ./run-tests.py || die "tests failed" +} + +src_install() { + emake py_compile=true DESTDIR="${D}" install || die "install failed" + dodoc AUTHORS ChangeLog README + use doc && dohtml dox/html/* +} |