debian-setup: allow libssh-dev to be installed for trusty
[metze/wireshark/wip.git] / tools / debian-setup.sh
1 #!/bin/sh
2 # Setup development environment on Debian and derivatives such as Ubuntu
3 #
4 # Wireshark - Network traffic analyzer
5 # By Gerald Combs <gerald@wireshark.org>
6 # Copyright 1998 Gerald Combs
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License
10 # as published by the Free Software Foundation; either version 2
11 # of the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #
22 # We drag in tools that might not be needed by all users; it's easier
23 # that way.
24 #
25
26 for op in $@
27 do
28         if [ "$op" = "--install-optional" ]
29         then
30                 ADDITIONAL=1
31         else
32                 OPTIONS="$OPTIONS $op"
33         fi
34 done
35
36 BASIC_LIST="libgtk2.0-dev libpcap-dev bison flex make automake \
37         libtool python perl"
38
39 ADDITIONAL_LIST="libnl-3-dev qttools5-dev qttools5-dev-tools libgtk-3-dev \
40                 libc-ares-dev libssh-dev libkrb5-dev libqt5svg5-dev lynx libsmi2-dev \
41                 portaudio19-dev asciidoc libgcrypt-dev libsbc-dev libgeoip-dev \
42                 libgnutls-dev qtmultimedia5-dev liblua5.2-dev libnl-cli-3-dev \
43                 libparse-yapp-perl qt5-default cmake libcap-dev \
44                 liblz4-dev libsnappy-dev"
45
46 # Adds package $2 to list variable $1 if the package is found
47 add_package() {
48         local list="$1" pkgname="$2"
49
50         # fail if the package is not known
51         [ -n "$(apt-cache show "$pkgname" 2>/dev/null)" ] || return 1
52
53         # package is found, append it to list
54         eval "${list}=\"\${${list}} \${pkgname}\""
55 }
56
57 # Check for lsb_release command in $PATH
58 if ! which lsb_release > /dev/null; then
59         echo "ERROR: lsb_release not found in \$PATH" >&2
60         exit 1;
61 fi
62
63 # only needed for newer distro versions where "libtool" binary is separated.
64 # Debian >= jessie, Ubuntu >= 16.04
65 add_package BASIC_LIST libtool-bin
66
67 # Debian >= wheezy-backports, Ubuntu >= 16.04
68 add_package ADDITIONAL_LIST libnghttp2-dev ||
69 echo "libnghttp2-dev is unavailable" >&2
70
71 # libssh-gcrypt-dev: Debian >= jessie, Ubuntu >= 16.04
72 # libssh-dev (>= 0.6): Debian >= jessie, Ubuntu >= 14.04
73 add_package ADDITIONAL_LIST libssh-gcrypt-dev ||
74 add_package ADDITIONAL_LIST libssh-dev ||
75 echo "libssh-gcrypt-dev and libssh-dev are unavailable" >&2
76
77
78 # Install basic packages
79 apt-get install $BASIC_LIST $OPTIONS
80
81 # Now arrange for optional support libraries
82 if [ ! $ADDITIONAL ]
83 then
84         echo "\n*** Optional packages not installed. Rerun with --install-optional to have them.\n"
85 else
86         apt-get install $ADDITIONAL_LIST $OPTIONS
87 fi