From owner-freebsd-questions@FreeBSD.ORG Mon Apr 21 18:50:31 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D080438; Mon, 21 Apr 2014 18:50:31 +0000 (UTC) Received: from relay.mailchannels.net (si-002-i151.relay.mailchannels.net [108.178.49.163]) by mx1.freebsd.org (Postfix) with ESMTP id 4553B194C; Mon, 21 Apr 2014 18:50:29 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (ip-10-227-128-69.us-west-2.compute.internal [10.227.128.69]) by relay.mailchannels.net (Postfix) with ESMTPA id 49524602C6; Mon, 21 Apr 2014 18:50:22 +0000 (UTC) X-Sender-Id: _forwarded-from|107.201.34.133 Received: from mail-24.name-services.com (mail-24.name-services.com [10.248.1.153]) (using TLSv1 with cipher AES128-SHA) by 0.0.0.0:2500 (trex/5.0.19); Mon, 21 Apr 2014 18:50:22 GMT X-MC-Relay: Forwarding X-MailChannels-SenderId: _forwarded-from%7C107.201.34.133 X-MailChannels-Auth-Id: demandmedia Received: from [192.168.1.64] (107-201-34-133.lightspeed.bcvloh.sbcglobal.net [107.201.34.133]) by mail-24.name-services.com with SMTP; Mon, 21 Apr 2014 11:50:14 -0700 Message-ID: <53556867.5030009@a1poweruser.com> Date: Mon, 21 Apr 2014 14:50:15 -0400 From: Fbsd8 User-Agent: Thunderbird 2.0.0.17 (Windows/20080914) MIME-Version: 1.0 To: Matthew Pherigo Subject: Re: phpmyadmin name in pkgng References: <5353E924.8070409@a1poweruser.com> <5353EA05.9010200@FreeBSD.org> <535526B6.1080706@a1poweruser.com> <53552FCE.6090801@FreeBSD.org> <535559D7.9010408@a1poweruser.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Matthew Seaman , "freebsd-questions@freebsd.org" X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2014 18:50:31 -0000 Matthew Pherigo wrote: > > --Matt > >> On Apr 21, 2014, at 12:48 PM, Fbsd8 wrote: >> >> If phpmyadmin was a pkgng I wouldn't mind installing all those default supported functions that I never use. But since I am using the port method I want to un-select all those default options from the command line. What are the new [make -D] options to un-select then in mass? > > Change directory to the port, and run 'make config'. This brings up an interactive dialogue for you to configure the build options for the port. Then run make install to install the package with the custom options you just selected. > > However, I'd certainly recommend doing this all through portmaster. > pkg install portmaster > portmaster www/phpmyadmin > > When you run portmaster, it should bring up the configuration dialog that you would get through make config default. However, if this is not the case, call it with > portmaster --force-config www/phpmyadmin > >> What are the required dependences necessary to get basic phpmyadmin to run? >> >> Is there some [make] command option to change the location {directory path} where the phpmyadmin php code gets installed. >> Some location different than the default /usr/local/www/phpmyadmin > > > Thank you Matthew Pherigo for your reply. Besides the [make config] method there is a way to over ride what the config file contains by coding "with=" and/or "without=" on the [make install] command line, that way no human intervention is necessary. My question deals with [what are the operands the go with the "with=" and/or "without=" make command syntax for the options shown by the [make config] command for phpmyadmin. About portmaster, My over goal is to keep the port compile time to a minimum. To that end I do [pkg install xxx] for all the dependents of the desired port. Then I code the desired config options on the [make install] command so no human intervention is required and only the desired port is compiled. Now are you saying I can have portmaster compile the desired port and automatically use packages for all the ports dependents?