Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Mar 2007 20:15:20 -0400
From:      Parv <parv@pair.com>
To:        Alexander Schlichting <alex@cshw.net>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: Recover Make ARG's from a ports Install
Message-ID:  <20070313001520.GA7158@holestein.holy.cow>
In-Reply-To: <042d01c76476$b226bc30$16743490$@net>
References:  <042d01c76476$b226bc30$16743490$@net>

next in thread | previous in thread | raw e-mail | index | archive | help
in message <042d01c76476$b226bc30$16743490$@net>,
wrote Alexander Schlichting thusly...
>
> On a server I have a package installed using ports and now I have
> to install the package with exactly the same make arguments on
> another server. I just don't find a way to see what arguments
> where used to install it the first time. With Linux I would look
> into config.status is there something similar with FreeBSD?

There may be config.status present in $WRKSRC directory (in a port
directory, run "make -V WRKSRC" to find the value) if that port's
make process generates such a file AND you have not run "make clean"
yet.  (That also means you have to compile the port yourself.)

To save make arguments for future use, you could write a wrapper
which would save the arguments in a file|database before running
appropriate make target.  Use the same wrapper to retrieve the
stored arguments.

Below is my attempt at such a wrapper (feel free to change) ...

  http://www103.pair.com/parv/comp/src/sh/pmk


... to see available commands just run "pmk" without any arguments.
Provide arguments to a make target as ...

  pmk <command> [ arg_1 arg_2 arg_3 ... ]


  - Parv

-- 




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20070313001520.GA7158>