debian-setup: bug fix
[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
23 #
24 # Install the packages required for Wireshark development.
25 # (This includes GUI packages; making that optional, with a command-line
26 # flag, is left as an exercise to the reader.)
27 #
28 # We drag in tools that might not be needed by all users; it's easier
29 # that way.
30 #
31
32 if [ ! -z $1 ] && [ "$1" != "--install-optional" ]
33 then
34         echo "\n*** Invalid parameter: $1\n"
35         exit 1
36 fi
37
38 apt-get install libgtk2.0-dev libpcap-dev bison flex make automake \
39         libtool python perl
40
41 #
42 # Now arrange for optional support libraries
43 #
44 if [ -z $1 ]
45 then
46         echo "\n*** Optional packages not installed. Rerun with --install-optional to have them.\n"
47         exit 0
48 fi
49
50 apt-get install libnl-3-dev qttools5-dev qttools5-dev-tools libgtk-3-dev \
51         libc-ares-dev libssh-dev libkrb5-dev libqt5svg5-dev lynx libsmi2-dev \
52         portaudio19-dev asciidoc libgcrypt-dev libsbc-dev libgeoip-dev \
53         libgnutls-dev qtmultimedia5-dev liblua5.2-dev libnl-cli-3-dev \
54         libparse-yapp-perl qt5-default