Reading the ports(7) manpage, I am having difficulties to find out how I can do an unattended scripted install.
For example, when I do
What I expected, however, was make just extracting the archived files, like with any packer.
Nothing more. In particular, no passing through the subsequent steps.
Side note, what worried me somewhat also was that I didn't see the screen notices I expected to see from the 'patch' step. I don't know whether it is intended behavior If the 'patch' step apparently gets skipped if one does a
Anyway, what I need is to find how I can do a completely non-interactive scripted install of Apache, about this way:
I also failed to find out where the build configuration I entered in the dialog I got after
Thank you for any assistance
For example, when I do
make extract
, I get a build options dialog(1), and after exiting the dialog, the port was apparently built.What I expected, however, was make just extracting the archived files, like with any packer.
Nothing more. In particular, no passing through the subsequent steps.
Side note, what worried me somewhat also was that I didn't see the screen notices I expected to see from the 'patch' step. I don't know whether it is intended behavior If the 'patch' step apparently gets skipped if one does a
make fetch; make extract; make install
sequence?!?Anyway, what I need is to find how I can do a completely non-interactive scripted install of Apache, about this way:
make fetch
make extract [without interactive dialog]
make patch
<some source file editing, either via perl or sed>
<edit the make configuration (change from '-suexec' to '+suexec' or the like) via script>
make build
make install
I also failed to find out where the build configuration I entered in the dialog I got after
make extract
is stored. Thank you for any assistance