Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/clive: ChangeLog clive-1.0.1.ebuild
Date: Wed, 03 Sep 2008 06:21:48
Message-Id: E1KalkQ-0007Md-0M@stork.gentoo.org
1 aballier 08/09/03 06:21:46
2
3 Modified: ChangeLog
4 Added: clive-1.0.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
8
9 Revision Changes Path
10 1.35 media-video/clive/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/clive/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/clive/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/clive/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 17 Aug 2008 09:10:53 -0000 1.34
23 +++ ChangeLog 3 Sep 2008 06:21:45 -0000 1.35
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-video/clive
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.34 2008/08/17 09:10:53 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.35 2008/09/03 06:21:45 aballier Exp $
29 +
30 +*clive-1.0.1 (03 Sep 2008)
31 +
32 + 03 Sep 2008; Alexis Ballier <aballier@g.o> +clive-1.0.1.ebuild:
33 + version bump
34
35 17 Aug 2008; Alexis Ballier <aballier@g.o> -clive-0.4.19.ebuild,
36 -clive-0.5.0.ebuild:
37
38
39
40 1.1 media-video/clive/clive-1.0.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/clive/clive-1.0.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/clive/clive-1.0.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: clive-1.0.1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-video/clive/clive-1.0.1.ebuild,v 1.1 2008/09/03 06:21:45 aballier Exp $
50
51 # We inherit distutils to get the pkg_* functions for byte compiling python
52 inherit versionator distutils
53
54 DESCRIPTION="Command line tool for extracting videos from Youtube, Google Video, Dailymotion, Guba (free) and Stage6 websites"
55 HOMEPAGE="http://home.gna.org/clive/"
56 SRC_URI="http://dl.gna.org/clive/$(get_version_component_range 1-2 ${PV}).x/${P}.tar.bz2"
57
58 LICENSE="GPL-3"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
61 IUSE="doc"
62
63 RDEPEND=">=dev-lang/python-2.4
64 >=dev-libs/newt-0.51
65 >=dev-python/urlgrabber-3.1.0
66 >=dev-python/feedparser-4.1"
67 DEPEND="${RDEPEND}
68 doc? ( app-doc/doxygen )"
69
70 src_compile() {
71 econf $(use_with doc)
72 emake || die "emake failed"
73 if use doc; then
74 emake dox || die "failed to create the documentation"
75 fi
76 }
77
78 src_install() {
79 emake py_compile=true DESTDIR="${D}" install || die "install failed"
80 dodoc AUTHORS README CHANGES
81 use doc && dohtml dox/html/*
82 }