diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-01 10:02:36 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2007-04-01 10:02:36 +0000 |
commit | b4f8135868eeabf6ff5a58d91ab3149459a521a1 (patch) | |
tree | c6a1c19280680276834ff5fde9b71aa027d14e10 | |
parent | 171de86c8603a10d2e28d60eaedb900397f48697 (diff) |
XENOCARA_TOP and XENOCARA_OBJDIR were renamed XSRCDIR and XOBJDIR
respectiveley. with tweaks from jmc@, ok krw@ todd@
-rw-r--r-- | share/man/man8/release.8 | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/share/man/man8/release.8 b/share/man/man8/release.8 index 98019aba06a..34525231bc4 100644 --- a/share/man/man8/release.8 +++ b/share/man/man8/release.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: release.8,v 1.46 2007/03/26 12:10:49 matthieu Exp $ +.\" $OpenBSD: release.8,v 1.47 2007/04/01 10:02:35 matthieu Exp $ .\" .\" Copyright (c) 2000 Marco S. Hyman .\" @@ -95,12 +95,12 @@ To update your sources to the versions identified by one of the above tags use the commands: .Bd -literal -offset indent $ cd /usr/src && cvs up -r TAG -Pd -$ cd XENOCARA_TOP && cvs up -r TAG -Pd +$ cd XSRCDIR && cvs up -r TAG -Pd $ cd PORTSPATH && cvs up -r TAG -Pd .Ed .Pp Replace -.Va XENOCARA_TOP +.Va XSRCDIR with the path to your X Window System sources. Replace .Va PORTSPATH @@ -296,11 +296,18 @@ The only thing missing is the X Window System .Ss 5. Build and install xenocara .Va Xenocara is based on the X.Org modular build system. +Xenocara sources are supposed to be in +.Va XSRCDIR +which defaults to +.Pa /usr/src/xenocara . +This variable should be set in +.Xr mk.conf 5 +if a non-default value is used. The following steps will build and install everything for the first time. .Bd -literal -offset indent $ su -# mkdir -p /usr/obj/xenocara -# cd XENOCARA_TOP +# mkdir -p /usr/xobj +# cd XSRCDIR # make bootstrap # make obj # make build @@ -334,7 +341,7 @@ will be removed as part of the xenocara build (this is necessary for release checklist processing). .Pp The steps to build the release are (assuming you are still root, and still in -.Va XENOCARA_TOP ) : +.Va XSRCDIR ) : .Bd -literal -offset indent # export DESTDIR=your-destdir; export RELEASEDIR=your-releasedir # test -d ${DESTDIR} && mv ${DESTDIR} ${DESTDIR}- && \e |