tools: add git to optional pkgs in debian-setup script.
[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 if [ "$1" = "--help" ]
27 then
28         echo "\nUtility to setup a debian-based system for Wireshark Development.\n"
29         echo "The basic usage installs the needed software\n\n"
30         echo "Usage: $0 [--install-optional] [...other options...]\n"
31         echo "\t--install-optional: install optional software as well"
32         echo "\t[other]: other options are passed as-is to apt\n"
33         exit 1
34 fi
35
36 # Check if the user is root
37 if [ $(id -u) -ne 0 ]
38 then
39         echo "You must be root."
40         exit 1
41 fi
42
43 for op in $@
44 do
45         if [ "$op" = "--install-optional" ]
46         then
47                 ADDITIONAL=1
48         else
49                 OPTIONS="$OPTIONS $op"
50         fi
51 done
52
53 BASIC_LIST="libgtk2.0-dev libpcap-dev bison flex make automake \
54         libtool python perl libgcrypt-dev"
55
56 ADDITIONAL_LIST="libnl-3-dev qttools5-dev qttools5-dev-tools libgtk-3-dev \
57                 libc-ares-dev libkrb5-dev libqt5svg5-dev libsmi2-dev \
58                 portaudio19-dev asciidoctor libsbc-dev libgeoip-dev \
59                 qtmultimedia5-dev liblua5.2-dev libnl-cli-3-dev \
60                 libparse-yapp-perl qt5-default cmake libcap-dev \
61                 liblz4-dev libsnappy-dev libspandsp-dev libxml2-dev \
62                 git"
63
64 # Adds package $2 to list variable $1 if the package is found
65 add_package() {
66         local list="$1" pkgname="$2"
67
68         # fail if the package is not known
69         [ -n "$(apt-cache show "$pkgname" 2>/dev/null)" ] || return 1
70
71         # package is found, append it to list
72         eval "${list}=\"\${${list}} \${pkgname}\""
73 }
74
75 # only needed for newer distro versions where "libtool" binary is separated.
76 # Debian >= jessie, Ubuntu >= 16.04
77 add_package BASIC_LIST libtool-bin
78
79 # Debian >= wheezy-backports, Ubuntu >= 16.04
80 add_package ADDITIONAL_LIST libnghttp2-dev ||
81 echo "libnghttp2-dev is unavailable" >&2
82
83 # libssh-gcrypt-dev: Debian >= jessie, Ubuntu >= 16.04
84 # libssh-dev (>= 0.6): Debian >= jessie, Ubuntu >= 14.04
85 add_package ADDITIONAL_LIST libssh-gcrypt-dev ||
86 add_package ADDITIONAL_LIST libssh-dev ||
87 echo "libssh-gcrypt-dev and libssh-dev are unavailable" >&2
88
89 # libgnutls-dev: Debian <= jessie, Ubuntu <= 16.04
90 # libgnutls28-dev: Debian >= wheezy-backports, Ubuntu >= 12.04
91 add_package ADDITIONAL_LIST libgnutls28-dev ||
92 add_package ADDITIONAL_LIST libgnutls-dev ||
93 echo "libgnutls28-dev and libgnutls-dev are unavailable" >&2
94
95 ACTUAL_LIST=$BASIC_LIST
96
97 # Now arrange for optional support libraries
98 if [ $ADDITIONAL ]
99 then
100         ACTUAL_LIST="$ACTUAL_LIST $ADDITIONAL_LIST"
101 fi
102
103 apt-get install $ACTUAL_LIST $OPTIONS
104 if [ $? != 0 ]
105 then
106         exit 2
107 fi
108
109 if [ ! $ADDITIONAL ]
110 then
111         echo "\n*** Optional packages not installed. Rerun with --install-optional to have them.\n"
112 fi