Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-misc/boinc: ChangeLog boinc-6.6.40-r1.ebuild boinc-6.6.40.ebuild
Date: Tue, 29 Sep 2009 17:45:02
Message-Id: E1Msgl2-00020Y-GD@stork.gentoo.org
1 scarabeus 09/09/29 17:45:00
2
3 Modified: ChangeLog boinc-6.6.40-r1.ebuild
4 Removed: boinc-6.6.40.ebuild
5 Log:
6 Add new as-needed patch per bug #286771. Also fix elog informations per bug #286905.
7 (Portage version: 2.2_rc41/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.73 sci-misc/boinc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 28 Sep 2009 19:28:40 -0000 1.72
23 +++ ChangeLog 29 Sep 2009 17:45:00 -0000 1.73
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-misc/boinc
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.72 2009/09/28 19:28:40 volkmar Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.73 2009/09/29 17:45:00 scarabeus Exp $
29 +
30 + 29 Sep 2009; Tomáš Chvátal <scarabeus@g.o>
31 + +files/6.6.40-as-needed.patch, -boinc-6.6.40.ebuild,
32 + boinc-6.6.40-r1.ebuild:
33 + Add new as-needed patch per bug #286771. Also fix elog informations per
34 + bug #286905.
35
36 *boinc-6.6.40-r1 (28 Sep 2009)
37
38
39
40
41 1.2 sci-misc/boinc/boinc-6.6.40-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/boinc-6.6.40-r1.ebuild?rev=1.2&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/boinc-6.6.40-r1.ebuild?rev=1.2&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/boinc-6.6.40-r1.ebuild?r1=1.1&r2=1.2
46
47 Index: boinc-6.6.40-r1.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.6.40-r1.ebuild,v
50 retrieving revision 1.1
51 retrieving revision 1.2
52 diff -u -r1.1 -r1.2
53 --- boinc-6.6.40-r1.ebuild 28 Sep 2009 19:28:40 -0000 1.1
54 +++ boinc-6.6.40-r1.ebuild 29 Sep 2009 17:45:00 -0000 1.2
55 @@ -1,6 +1,6 @@
56 # Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.6.40-r1.ebuild,v 1.1 2009/09/28 19:28:40 volkmar Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.6.40-r1.ebuild,v 1.2 2009/09/29 17:45:00 scarabeus Exp $
60
61 EAPI="2"
62
63 @@ -88,6 +88,7 @@
64 --disable-dependency-tracking \
65 --enable-unicode \
66 --with-ssl \
67 + --enable-optimize \
68 $(use_with X x) \
69 ${wxconf} \
70 ${conf}
71 @@ -124,8 +125,8 @@
72
73 pkg_postinst() {
74 echo
75 - elog "You are using the source compiled version."
76 - elog "The manager can be found at /usr/bin/${PN}_gui"
77 + elog "You are using the source compiled version of ${PN}."
78 + use X && elog "The graphical manager can be found at /usr/bin/${PN}mgr"
79 elog
80 elog "You need to attach to a project to do anything useful with ${PN}."
81 elog "You can do this by running /etc/init.d/${PN} attach"
82 @@ -133,13 +134,15 @@
83 elog "http://boinc.berkeley.edu/wiki/Anonymous_platform"
84 elog
85 # Add warning about the new password for the client, bug 121896.
86 - elog "If you need to use the graphical client the password is in:"
87 - elog "/var/lib/${PN}/gui_rpc_auth.cfg"
88 - elog "Where /var/lib/ is default RUNTIMEDIR, that can be changed in:"
89 - elog "/etc/conf.d/${PN}"
90 - elog "You should change this to something more memorable (can be even blank)."
91 - elog
92 - elog "Remember to launch init script before using manager. Or changing the password."
93 + if use X; then
94 + elog "If you need to use the graphical manager the password is in:"
95 + elog "/var/lib/${PN}/gui_rpc_auth.cfg"
96 + elog "Where /var/lib/ is default RUNTIMEDIR, that can be changed in:"
97 + elog "/etc/conf.d/${PN}"
98 + elog "You should change this password to something more memorable (can be even blank)."
99 + elog "Remember to launch init script before using manager. Or changing the password."
100 + elog
101 + fi
102 if use cuda; then
103 elog "To be able to use CUDA you should add boinc user to video group."
104 elog "To do so run as root:"