Gentoo Archives: gentoo-commits

From: "Ingmar Vanhassel (ingmar)" <ingmar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/taglib: ChangeLog taglib-1.5.ebuild
Date: Thu, 20 Mar 2008 21:57:18
Message-Id: E1JcSl9-0004Vc-TH@stork.gentoo.org
1 ingmar 08/03/20 21:57:15
2
3 Modified: ChangeLog
4 Added: taglib-1.5.ebuild
5 Log:
6 Version bump, bug 214082. Add die messages, die on failure, depend on dev-util/pkgconfig.
7 (Portage version: 2.2_pre5)
8
9 Revision Changes Path
10 1.62 media-libs/taglib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/taglib/ChangeLog?rev=1.62&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/taglib/ChangeLog?rev=1.62&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/taglib/ChangeLog?r1=1.61&r2=1.62
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/taglib/ChangeLog,v
19 retrieving revision 1.61
20 retrieving revision 1.62
21 diff -u -r1.61 -r1.62
22 --- ChangeLog 6 Mar 2008 01:14:13 -0000 1.61
23 +++ ChangeLog 20 Mar 2008 21:57:15 -0000 1.62
24 @@ -1,6 +1,16 @@
25 # ChangeLog for media-libs/taglib
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/taglib/ChangeLog,v 1.61 2008/03/06 01:14:13 ingmar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/taglib/ChangeLog,v 1.62 2008/03/20 21:57:15 ingmar Exp $
29 +
30 + 20 Mar 2008; Ingmar Vanhassel <ingmar@g.o> +taglib-1.5.ebuild:
31 + Version bump, bug 214082. Add die messages, die on failure, depend on
32 + dev-util/pkgconfig.
33 +
34 +*taglib-1.5 (20 Mar 2008)
35 +
36 + 20 Mar 2008; Ingmar Vanhassel <ingmar@g.o> +taglib-1.5.ebuild:
37 + Version bump, bug 214082. Add die messages, die on failure, depend on
38 + dev-util/pkgconfig, tests need dev-util/cppunit.
39
40 06 Mar 2008; Ingmar Vanhassel <ingmar@g.o>
41 files/taglib-1.4-gcc-4.3-include.patch:
42
43
44
45 1.1 media-libs/taglib/taglib-1.5.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/taglib/taglib-1.5.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/taglib/taglib-1.5.ebuild?rev=1.1&content-type=text/plain
49
50 Index: taglib-1.5.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/media-libs/taglib/taglib-1.5.ebuild,v 1.1 2008/03/20 21:57:15 ingmar Exp $
55
56 inherit libtool eutils
57
58 DESCRIPTION="A library for reading and editing audio meta data"
59 HOMEPAGE="http://developer.kde.org/~wheeler/taglib.html"
60 SRC_URI="http://developer.kde.org/~wheeler/files/src/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
65 IUSE="debug"
66
67 RDEPEND=""
68 DEPEND="dev-util/pkgconfig"
69
70 src_compile() {
71 econf $(use_enable debug) || die "econf failed."
72 emake || die "emake failed."
73 }
74
75 src_install() {
76 emake DESTDIR="${D}" install || die "emake install failed."
77 dodoc AUTHORS doc/* || die "dodoc failed."
78 }
79
80
81
82 --
83 gentoo-commits@l.g.o mailing list