Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/gpodder: ChangeLog gpodder-0.13.0.ebuild
Date: Thu, 09 Oct 2008 21:05:56
Message-Id: E1Ko2hl-00080b-Vv@stork.gentoo.org
1 hanno 08/10/09 21:05:53
2
3 Modified: ChangeLog
4 Added: gpodder-0.13.0.ebuild
5 Log:
6 gpodder bump
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc9-00169-gb34c873 x86_64)
8
9 Revision Changes Path
10 1.19 media-sound/gpodder/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gpodder/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gpodder/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gpodder/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/gpodder/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 9 Oct 2008 20:25:04 -0000 1.18
23 +++ ChangeLog 9 Oct 2008 21:05:53 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/gpodder
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/gpodder/ChangeLog,v 1.18 2008/10/09 20:25:04 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gpodder/ChangeLog,v 1.19 2008/10/09 21:05:53 hanno Exp $
29 +
30 +*gpodder-0.13.0 (09 Oct 2008)
31 +
32 + 09 Oct 2008; Hanno Boeck <hanno@g.o> +gpodder-0.13.0.ebuild:
33 + Version bump.
34
35 09 Oct 2008; Markus Meier <maekke@g.o> gpodder-0.12.1.ebuild:
36 amd64/x86 stable, bug #240278
37
38
39
40 1.1 media-sound/gpodder/gpodder-0.13.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gpodder/gpodder-0.13.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/gpodder/gpodder-0.13.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gpodder-0.13.0.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-sound/gpodder/gpodder-0.13.0.ebuild,v 1.1 2008/10/09 21:05:53 hanno Exp $
50
51 inherit distutils
52
53 DESCRIPTION="gPodder is a Podcast receiver/catcher written in Python, using GTK."
54 HOMEPAGE="http://gpodder.berlios.de/"
55 SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~amd64 ~x86"
59 IUSE="ipod libnotify"
60 RESTRICT="test"
61
62 RDEPEND="dev-python/feedparser
63 dev-python/pygtk
64 sys-devel/gettext
65 libnotify? ( dev-python/notify-python )
66 >=dev-python/pysqlite-2.4
67 ipod? (
68 || ( dev-python/eyeD3 dev-python/pymad )
69 media-libs/libgpod
70 )"
71 DEPEND="${RDEPEND}
72 dev-util/intltool
73 media-gfx/imagemagick
74 sys-apps/help2man"
75
76 pkg_setup() {
77 if use ipod && ! built_with_use media-libs/libgpod python ; then
78 eerror "media-libs/libgpod has to be compiled with USE=python"
79 die "Needed USE-flag for libgpod not found."
80 fi
81 if ! built_with_use 'media-gfx/imagemagick' 'png'; then
82 eerror "You must build imagemagick with png support"
83 die "media-gfx/imagemagick built without png"
84 fi
85 }
86
87 src_compile() {
88 emake generators || die
89 emake messages || die
90 distutils_src_compile || die
91 }