Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/takcd: ChangeLog takcd-0.10.ebuild
Date: Sun, 30 Nov 2008 10:01:42
Message-Id: E1L6j7T-00088l-Cx@stork.gentoo.org
1 ssuominen 08/11/30 10:01:39
2
3 Modified: ChangeLog takcd-0.10.ebuild
4 Log:
5 Remove redudant src_compile. Use DESTDIR. Don't install README.SunOS.
6 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.27.7 i686)
7
8 Revision Changes Path
9 1.14 media-sound/takcd/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/takcd/ChangeLog?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/takcd/ChangeLog?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/takcd/ChangeLog?r1=1.13&r2=1.14
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- ChangeLog 25 Dec 2007 17:40:15 -0000 1.13
22 +++ ChangeLog 30 Nov 2008 10:01:39 -0000 1.14
23 @@ -1,6 +1,9 @@
24 # ChangeLog for media-sound/takcd
25 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v 1.13 2007/12/25 17:40:15 phreak Exp $
27 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/ChangeLog,v 1.14 2008/11/30 10:01:39 ssuominen Exp $
29 +
30 + 30 Nov 2008; <ssuominen@g.o> takcd-0.10.ebuild:
31 + Remove redudant src_compile. Use DESTDIR. Don't install README.SunOS.
32
33 25 Dec 2007; Christian Heim <phreak@g.o> metadata.xml:
34 Removing seemant from metadata.xml as per #202469.
35
36
37
38 1.13 media-sound/takcd/takcd-0.10.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild?rev=1.13&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild?rev=1.13&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild?r1=1.12&r2=1.13
43
44 Index: takcd-0.10.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v
47 retrieving revision 1.12
48 retrieving revision 1.13
49 diff -u -r1.12 -r1.13
50 --- takcd-0.10.ebuild 23 Jan 2007 00:27:06 -0000 1.12
51 +++ takcd-0.10.ebuild 30 Nov 2008 10:01:39 -0000 1.13
52 @@ -1,36 +1,28 @@
53 -# Copyright 1999-2007 Gentoo Foundation
54 +# Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v 1.12 2007/01/23 00:27:06 seemant Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-sound/takcd/takcd-0.10.ebuild,v 1.13 2008/11/30 10:01:39 ssuominen Exp $
58
59 WANT_AUTOMAKE="1.4"
60 WANT_AUTOCONF="2.5"
61
62 inherit autotools
63
64 -IUSE=""
65 -
66 DESCRIPTION="Command line CD player"
67 HOMEPAGE="http://bard.sytes.net/takcd/"
68 SRC_URI="http://bard.sytes.net/takcd/${P}.tar.gz"
69
70 -SLOT="0"
71 LICENSE="GPL-2"
72 +SLOT="0"
73 KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc sparc x86"
74 +IUSE=""
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79 -
80 eautoreconf
81 }
82
83 -src_compile() {
84 - econf || die
85 - emake || die
86 -}
87 -
88 src_install() {
89 - einstall || die
90 -
91 - dodoc AUTHORS ChangeLog NEWS README* TODO
92 + emake DESTDIR="${D}" install || die "emake install failed."
93 + dodoc AUTHORS ChangeLog NEWS README README.takmulti TODO
94 }