6 # install_prereq: a script to install distribution-specific
12 echo "$0: a script to install distribution-specific prerequirement"
15 echo "Usage: $0: Shows this message."
16 echo "Usage: $0 test Prints commands it is about to run."
17 echo "Usage: $0 install Really install."
18 echo "Usage: $0 install-unpackaged Really install unpackaged requirements."
22 PACKAGES_DEBIAN="build-essential"
23 # Asterisk: basic requirements:
24 PACKAGES_DEBIAN="$PACKAGES_DEBIAN libncurses-dev libz-dev libssl-dev libxml2-dev libsqlite3-dev"
25 # Asterisk: for addons:
26 PACKAGES_DEBIAN="$PACKAGES_DEBIAN libcurl-dev libspeex-dev libspeexdsp-dev libogg-dev libvorbis-dev libasound2-dev portaudio19-dev libcurl4-openssl-dev"
27 PACKAGES_DEBIAN="$PACKAGES_DEBIAN libpq-dev unixodbc-dev libsqlite0-dev libmysqlclient15-dev libneon27-dev libgmime-dev libusb-dev liblua5.1-0-dev lua5.1"
28 PACKAGES_DEBIAN="$PACKAGES_DEBIAN libopenh323-dev libvpb-dev libgtk2.0-dev libmysqlclient-dev libbluetooth-dev libradiusclient-ng-dev freetds-dev"
29 PACKAGES_DEBIAN="$PACKAGES_DEBIAN libsnmp-dev libiksemel-dev libcorosync-dev libnewt-dev libpopt-dev libical-dev libspandsp-dev libjack-dev"
30 PACKAGES_DEBIAN="$PACKAGES_DEBIAN libresample-dev libc-client-dev binutils-dev libsrtp-dev libgsm1-dev libedit-dev doxygen"
31 PACKAGES_RH="automake gcc gcc-c++ ncurses-devel openssl-devel libxml2-devel unixODBC-devel libcurl-devel libogg-devel libvorbis-devel speex-devel"
32 PACKAGES_RH="$PACKAGES_RH spandsp-devel freetds-devel net-snmp-devel iksemel-devel corosynclib-devel newt-devel popt-devel libtool-ltdl-devel lua-devel"
33 PACKAGES_RH="$PACKAGES_RH libsqlite3x-devel radiusclient-ng-devel portaudio-devel postgresql-devel libresample-devel neon-devel libical-devel"
34 PACKAGES_RH="$PACKAGES_RH openldap-devel gmime22-devel sqlite2-devel mysql-devel bluez-libs-devel jack-audio-connection-kit-devel gsm-devel libedit-devel"
36 PACKAGES_OBSD="popt gmake wget libxml libogg libvorbis curl iksemel spandsp speex iodbc freetds-0.63p1-msdblib mysql-client gmime sqlite sqlite3 jack"
42 install) testcmd='' ;;
43 install-unpackaged) unpackaged="yes" ;;
52 check_installed_debs() {
53 aptitude -F '%c %p' search "$@" 2>/dev/null \
54 | awk '/^p/{print $2}'
57 # parsing the output of yum is close to impossible.
58 # We'll use rpm and hope for the best:
59 check_installed_rpms() {
62 if ! rpm -q $pack >/dev/null 2>/dev/null
68 check_installed_pkgs() {
71 if [ `pkg_info -a | grep $pack | wc -l` = 0 ]; then
78 # echo "# Distribution is Debian or compatible"
79 extra_packs=`check_installed_debs $PACKAGES_DEBIAN`
80 $testcmd aptitude install -y $extra_packs
84 # echo "# Distribution is RedHat-based or compatible"
85 extra_packs=`check_installed_rpms $PACKAGES_RH`
86 # FIXME: is there yum with RHEL 4?
87 $testcmd yum install -y $extra_packs
91 # echo "# Distribution is OpenBSD or compatible"
92 extra_packs=`check_installed_pkgs $PACKAGES_OBSD`
93 $testcmd pkg_add $extra_packs
96 install_unpackaged() {
97 echo "*** Installing NBS (Network Broadcast Sound) ***"
98 svn co http://svn.digium.com/svn/nbs/trunk nbs-trunk
103 echo "*** Installing libresample ***"
104 svn co http://svn.digium.com/svn/thirdparty/libresample/trunk libresample-trunk
106 ./configure && make && make install
110 if in_test_mode; then
111 echo "#############################################"
112 echo "## $1: test mode."
113 echo "## Use the commands here to install your system."
114 echo "#############################################"
115 elif test "${unpackaged}" = "yes" ; then
121 unsupported_distro=''
123 # A number of distributions we don't (yet?) support.
124 if [ "$OS" != 'Linux' -a "$OS" != 'OpenBSD' ]; then
125 echo >&2 "$0: Your OS ($OS) is currently not supported. Aborting."
129 if [ -f /etc/gentoo-release ]; then
130 unsupported_distro='Gentoo'
133 if [ -f /etc/mandrake-release ]; then
134 unsupported_distro='Mandriva'
137 if [ -f /etc/SuSE-release ]; then
138 unsupported_distro='SUSE'
141 if [ -f /etc/slackware-version ]; then
142 unsupported_distro='Slackware'
145 if [ "$unsupported_distro" != '' ]; then
146 echo >&2 "$0: Your distribution ($unsupported_distro) is currently not supported. Aborting."
150 # The distributions we do support:
151 if [ -r /etc/debian_version ]; then
153 elif [ -r /etc/redhat-release ]; then
155 elif [ "$OS" = 'OpenBSD' ]; then
159 if ! in_test_mode; then
160 echo "#############################################"
161 echo "## $1 completed successfully"
162 echo "#############################################"