Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pcmciautils: pcmciautils-014-r1.ebuild
Date: Thu, 01 Nov 2012 08:13:00
Message-Id: 20121101081243.7EF0421600@flycatcher.gentoo.org
1 ssuominen 12/11/01 08:12:43
2
3 Modified: pcmciautils-014-r1.ebuild
4 Log:
5 Add quotes over S var
6
7 (Portage version: 2.2.0_alpha135/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 sys-apps/pcmciautils/pcmciautils-014-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-014-r1.ebuild?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-014-r1.ebuild?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pcmciautils/pcmciautils-014-r1.ebuild?r1=1.10&r2=1.11
15
16 Index: pcmciautils-014-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-014-r1.ebuild,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- pcmciautils-014-r1.ebuild 25 Feb 2012 06:43:55 -0000 1.10
23 +++ pcmciautils-014-r1.ebuild 1 Nov 2012 08:12:43 -0000 1.11
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-014-r1.ebuild,v 1.10 2012/02/25 06:43:55 robbat2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcmciautils/pcmciautils-014-r1.ebuild,v 1.11 2012/11/01 08:12:43 ssuominen Exp $
29
30 inherit eutils toolchain-funcs linux-info
31
32 @@ -43,22 +43,22 @@
33 -e "s:^\(KERNEL_DIR\) = .*:\1 = ${KV_DIR}:" \
34 -e "s:^\(V\) = false:\1 = true:" \
35 -e "s:^\(CFLAGS \:=.*\):\1 ${CFLAGS}:" \
36 - ${S}/Makefile || die
37 + "${S}"/Makefile || die
38
39 if use debug; then
40 - sed -i -e "s:^\(DEBUG\) = .*:\1 = true:" ${S}/Makefile || die
41 + sed -i -e "s:^\(DEBUG\) = .*:\1 = true:" "${S}"/Makefile || die
42 fi
43
44 if use static; then
45 - sed -i -e "s:^\(STATIC\) = .*:\1 = true:" ${S}/Makefile || die
46 + sed -i -e "s:^\(STATIC\) = .*:\1 = true:" "${S}"/Makefile || die
47 fi
48
49 if use staticsocket; then
50 - sed -i -e "s:^\(STARTUP\) = .*:\1 = false:" ${S}/Makefile || die
51 + sed -i -e "s:^\(STARTUP\) = .*:\1 = false:" "${S}"/Makefile || die
52 fi
53
54 # we always use udev
55 - sed -i -e "s:^\(UDEV\) = .*:\1 = true:" ${S}/Makefile || die
56 + sed -i -e "s:^\(UDEV\) = .*:\1 = true:" "${S}"/Makefile || die
57 }
58
59 src_compile() {