diff options
Diffstat (limited to 'install/freebsd')
-rwxr-xr-x | install/freebsd/INSTALL | 76 | ||||
-rw-r--r-- | install/freebsd/ports | 56 |
2 files changed, 132 insertions, 0 deletions
diff --git a/install/freebsd/INSTALL b/install/freebsd/INSTALL new file mode 100755 index 000000000..e8c92b02d --- /dev/null +++ b/install/freebsd/INSTALL @@ -0,0 +1,76 @@ +#!/bin/sh + +# if /usr/local/sbin/portupgrade does not exist +# then install portupgrade +( cd /usr/ports/sysutils/portupgrade + #??? setenv WITH_OPENSSL_PORT "yes" + make install clean +) + +# ??? +##rehash +#pkgdb -u + +# if cvsup is not installed, then +portinstall -PR cvsup-without-gui + +#cp /usr/share/examples/cvsup/ports-supfile /root +#perl -pi -e 's/CHANGE_THIS/cvsup13/;' /root/ports-supfile +#cvsup /root/ports-supfile + +# choose the fastest cvsup server, then cvsup update +/usr/local/bin/cvsup -g -L 2 -h cvsup2.freebsd.org /usr/share/examples/cvsup/ports-supfile + +# Update the ports database +#/usr/local/sbin/portsdb -Uu +portsdb -Uu + +portinstall -PR portupgrade + +portinstall -PR lang/perl5.8 +# if FreeBSD 4.x, then +/usr/local/bin/use.perl port + +#portupgrade -f `(pkg_info -R perl-5\* |tail +4; \ +# find /usr/local/lib/perl5/site_perl/5.[68].[1245] -type f -print0 \ +# | xargs -0 pkg_which -fv | sed -e '/: ?/d' -e 's/.*: //')|sort -u` + + +for port in `grep -v '^ *#' ports`; do + portinstall -PR $port +done + +for a in JavaScript::RPC::Server::CGI Chart::LinesPoints Frontier::RPC2; do perl -MCPAN -e"install $a"; done + +su -l pgsql -c initdb +echo ' +postgresql_enable="YES" +postgresql_data="/usr/local/pgsql/data" +postgresql_flags="-w -s -m fast" +' >>/etc/rc.conf + +/usr/local/etc/rc.d/010.pgsql.sh start + +pw user add freeside -m + +su -l pgsql -c 'createuser -P freeside' + +su -l freeside -c 'createdb freeside' + +#? +cd ../.. +make install-perl-modules +make create-config +freeside-adduser -c -h /usr/local/etc/freeside/htpasswd ivan +su freeside -c 'freeside-setup ivan' +su freeside -c '/home/ivan/freeside/bin/populate-msgcat ivan' + +#edit apache config, etc. + +echo ' +apache_enable="YES" +apache_flags="-DSSL" +' >>/etc/rc.conf + +make deploy + diff --git a/install/freebsd/ports b/install/freebsd/ports new file mode 100644 index 000000000..90b49e668 --- /dev/null +++ b/install/freebsd/ports @@ -0,0 +1,56 @@ +shells/zsh +misc/screen +security/sudo +ftp/lftp +lang/perl5.8 +www/apache13-modssl +www/mod_perl +net/rsync +databases/postgresql74-server +#databases/postgresql74-client +misc/p5-Array-PrintCols +devel/p5-Term-Query +converters/p5-MIME-Base64 +security/p5-Digest-MD5 +security/p5-MD5 +net/p5-URI +www/p5-HTML-Tagset +www/p5-HTML-Parser +net/p5-Net +misc/p5-Locale-Codes +net/p5-Net-Whois-Raw +www/p5-libwww +finance/p5-Business-CreditCard +devel/p5-Data-ShowTable +mail/p5-Mail-Tools +devel/p5-TimeDate +devel/p5-Date-Manip +misc/p5-File-CounterFile +devel/p5-FreezeThaw +devel/p5-String-Approx +textproc/p5-Text-Template +databases/p5-DBI +databases/p5-DBD-Pg + #databases/p5-DBD-mysql + #databases/p5-DBIx-DataSource +database/p5-DBIx-DBSchema +net/p5-Net-SSH +textproc/p5-String-ShellQuote +net/p5-Net-SCP + #www/p5-Apache-ASP +www/p5-HTML-Mason +devel/p5-Tie-IxHash +devel/p5-Time-Duration +www/p5-HTML-Widgets-SelectLayers +devel/p5-Storable +www/p5-Apache-DBI +devel/p5-Cache-Cache +security/p5-Crypt-PasswdMD5 +net-mgmt/p5-NetAddr-IP +graphics/p5-GD +textproc/p5-Spreadsheet-WriteExcel +textproc/p5-Text-CSV_XS +misc/p5-Locale-SubCountry +devel/p5-IO-stringy +textproc/p5-XML-Parser +mail/p5-MIME-Tools |