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-misc/fixdos: fixdos-1.3.1.ebuild
Date: Fri, 01 Jan 2010 18:05:51
Message-Id: E1NQlsh-0001m6-9j@stork.gentoo.org
1 ssuominen 10/01/01 18:05:47
2
3 Modified: fixdos-1.3.1.ebuild
4 Log:
5 quoting
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.20 app-misc/fixdos/fixdos-1.3.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild?rev=1.20&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild?rev=1.20&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild?r1=1.19&r2=1.20
14
15 Index: fixdos-1.3.1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild,v
18 retrieving revision 1.19
19 retrieving revision 1.20
20 diff -u -r1.19 -r1.20
21 --- fixdos-1.3.1.ebuild 23 Sep 2009 16:02:47 -0000 1.19
22 +++ fixdos-1.3.1.ebuild 1 Jan 2010 18:05:47 -0000 1.20
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2009 Gentoo Foundation
25 +# Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild,v 1.19 2009/09/23 16:02:47 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild,v 1.20 2010/01/01 18:05:47 ssuominen Exp $
29
30 inherit eutils toolchain-funcs
31
32 @@ -13,17 +13,12 @@
33 KEYWORDS="amd64 ppc ppc64 x86"
34 IUSE=""
35
36 -DEPEND=""
37 -
38 S=${WORKDIR}/fixDos-${PV}
39
40 src_unpack() {
41 unpack ${A}
42 -
43 - cd ${S}
44 - # Apply this patch to the makefile so that it builds with our
45 - # desired CFLAGS.
46 - epatch ${FILESDIR}/${P}-gentoo-makefile.diff
47 + cd "${S}"
48 + epatch "${FILESDIR}"/${P}-gentoo-makefile.diff
49 }
50
51 src_compile() {
52 @@ -32,5 +27,5 @@
53 }
54
55 src_install() {
56 - make INSTALLDIR=${D}/usr/bin install || die
57 + make INSTALLDIR="${D}/usr/bin" install || die
58 }