Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/ee/files: ee-init-location.diff
Date: Sat, 07 May 2011 16:37:21
Message-Id: 20110507163712.9352B20054@flycatcher.gentoo.org
1 hattya 11/05/07 16:37:12
2
3 Added: ee-init-location.diff
4 Log:
5 new upstream release. fixes bug #332729.
6
7 (Portage version: 2.1.9.42/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 app-editors/ee/files/ee-init-location.diff
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ee/files/ee-init-location.diff?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ee/files/ee-init-location.diff?rev=1.1&content-type=text/plain
14
15 Index: ee-init-location.diff
16 ===================================================================
17 diff -ur easyedit-1.5.2.orig/ee.1 easyedit-1.5.2/ee.1
18 --- easyedit-1.5.2.orig/ee.1
19 +++ easyedit-1.5.2/ee.1
20 @@ -406,7 +406,7 @@
21 .PP
22 Since different users have different preferences, \fIee\fR allows some
23 slight configurability. There are three possible locations for an
24 -initialization file for ee: the file \fI/usr/local/lib/init.ee\fR, the
25 +initialization file for ee: the file \fI/usr/share/ee/init.ee\fR, the
26 file \fI.init.ee\fR in the user's home directory, or the file \fI.init.ee\fR
27 in the current directory (if different from the home
28 directory). This allows system administrators to set some preferences for
29 @@ -414,7 +414,7 @@
30 and the user to customize settings for particular directories (like one
31 for correspondence, and a different directory for programming).
32 .PP
33 -The file \fI\/usr/local/lib/init.ee\fR is read first, then
34 +The file \fI\/usr/share/ee/init.ee\fR is read first, then
35 \fI$HOME/.init.ee\fR, then \fI.init.ee\fR, with the settings specified by the
36 most recent file read taking precedence.
37 .PP
38 @@ -521,7 +521,7 @@
39 may be too slow for slower systems.
40 .SH FILES
41 .PP
42 -.I /usr/local/lib/init.ee
43 +.I /usr/share/ee/init.ee
44 .br
45 .I $HOME/.init.ee
46 .br
47 diff -ur easyedit-1.5.2.orig/ee.c easyedit-1.5.2/ee.c
48 --- easyedit-1.5.2.orig/ee.c
49 +++ easyedit-1.5.2/ee.c
50 @@ -4124,7 +4124,7 @@
51 }
52
53 unsigned char *init_name[3] = {
54 - "/usr/local/lib/init.ee",
55 + "/usr/share/ee/init.ee",
56 NULL,
57 ".init.ee"
58 };