debian-setup: add additional params to apt-get.
[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 apt-get install libgtk2.0-dev libpcap-dev bison flex make automake \
37         libtool libtool-bin python perl $OPTIONS
38
39 #
40 # Now arrange for optional support libraries
41 #
42 if [ -z $OPTIONS ]
43 then
44         echo "\n*** Optional packages not installed. Rerun with --install-optional to have them.\n"
45         exit 0
46 fi
47
48 if [ $ADDITIONAL ]
49 then
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 $OPTIONS
55 fi