From owner-freebsd-questions@FreeBSD.ORG Tue Apr 15 17:34:37 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACF9A1065672 for ; Tue, 15 Apr 2008 17:34:37 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from snoogles.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 7DF698FC19 for ; Tue, 15 Apr 2008 17:34:37 +0000 (UTC) (envelope-from fbsd.questions@rachie.is-a-geek.net) Received: from localhost (localhost [127.0.0.1]) by snoogles.rachie.is-a-geek.net (Postfix) with ESMTP id AE84B1CC91; Tue, 15 Apr 2008 09:34:36 -0800 (AKDT) From: Mel To: freebsd-questions@freebsd.org Date: Tue, 15 Apr 2008 19:34:35 +0200 User-Agent: KMail/1.9.7 References: <6a5b467e0804150907u20d1163fo27c067c025d8b08c@mail.gmail.com> In-Reply-To: <6a5b467e0804150907u20d1163fo27c067c025d8b08c@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200804151934.36301.fbsd.questions@rachie.is-a-geek.net> Cc: Ashant Chalasani Subject: Re: Install port without man page X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2008 17:34:37 -0000 On Tuesday 15 April 2008 18:07:42 Ashant Chalasani wrote: > Is there a way to install a port without the man-pages. I'm trying to > install a dhcp server onto a Tinybsd image and end up buying myself a > bunch of files in /man, as seen at > http://code.google.com/p/tinybsdap/wiki/InstallingPorts (hope the > linking is not minded). If the port controls installing the manpages, then you can set NO_INSTALL_MANPAGES in /etc/make.conf. If they're installed by the underlying software's install script, then you can't control that from the port. You can of course, nullfs mount the ${LOCALBASE}/man directory on the image build machine to a different location and then unmount it from under the image once all ports are installed. Linking to /dev/null as suggested will likely screw with install targets. -- Mel Problem with today's modular software: they start with the modules and never get to the software part.