summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-06-21 00:05:00 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-06-21 00:05:00 +0000
commit13c2f6dd87a279c65d7c67bf87b2445e0fd904bd (patch)
treed690a1bfbae5f3aec878397da7abfa783ec6ece9 /media-video/clive
parentMake multipath-tools work for early boot environments for both baselayout1 an... (diff)
downloadgentoo-2-13c2f6dd87a279c65d7c67bf87b2445e0fd904bd.tar.gz
gentoo-2-13c2f6dd87a279c65d7c67bf87b2445e0fd904bd.tar.bz2
gentoo-2-13c2f6dd87a279c65d7c67bf87b2445e0fd904bd.zip
remove old
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.4 x86_64)
Diffstat (limited to 'media-video/clive')
-rw-r--r--media-video/clive/ChangeLog5
-rw-r--r--media-video/clive/clive-0.4.15.ebuild40
2 files changed, 4 insertions, 41 deletions
diff --git a/media-video/clive/ChangeLog b/media-video/clive/ChangeLog
index 24fcabe5d3bc..f23679a08682 100644
--- a/media-video/clive/ChangeLog
+++ b/media-video/clive/ChangeLog
@@ -1,6 +1,9 @@
# 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.26 2008/06/19 07:39:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/clive/ChangeLog,v 1.27 2008/06/21 00:05:00 aballier Exp $
+
+ 21 Jun 2008; Alexis Ballier <aballier@gentoo.org> -clive-0.4.15.ebuild:
+ remove old
*clive-0.4.16 (19 Jun 2008)
diff --git a/media-video/clive/clive-0.4.15.ebuild b/media-video/clive/clive-0.4.15.ebuild
deleted file mode 100644
index 34e89b078276..000000000000
--- a/media-video/clive/clive-0.4.15.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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.15.ebuild,v 1.1 2008/06/12 07:57:18 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
- >=dev-libs/newt-0.51
- >=dev-python/urlgrabber-3.1.0
- >=dev-python/feedparser-4.1"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-src_compile() {
- # with-lib means compile its own
- econf $(use_with doc) \
- --without-newt \
- --without-feedparser \
- --without-urlgrabber
- emake || die "emake failed"
- if use doc; then
- emake dox || die "failed to create the documentation"
- fi
-}
-
-src_install() {
- emake py_compile=true DESTDIR="${D}" install || die "install failed"
- dodoc AUTHORS ChangeLog README
- use doc && dohtml dox/html/*
-}