Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libspiff: ChangeLog libspiff-1.0.0.ebuild
Date: Sun, 05 Oct 2008 22:07:10
Message-Id: E1Kmbkm-0006Yn-UK@stork.gentoo.org
1 aballier 08/10/05 22:07:04
2
3 Modified: ChangeLog
4 Added: libspiff-1.0.0.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
8
9 Revision Changes Path
10 1.26 media-libs/libspiff/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libspiff/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libspiff/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libspiff/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libspiff/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 13 Aug 2008 08:49:28 -0000 1.25
23 +++ ChangeLog 5 Oct 2008 22:07:04 -0000 1.26
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libspiff
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libspiff/ChangeLog,v 1.25 2008/08/13 08:49:28 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libspiff/ChangeLog,v 1.26 2008/10/05 22:07:04 aballier Exp $
29 +
30 +*libspiff-1.0.0 (05 Oct 2008)
31 +
32 + 05 Oct 2008; Alexis Ballier <aballier@g.o>
33 + +files/libspiff-1.0.0-testincludes.patch, +libspiff-1.0.0.ebuild:
34 + version bump
35
36 13 Aug 2008; Alexis Ballier <aballier@g.o> -libspiff-0.8.0.ebuild:
37 remove old
38
39
40
41 1.1 media-libs/libspiff/libspiff-1.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libspiff/libspiff-1.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libspiff/libspiff-1.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libspiff-1.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libspiff/libspiff-1.0.0.ebuild,v 1.1 2008/10/05 22:07:04 aballier Exp $
51
52
53 inherit eutils
54
55 DESCRIPTION="Library for XSPF playlist reading and writing"
56 HOMEPAGE="http://libspiff.sourceforge.net"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
58
59 LICENSE="BSD LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
62 IUSE="doc"
63
64 RDEPEND=">=dev-libs/expat-1.95.8
65 >=dev-libs/uriparser-0.7.2"
66 DEPEND="${RDEPEND}
67 doc? ( app-doc/doxygen )"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${FILESDIR}/${P}-testincludes.patch"
73 }
74
75 src_compile() {
76 econf --disable-dependency-tracking
77 emake || die "emake failed."
78
79 if use doc; then
80 cd "${S}/doc"
81 doxygen Doxyfile || die "doxygen failed."
82 fi
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "emake install failed."
87 dodoc AUTHORS ChangeLog NEWS README THANKS
88
89 if use doc; then
90 dohtml doc/html/*
91 fi
92 }