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/mpck: mpck-0.15.ebuild
Date: Sat, 20 Jun 2009 06:58:42
Message-Id: E1MHuXA-0007nO-56@stork.gentoo.org
1 ssuominen 09/06/20 06:58:40
2
3 Modified: mpck-0.15.ebuild
4 Log:
5 Remove unnecessary quoting, cosmetics for soon-to-be-stable version.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 media-sound/mpck/mpck-0.15.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpck/mpck-0.15.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpck/mpck-0.15.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpck/mpck-0.15.ebuild?r1=1.1&r2=1.2
14
15 Index: mpck-0.15.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/mpck/mpck-0.15.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- mpck-0.15.ebuild 4 Jan 2007 22:59:50 -0000 1.1
22 +++ mpck-0.15.ebuild 20 Jun 2009 06:58:40 -0000 1.2
23 @@ -1,20 +1,21 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpck/mpck-0.15.ebuild,v 1.1 2007/01/04 22:59:50 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpck/mpck-0.15.ebuild,v 1.2 2009/06/20 06:58:40 ssuominen Exp $
29
30 -MY_P="checkmate-${PV}"
31 -S=${WORKDIR}/${MY_P}
32 -IUSE=""
33 +MY_P=checkmate-${PV}
34
35 DESCRIPTION="Checks MP3s for errors"
36 HOMEPAGE="http://mpck.linuxonly.nl/"
37 SRC_URI="http://checkmate.linuxonly.nl/${MY_P}.tar.gz"
38
39 -SLOT="0"
40 LICENSE="GPL-2"
41 -KEYWORDS="~amd64 ~x86 ~ppc"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc ~x86"
44 +IUSE=""
45 +
46 +S=${WORKDIR}/${MY_P}
47
48 -src_install () {
49 - make install DESTDIR="${D}" || die "Install failed!"
50 +src_install() {
51 + emake DESTDIR="${D}" install || die "emake install failed"
52 dodoc ABOUT_FIXING AUTHORS ChangeLog HISTORY README
53 }