Gentoo Archives: gentoo-doc-cvs

From: "Sven Vermeulen (swift)" <swift@g.o>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] gentoo commit in xml/htdocs/doc/en/handbook: hb-working-portage.xml
Date: Thu, 01 Aug 2013 19:12:58
Message-Id: 20130801191251.689532171C@flycatcher.gentoo.org
1 swift 13/08/01 19:12:51
2
3 Modified: hb-working-portage.xml
4 Log:
5 Fix bug #479386 - Update ACCEPT_LICENSE example, thanks to Ulrich Muller for the feedback and suggestions
6
7 Revision Changes Path
8 1.82 xml/htdocs/doc/en/handbook/hb-working-portage.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml?rev=1.82&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml?rev=1.82&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml?r1=1.81&r2=1.82
13
14 Index: hb-working-portage.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml,v
17 retrieving revision 1.81
18 retrieving revision 1.82
19 diff -u -r1.81 -r1.82
20 --- hb-working-portage.xml 15 Aug 2012 07:20:36 -0000 1.81
21 +++ hb-working-portage.xml 1 Aug 2013 19:12:51 -0000 1.82
22 @@ -4,7 +4,7 @@
23 <!-- The content of this document is licensed under the CC-BY-SA license -->
24 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
25
26 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml,v 1.81 2012/08/15 07:20:36 swift Exp $ -->
27 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-working-portage.xml,v 1.82 2013/08/01 19:12:51 swift Exp $ -->
28
29 <sections>
30
31 @@ -13,8 +13,8 @@
32 maintain the software on his system.
33 </abstract>
34
35 -<version>7</version>
36 -<date>2012-08-15</date>
37 +<version>8</version>
38 +<date>2013-08-01</date>
39
40 <section>
41 <title>Welcome to Portage</title>
42 @@ -410,17 +410,18 @@
43
44 <p>
45 The variable that controls permitted licenses is <c>ACCEPT_LICENSE</c>, which
46 -can be set in <path>/etc/portage/make.conf</path>:
47 +can be set in <path>/etc/portage/make.conf</path>. In the next example, this
48 +default value is shown:
49 </p>
50
51 -<pre caption="Default ACCEPT_LICENSE in /etc/portage/make.conf">
52 +<pre caption="Setting ACCEPT_LICENSE in /etc/portage/make.conf">
53 ACCEPT_LICENSE="* -@EULA"
54 </pre>
55
56 <p>
57 With this configuration, packages that require interaction during installation
58 -to approve their EULA <e>will not</e> be installed. Packages without an EULA
59 -<e>will</e> be installed.
60 +to approve their EULA <e>will not</e> be installable. Packages without an EULA
61 +<e>will</e> be installable.
62 </p>
63
64 <p>
65 @@ -454,28 +455,19 @@
66
67 <p>
68 License groups defined in <c>ACCEPT_LICENSE</c> are prefixed with an <b>@</b>
69 -sign. Here's an example of a system that globally permits the GPL-compatible
70 -license group, as well as a few other groups and individual licenses:
71 +sign. Here's an example of a system that globally permits the free software (and
72 +documentation) license group, as well as a few other individual licenses:
73 </p>
74
75 <pre caption="ACCEPT_LICENSE in /etc/portage/make.conf">
76 -ACCEPT_LICENSE="@GPL-COMPATIBLE @OSI-APPROVED @EULA atheros-hal BitstreamVera"
77 -</pre>
78 -
79 -<p>
80 -If you want only free software and documentation on your system, you might use
81 -the following setup:
82 -</p>
83 -
84 -<pre caption="Use only free licenses">
85 -ACCEPT_LICENSE="-* @FREE"
86 +ACCEPT_LICENSE="-* @FREE atheros-hal BitstreamVera"
87 </pre>
88
89 <p>
90 In this case, "free" is mostly defined by the <uri
91 link="http://www.gnu.org/philosophy/free-sw.html">FSF</uri> and <uri
92 link="http://www.opensource.org/docs/osd">OSI</uri>. Any package whose license
93 -does not meet these requirements will not be installed on your system.
94 +does not meet these requirements will not be installable on your system.
95 </p>
96
97 </body>