Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/gtkpod: gtkpod-0.99.14.ebuild ChangeLog
Date: Mon, 19 Jan 2009 23:59:42
Message-Id: E1LP41s-0005tY-8Z@stork.gentoo.org
1 tester 09/01/19 23:59:40
2
3 Modified: ChangeLog
4 Added: gtkpod-0.99.14.ebuild
5 Log:
6 Versionbump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r7 i686)
8
9 Revision Changes Path
10 1.67 app-pda/gtkpod/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gtkpod/ChangeLog?rev=1.67&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gtkpod/ChangeLog?rev=1.67&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gtkpod/ChangeLog?r1=1.66&r2=1.67
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-pda/gtkpod/ChangeLog,v
19 retrieving revision 1.66
20 retrieving revision 1.67
21 diff -u -r1.66 -r1.67
22 --- ChangeLog 30 Nov 2008 16:40:56 -0000 1.66
23 +++ ChangeLog 19 Jan 2009 23:59:40 -0000 1.67
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-pda/gtkpod
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/ChangeLog,v 1.66 2008/11/30 16:40:56 bluebird Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/ChangeLog,v 1.67 2009/01/19 23:59:40 tester Exp $
30 +
31 +*gtkpod-0.99.14 (19 Jan 2009)
32 +
33 + 19 Jan 2009; Olivier CrĂȘte <tester@g.o> +gtkpod-0.99.14.ebuild:
34 + Versionbump
35
36 30 Nov 2008; Friedrich Oslage <bluebird@g.o> gtkpod-0.99.12.ebuild:
37 Stable on sparc, bug #231573
38
39
40
41 1.1 app-pda/gtkpod/gtkpod-0.99.14.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gtkpod/gtkpod-0.99.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-pda/gtkpod/gtkpod-0.99.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gtkpod-0.99.14.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-0.99.14.ebuild,v 1.1 2009/01/19 23:59:40 tester Exp $
51
52 inherit eutils
53
54 DESCRIPTION="GUI for iPod using GTK2"
55 HOMEPAGE="http://gtkpod.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="aac flac gnome hal ogg"
62
63 DEPEND=">=x11-libs/gtk+-2.6.0
64 >=media-libs/libid3tag-0.15
65 >=gnome-base/libglade-2.4
66 >=gnome-base/libgnomecanvas-2.14
67 >=media-libs/libgpod-0.6.0
68 >=net-misc/curl-7.10
69 gnome? ( >=gnome-base/gnome-vfs-2.6 )
70 hal? ( =sys-apps/hal-0.5* )
71 aac? ( media-libs/libmp4v2 )
72 ogg? ( media-libs/libvorbis )
73 flac? ( media-libs/flac )"
74
75 src_unpack() {
76 unpack ${A}
77
78 # Disable aac forcefully if not enabled
79 use aac || sed -i -e s/MP4FileInfo/MP4FileInfoDisabled/g "${S}"/configure
80 }
81
82 src_compile() {
83 econf \
84 $(use_with hal) \
85 $(use_with aac mp4v2) \
86 $(use_with ogg) \
87 $(use_with flac) \
88 $(use_with gnome gnome-vfs ) \
89 || die "econf failed"
90 emake || die "emake failed"
91 }
92
93 src_install() {
94 make install DESTDIR="${D}" || die
95 dodoc README TROUBLESHOOTING
96 }