Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/dcetest: dcetest-2.0.ebuild
Date: Thu, 28 Oct 2010 09:59:14
Message-Id: 20101028095911.1ADF72004B@flycatcher.gentoo.org
1 ssuominen 10/10/28 09:59:11
2
3 Modified: dcetest-2.0.ebuild
4 Log:
5 fix quoting
6
7 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 net-misc/dcetest/dcetest-2.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dcetest/dcetest-2.0.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dcetest/dcetest-2.0.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dcetest/dcetest-2.0.ebuild?r1=1.6&r2=1.7
15
16 Index: dcetest-2.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/dcetest/dcetest-2.0.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- dcetest-2.0.ebuild 23 Sep 2009 19:35:26 -0000 1.6
23 +++ dcetest-2.0.ebuild 28 Oct 2010 09:59:11 -0000 1.7
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/dcetest/dcetest-2.0.ebuild,v 1.6 2009/09/23 19:35:26 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dcetest/dcetest-2.0.ebuild,v 1.7 2010/10/28 09:59:11 ssuominen Exp $
30
31 DESCRIPTION="dcetest is a clone of the Windows rpcinfo"
32 HOMEPAGE="http://www.atstake.com/research/tools/info_gathering/"
33 @@ -15,7 +15,7 @@
34
35 src_unpack() {
36 unpack ${A}
37 - cd ${S}
38 + cd "${S}"
39 # cleanup the makefile a little
40 sed -e '/^CC/d' -i Makefile
41 sed -e 's/CFLAGS.*/CFLAGS += -Wall -funsigned-char -fPIC/g' -i Makefile
42 @@ -26,6 +26,6 @@
43 }
44
45 src_install() {
46 - dobin dcetest
47 + dobin dcetest || die
48 dodoc CHANGELOG README VERSION nt4sp6adefault.txt out out.txt out2.txt w2ksp0.txt
49 }