Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/podcatcher: podcatcher-3.1.4.ebuild
Date: Sat, 06 Jun 2009 09:26:23
Message-Id: E1MCsAQ-00088j-13@stork.gentoo.org
1 ssuominen 09/06/06 09:26:22
2
3 Modified: podcatcher-3.1.4.ebuild
4 Log:
5 Missing die, unnecessary quoting.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 media-sound/podcatcher/podcatcher-3.1.4.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/podcatcher/podcatcher-3.1.4.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/podcatcher/podcatcher-3.1.4.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/podcatcher/podcatcher-3.1.4.ebuild?r1=1.1&r2=1.2
14
15 Index: podcatcher-3.1.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/podcatcher/podcatcher-3.1.4.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- podcatcher-3.1.4.ebuild 7 Mar 2009 16:41:05 -0000 1.1
22 +++ podcatcher-3.1.4.ebuild 6 Jun 2009 09:26:21 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/podcatcher/podcatcher-3.1.4.ebuild,v 1.1 2009/03/07 16:41:05 patrick Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-sound/podcatcher/podcatcher-3.1.4.ebuild,v 1.2 2009/06/06 09:26:21 ssuominen Exp $
28
29 DESCRIPTION="Podcast client for the command-line written in Ruby."
30 HOMEPAGE="http://podcatcher.rubyforge.org"
31 @@ -11,13 +11,13 @@
32 KEYWORDS="~amd64 ~ppc ~x86"
33 IUSE="bittorrent"
34
35 -DEPEND=">=dev-lang/ruby-1.8.2
36 +RDEPEND=">=dev-lang/ruby-1.8.2
37 bittorrent? ( dev-ruby/rubytorrent )"
38 -RDEPEND="${DEPEND}"
39 +DEPEND="${RDEPEND}"
40
41 -S="${WORKDIR}"/${PN}
42 +S=${WORKDIR}/${PN}
43
44 src_install() {
45 - dobin bin/podcatcher
46 + dobin bin/podcatcher || die "dobin failed"
47 dodoc demo/*
48 }