atom feed31 messages in org.freebsd.freebsd-archInstalling XFree86 package via sysins...
FromSent OnAttachments
Makoto MatsushitaJun 20, 2002 9:57 pm 
David O'BrienJun 21, 2002 1:44 pm 
Will AndrewsJun 21, 2002 3:31 pm 
Makoto MatsushitaJun 21, 2002 9:32 pm 
Dag-Erling SmorgravJun 22, 2002 2:35 am 
Will AndrewsJun 22, 2002 1:05 pm 
Alfred PerlsteinJun 22, 2002 1:42 pm 
Dag-Erling SmorgravJun 22, 2002 6:54 pm 
Doug BartonJun 22, 2002 7:12 pm 
M. Warner LoshJun 22, 2002 9:51 pm 
Dag-Erling SmorgravJun 23, 2002 6:05 am 
Dag-Erling SmorgravJun 23, 2002 6:08 am 
Makoto MatsushitaJun 23, 2002 8:26 am 
M. Warner LoshJun 23, 2002 8:54 am 
Dag-Erling SmorgravJun 23, 2002 9:13 am 
Doug BartonJun 23, 2002 12:24 pm 
David O'BrienJun 23, 2002 12:37 pm 
David O'BrienJun 23, 2002 12:40 pm 
Doug BartonJun 23, 2002 12:49 pm 
Dag-Erling SmorgravJun 23, 2002 12:51 pm 
Brooks DavisJun 23, 2002 12:55 pm 
Bruce EvansJun 23, 2002 12:57 pm 
Doug BartonJun 23, 2002 1:07 pm 
David O'BrienJun 23, 2002 1:59 pm 
Dag-Erling SmorgravJun 23, 2002 2:15 pm 
David O'BrienJun 23, 2002 2:20 pm 
Dag-Erling SmorgravJun 23, 2002 2:49 pm 
David O'BrienJun 23, 2002 3:09 pm 
M. Warner LoshJun 23, 2002 3:41 pm 
Terry LambertJun 23, 2002 5:15 pm 
Dag-Erling SmorgravJun 24, 2002 2:59 pm 
Subject:Installing XFree86 package via sysinstall: need X wrapper or not?
From:Makoto Matsushita (matu@jp.FreeBSD.org)
Date:Jun 20, 2002 9:57:44 pm
List:org.freebsd.freebsd-arch

I've heard that some users forget to install X wrapper while installing FreeBSD to a fresh PC. As a result, they can't run X server with startx. When our X distribution was XFree86 3.x, there was no problem with startx since X server has a suid bit -- for newbies, current sysinstall breaks some compatibilities.

We can fix this by RUN_DEPENDS lines of ports/x11/XFree86-4/Makefile. However, it makes another problem that "hey, XFree86-4 ports install X wrapper which I don't used, no thankyou."

IMHO this problem can be treated as "problem while installing XFree86 via sysinstall," here is a patch to teach sysinstall to install the X wrapper package after XFree86 package is installed.

Any comments and objections are welcome. If there is no objection, I'll commit it later (maybe next week or so).

-- - Makoto `MAR' Matsushita

Index: install.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/install.c,v retrieving revision 1.321 diff -u -r1.321 install.c --- install.c 2 Apr 2002 20:42:52 -0000 1.321 +++ install.c 21 Jun 2002 04:56:18 -0000 @@ -880,6 +880,9 @@ dialog_clear_norefresh(); msgNotify("Installing XFree86 package..."); i = package_add("XFree86-4"); + if (DITEM_STATUS(i) == DITEM_SUCCESS) { + i |= package_add("wrapper"); + } restorescr(w); return i; }

To Unsubscribe: send mail to majo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message