Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-cdr/cue2toc: ChangeLog cue2toc-0.4.ebuild
Date: Fri, 05 Dec 2008 13:17:41
Message-Id: E1L8aYr-000336-2G@stork.gentoo.org
1 ssuominen 08/12/05 13:17:37
2
3 Modified: ChangeLog cue2toc-0.4.ebuild
4 Log:
5 Block cdrdao because they both install cue2toc application wrt #247387, thanks to Diego E. Pettenò.
6 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.27.7 i686)
7
8 Revision Changes Path
9 1.2 app-cdr/cue2toc/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/cue2toc/ChangeLog?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/cue2toc/ChangeLog?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/cue2toc/ChangeLog?r1=1.1&r2=1.2
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-cdr/cue2toc/ChangeLog,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ChangeLog 24 Jun 2006 10:56:38 -0000 1.1
22 +++ ChangeLog 5 Dec 2008 13:17:36 -0000 1.2
23 @@ -1,6 +1,10 @@
24 # ChangeLog for app-cdr/cue2toc
25 -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cue2toc/ChangeLog,v 1.1 2006/06/24 10:56:38 sbriesen Exp $
27 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cue2toc/ChangeLog,v 1.2 2008/12/05 13:17:36 ssuominen Exp $
29 +
30 + 05 Dec 2008; <ssuominen@g.o> cue2toc-0.4.ebuild:
31 + Block cdrdao because they both install cue2toc application wrt #247387,
32 + thanks to Diego E. Pettenò.
33
34 *cue2toc-0.4 (24 Jun 2006)
35
36
37
38
39 1.2 app-cdr/cue2toc/cue2toc-0.4.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/cue2toc/cue2toc-0.4.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/cue2toc/cue2toc-0.4.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/cue2toc/cue2toc-0.4.ebuild?r1=1.1&r2=1.2
44
45 Index: cue2toc-0.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-cdr/cue2toc/cue2toc-0.4.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- cue2toc-0.4.ebuild 24 Jun 2006 10:56:38 -0000 1.1
52 +++ cue2toc-0.4.ebuild 5 Dec 2008 13:17:36 -0000 1.2
53 @@ -1,8 +1,6 @@
54 -# Copyright 1999-2006 Gentoo Foundation
55 +# Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cue2toc/cue2toc-0.4.ebuild,v 1.1 2006/06/24 10:56:38 sbriesen Exp $
58 -
59 -inherit eutils
60 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cue2toc/cue2toc-0.4.ebuild,v 1.2 2008/12/05 13:17:36 ssuominen Exp $
61
62 DESCRIPTION="Convert CUE files to cdrdao's TOC format"
63 HOMEPAGE="http://cue2toc.sourceforge.net/"
64 @@ -12,9 +10,10 @@
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68 -DEPEND=""
69
70 -src_install () {
71 - make DESTDIR="${D}" install || die "make install failed"
72 +DEPEND="!app-cdr/cdrdao"
73 +
74 +src_install() {
75 + emake DESTDIR="${D}" install || die "emake install failed."
76 dodoc AUTHORS ChangeLog NEWS README
77 }