Mel wrote:
On Tuesday 15 April 2008 22:10:41 Chris Whitehouse wrote:
Do something like [sorry not exact syntax as I don't have access to a
freebsd machine]:
foreach i (`cat portlist`)
foreach? cd /usr/ports/$i && make config
You should 'make config-conditional' to save yourself some work. mak
On Tue, 15 Apr 2008 20:02:19 +0200
Mel <[EMAIL PROTECTED]> wrote:
> If you wanted to script the first case, you'd do the following in
> every origin that needs updating:
I have a similar script, that works globally, recursing down from each
out-of-date port through any missing origins.
If you
On Tuesday 15 April 2008 22:10:41 Chris Whitehouse wrote:
> Do something like [sorry not exact syntax as I don't have access to a
> freebsd machine]:
> foreach i (`cat portlist`)
> foreach? cd /usr/ports/$i && make config
You should 'make config-conditional' to save yourself some work. make confi
Mel wrote:
On Tuesday 15 April 2008 15:26:42 Edward Ruggeri wrote:
A lot of people would reply that they'd like to configure the ports
themselves before launching the installation, leading people to
suggest scripts such as:
#!/bin/sh
plist=`pkg_version -ovl'<' |awk '{ print $1 }'`
for porg in $
On Tuesday 15 April 2008 15:26:42 Edward Ruggeri wrote:
> A lot of people would reply that they'd like to configure the ports
> themselves before launching the installation, leading people to
> suggest scripts such as:
>
> #!/bin/sh
> plist=`pkg_version -ovl'<' |awk '{ print $1 }'`
> for porg in $p
A lot of people would reply that they'd like to configure the ports
themselves before launching the installation, leading people to
suggest scripts such as:
#!/bin/sh
plist=`pkg_version -ovl'<' |awk '{ print $1 }'`
for porg in $plist ; do
cd /usr/ports/${porg} && make config-recursive
done
B
Pollywog wrote:
I did 'portupgrade -aP' last night but this morning I found that one package
had some questions for me about how I want to compile the package (wants to
know which options I want). This meant that no packages were compiled since
the cups package asked questions.
Is there a
I did 'portupgrade -aP' last night but this morning I found that one package
had some questions for me about how I want to compile the package (wants to
know which options I want). This meant that no packages were compiled since
the cups package asked questions.
Is there a way to circumvent th