Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Jun 2009 01:15:47 +0300
From:      Giorgos Keramidas <keramida@freebsd.org>
To:        Alexander Best <alexbestms@math.uni-muenster.de>
Cc:        freebsd-current@freebsd.org
Subject:   Re: WITHOUT_GAMES=true and /usr/games
Message-ID:  <87r5xepn58.fsf@kobe.laptop>
In-Reply-To: <permail-20090616133442f0889e840000195c-a_best01@message-id.uni-muenster.de> (Alexander Best's message of "Tue, 16 Jun 2009 15:34:42 %2B0200 (CEST)")
References:  <permail-20090616133442f0889e840000195c-a_best01@message-id.uni-muenster.de>

next in thread | previous in thread | raw e-mail | index | archive | help
--=-=-=

On Tue, 16 Jun 2009 15:34:42 +0200 (CEST), Alexander Best <alexbestms@math.uni-muenster.de> wrote:
> hi there,
>
> any reason installworld creates the games dir in /usr even though
> /etc/src.conf states WITHOUT_GAMES=true. if nothing get's installed into the
> dir buildworld might just as well not create it. or am i wrong?

I have a local patch for a few months, that splits /var/games and
/usr/games in their own mtree spec file.  If it looks ok, I can always
ask for commit approval and push it to svn:

%%%
# HG changeset patch
# User Giorgos Keramidas <keramida@ceid.upatras.gr>
# Date 1219869421 -10800
# Branch head
# Node ID 017ed6c13a5438d2bd077c0930591aa7d88f0649
# Parent  5255edc94f3b20de0b976ff13d1c65b0d6b799ed
Fix `make installworld' with WITHOUT_GAMES=yes.

* Split off the parts of BSD.usr.dist and BSD.var.dist that
  depend on the 'games' user and group to BSD.games.dist.
* Update etc/Makefile to use BSD.games.dist, but hide the
  relevant parts behind .if ${MK_GAMES} != "no".

This way when installworld runs and WITHOUT_GAMES=yes, we don't
even try to create the directories that belong to the games:games
user.  The rest of the source tree is already set up to avoid
installing anything in those directories, and installworld runs
to completion without any visible issues.

Inspired by:	A thread in freebsd-questions, started by
		Redd Vinylene [reddvinylene at gmail.com]

diff -r 5255edc94f3b -r 017ed6c13a54 etc/Makefile
--- a/etc/Makefile	Thu Aug 14 15:55:01 2008 +0300
+++ b/etc/Makefile	Wed Aug 27 23:37:01 2008 +0300
@@ -100,6 +100,9 @@
 .if ${MK_SENDMAIL} != "no"
 MTREE+=	BSD.sendmail.dist
 .endif
+.if ${MK_GAMES} != "no"
+MTREE+= BSD.games.dist
+.endif
 .if ${MK_BIND} != "no"
 MTREE+=	BIND.chroot.dist
 .if ${MK_BIND_LIBS} != "no"
@@ -260,6 +263,9 @@
 .if ${MK_SENDMAIL} != "no"
 	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
 .endif
+.if ${MK_GAMES} != "no"
+	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.games.dist -p ${DESTDIR}/
+.endif
 	cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
 	cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
 	cd ${DESTDIR}/usr/share/man/en.UTF-8; ln -sf ../man* .
diff -r 5255edc94f3b -r 017ed6c13a54 etc/mtree/BSD.games.dist
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/etc/mtree/BSD.games.dist	Wed Aug 27 23:37:01 2008 +0300
@@ -0,0 +1,16 @@
+# $FreeBSD$
+#
+# Please see the file src/etc/mtree/README before making changes to this file.
+#
+
+/set type=dir uname=root gname=wheel mode=0755
+.
+    usr
+        games
+        ..
+    ..
+    var
+        games           gname=games mode=0775
+        ..
+    ..
+..
diff -r 5255edc94f3b -r 017ed6c13a54 etc/mtree/BSD.usr.dist
--- a/etc/mtree/BSD.usr.dist	Thu Aug 14 15:55:01 2008 +0300
+++ b/etc/mtree/BSD.usr.dist	Wed Aug 27 23:37:01 2008 +0300
@@ -7,8 +7,6 @@
 .
     bin
     ..
-    games
-    ..
     include
     ..
     lib
diff -r 5255edc94f3b -r 017ed6c13a54 etc/mtree/BSD.var.dist
--- a/etc/mtree/BSD.var.dist	Thu Aug 14 15:55:01 2008 +0300
+++ b/etc/mtree/BSD.var.dist	Wed Aug 27 23:37:01 2008 +0300
@@ -45,8 +45,6 @@
     ..
     empty           mode=0555 flags=schg
     ..
-    games           gname=games mode=0775
-    ..
     heimdal         mode=0700
     ..
     log
%%%

--=-=-=
Content-Type: application/pgp-signature

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.11 (FreeBSD)

iEYEARECAAYFAko9X5kACgkQ1g+UGjGGA7bgRQCeICi1pvB0L5aBv6d1w0VGYmdA
0mEAn0kjM1TnP/M/OQ4HsvIgWoEb+3SP
=t4VX
-----END PGP SIGNATURE-----
--=-=-=--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?87r5xepn58.fsf>