From owner-freebsd-doc@FreeBSD.ORG Wed Apr 14 18:50:02 2010 Return-Path: Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1C2E1065677 for ; Wed, 14 Apr 2010 18:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 77BE08FC1A for ; Wed, 14 Apr 2010 18:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o3EIo2rW089666 for ; Wed, 14 Apr 2010 18:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o3EIo2W5089665; Wed, 14 Apr 2010 18:50:02 GMT (envelope-from gnats) Date: Wed, 14 Apr 2010 18:50:02 GMT Message-Id: <201004141850.o3EIo2W5089665@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Armin Pirkovitsch Cc: Subject: Re: docs/145655: Add an example to /usr/share/examples/etc/make.conf X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Armin Pirkovitsch List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2010 18:50:02 -0000 The following reply was made to PR docs/145655; it has been noted by GNATS. From: Armin Pirkovitsch To: Doug Barton Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: docs/145655: Add an example to /usr/share/examples/etc/make.conf Date: Wed, 14 Apr 2010 20:44:13 +0200 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline My suggestion would be the attached patch. However I'm not really the person who writes great and/or understandable documentations. Armin --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-examples-etc-make.txt" --- make.conf.orig 2010-04-14 17:05:26.000000000 +0200 +++ make.conf 2010-04-14 20:39:58.000000000 +0200 @@ -269,3 +269,18 @@ # /etc/mail/Makefile. Defaults to 0640. # #SENDMAIL_MAP_PERMS= +# +# +# It is also possible to set variables in make.conf which will only be +# used when compiling e.g. a specific port. +# For more details have a look at make(1). +# +# Example: +# +#.if ${.CURDIR:M*/irc/irssi-devel*} +#WITH_DEBUG=YES +#.endif +# +# Another approach to do this is by using the port ports-mgmt/portconf +# which uses its own config file for port specific options. +# --IJpNTDwzlM2Ie8A6--