diff options
author | joerg <joerg> | 2009-05-09 14:59:08 +0000 |
---|---|---|
committer | joerg <joerg> | 2009-05-09 14:59:08 +0000 |
commit | 04f8316651c99b6d5e8fac49ed227f1f8ac7398f (patch) | |
tree | 8e5d9e2f6429934f4c78445c3e4a4b2db4e1e7ef /doc | |
parent | 0a639ab1df436f2be56acda1698d463c099ff843 (diff) | |
download | pkgsrc-04f8316651c99b6d5e8fac49ed227f1f8ac7398f.tar.gz |
Make USE_DESTDIR=full the default value and retire the option.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/HOWTO-crosscompile-xorg | 4 | ||||
-rw-r--r-- | doc/guide/files/configuring.xml | 18 |
2 files changed, 9 insertions, 13 deletions
diff --git a/doc/HOWTO-crosscompile-xorg b/doc/HOWTO-crosscompile-xorg index b615ee231fc..9400dd52ed4 100644 --- a/doc/HOWTO-crosscompile-xorg +++ b/doc/HOWTO-crosscompile-xorg @@ -1,4 +1,4 @@ -$NetBSD: HOWTO-crosscompile-xorg,v 1.4 2008/04/25 11:46:07 ghen Exp $ +$NetBSD: HOWTO-crosscompile-xorg,v 1.5 2009/05/09 14:59:09 joerg Exp $ How to cross-compile modular Xorg on NetBSD ------------------------------------------- @@ -11,7 +11,7 @@ cross-compiled packages). where you wrote the tools to and where the destdir is. (c) You have to add the following options to your mk.conf: -USE_DESTDIR= full +USE_DESTDIR= yes DEPENDS_TARGET= package-install X11_TYPE = modular diff --git a/doc/guide/files/configuring.xml b/doc/guide/files/configuring.xml index 08e31fbb9a7..1dff6c28efc 100644 --- a/doc/guide/files/configuring.xml +++ b/doc/guide/files/configuring.xml @@ -1,4 +1,4 @@ -<!-- $NetBSD: configuring.xml,v 1.34 2009/04/03 01:52:24 snj Exp $ --> +<!-- $NetBSD: configuring.xml,v 1.35 2009/05/09 14:59:09 joerg Exp $ --> <chapter id="configuring"> <title>Configuring pkgsrc</title> @@ -146,13 +146,9 @@ works.</para> installation and packaging as normal user. Root privileges are only needed to add packages.</para></listitem> </itemizedlist> - <para>To use the DESTDIR support, set either - <varname>USE_DESTDIR=yes</varname> to use the basic support for - packages that offer it or <varname>USE_DESTDIR=full</varname> to - get the full support with fallback to basic - support. <varname>USE_DESTDIR=full</varname> needs <filename - role="pkg">pkgtools/pkg_install</filename> version 20070802 (or - newer). It might become the default DESTDIR support later.</para> + <para>To use the DESTDIR support, set + <varname>USE_DESTDIR=yes</varname> to get the full support for packages + that support it and with fallback to basic support. </para> <para>DESTDIR support changes the behaviour of various targets slightly. To install a package after building it, use <literal>package-install</literal>. <literal>package</literal> and @@ -178,20 +174,20 @@ uid=1000(myusername) gid=100(users) groups=100(users),0(wheel) should be needed <programlisting> -&uprompt; make USE_DESTDIR=full install +&uprompt; make USE_DESTDIR=yes install </programlisting> Create a package without root privileges <programlisting> -&uprompt; make USE_DESTDIR=full PACKAGES=$HOME/packages package +&uprompt; make USE_DESTDIR=yes PACKAGES=$HOME/packages package </programlisting> For the following command, you must be able to gain root privileges using &man.su.1; <programlisting> -&uprompt; make USE_DESTDIR=full PACKAGES=$HOME/packages package-install +&uprompt; make USE_DESTDIR=yes PACKAGES=$HOME/packages package-install </programlisting> Then, as a simple user |