blob: f42699c145241b62e9e3b451d13af4618a7f37d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
cd /usr/ports/sysutils/portupgrade
make install
pkgdb -u
portinstall -PR cvsup-without-gui
cp /usr/share/examples/cvsup/ports-supfile /root
perl -pi -e 's/CHANGE_THIS/cvsup1/;' /root/ports-supfile
cvsup /root/ports-supfile
for port in `grep -v '^ *#' ports`; do
#cd /usr/ports/$port
#make install || exit
portinstall -P -R $port || exit
done
perl -MCPAN -e"install Net::SSH DBIx::DBSchema HTML::Widgets::SelectLayers Time::Duration Business::CreditCard"
|