Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libgpod: ChangeLog libgpod-0.7.0.ebuild
Date: Mon, 19 Jan 2009 23:58:37
Message-Id: E1LP40o-0005qj-CY@stork.gentoo.org
1 tester 09/01/19 23:58:34
2
3 Modified: ChangeLog
4 Added: libgpod-0.7.0.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r7 i686)
8
9 Revision Changes Path
10 1.55 media-libs/libgpod/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.55&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.55&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?r1=1.54&r2=1.55
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v
19 retrieving revision 1.54
20 retrieving revision 1.55
21 diff -u -r1.54 -r1.55
22 --- ChangeLog 30 Nov 2008 16:38:47 -0000 1.54
23 +++ ChangeLog 19 Jan 2009 23:58:34 -0000 1.55
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libgpod
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.54 2008/11/30 16:38:47 bluebird Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.55 2009/01/19 23:58:34 tester Exp $
30 +
31 +*libgpod-0.7.0 (19 Jan 2009)
32 +
33 + 19 Jan 2009; Olivier CrĂȘte <tester@g.o> +libgpod-0.7.0.ebuild:
34 + Version bump
35
36 30 Nov 2008; Friedrich Oslage <bluebird@g.o> libgpod-0.6.0.ebuild:
37 Stable on sparc, bug #231573
38
39
40
41 1.1 media-libs/libgpod/libgpod-0.7.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libgpod-0.7.0.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/media-libs/libgpod/libgpod-0.7.0.ebuild,v 1.1 2009/01/19 23:58:34 tester Exp $
51
52 inherit eutils libtool
53
54 DESCRIPTION="Shared library to access the contents of an iPod"
55 HOMEPAGE="http://www.gtkpod.org/libgpod.html"
56 SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.gz"
57
58 LICENSE="LGPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="gtk python doc test hal"
62
63 RDEPEND=">=dev-libs/glib-2.4
64 hal? ( =sys-apps/hal-0.5* )
65 sys-apps/sg3_utils
66 gtk? ( >=x11-libs/gtk+-2 )
67 python? ( >=dev-lang/python-2.3
68 >=x11-libs/gtk+-2
69 media-libs/mutagen
70 gtk? ( >=dev-python/pygobject-2 ) )
71 test? ( media-libs/taglib )"
72 DEPEND="${RDEPEND}
73 doc? ( dev-util/gtk-doc )
74 python? ( >=dev-lang/swig-1.3.24 )
75 dev-util/pkgconfig"
76
77 src_compile() {
78
79 local myconf
80
81 if use gtk; then
82 myconf="--enable-pygobject"
83 else
84 myconf="--disable-pygobject"
85 fi
86
87 econf ${myconf} \
88 $(use_enable doc gtk-doc) \
89 $(use_enable gtk gdk-pixbuf) \
90 $(use_with hal hal) \
91 $(use_with python) || die "configure failed"
92
93 emake || die "make failed"
94
95 }
96
97 src_install() {
98 make DESTDIR="${D}" install || die "install failed"
99 dodoc README TROUBLESHOOTING AUTHORS NEWS README.SysInfo
100 }
101
102 pkg_postinst() {
103 einfo "If you use a newer Ipod like the Ipod classic, make sure to read"
104 einfo "the information in README.SysInfo in /usr/share/doc/${P}"
105 einfo "This is no needed if HAL is installed and works correctly."
106 }