Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-wireless/wimax/files: wimax
Date: Mon, 26 Jul 2010 22:13:29
Message-Id: 20100726221327.9A85A2CE15@corvid.gentoo.org
1 alexxy 10/07/26 22:13:27
2
3 Modified: wimax
4 Log:
5 [net-wireless/wimax] Make wimax always builds as 32bit app since it doesnt suport 64bit mode. Also it fixes bug #329935
6
7 (Portage version: 2.2_rc67_p258/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 net-wireless/wimax/files/wimax
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-wireless/wimax/files/wimax?r1=1.1&r2=1.2
15
16 Index: wimax
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- wimax 25 Jul 2010 14:18:17 -0000 1.1
23 +++ wimax 26 Jul 2010 22:13:27 -0000 1.2
24 @@ -1,7 +1,7 @@
25 #!/sbin/runscript
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-wireless/wimax/files/wimax,v 1.1 2010/07/25 14:18:17 alexxy Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/files/wimax,v 1.2 2010/07/26 22:13:27 alexxy Exp $
30
31 description="WiMAX Network Service"
32
33 @@ -13,7 +13,7 @@
34 start() {
35 ebegin "Starting WiMAX Network Service"
36 [ -e /var/run/wimaxd.pid ] && rm -f /var/run/wimaxd.pid
37 - start-stop-daemon --start --quiet --pidfile /var/run/wimax.pid --exec /usr/bin/wimaxd
38 + start-stop-daemon --start --quiet --pidfile /var/run/wimax.pid --exec /usr/bin/wimaxd -b
39 eend $?
40 }