From: Willem Jan Withagen Date: Thu, 24 Mar 2016 11:48:20 +0000 (+0100) Subject: install-deps.sh: Add the required packages to build on FreeBSD X-Git-Tag: v11.0.0~547^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8b6307cdd97a959b443443447e829d53b7503fe0;p=ceph.git install-deps.sh: Add the required packages to build on FreeBSD Signed-off-by: Willem Jan Withagen --- diff --git a/install-deps.sh b/install-deps.sh index 75523827158..902130992a6 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -19,6 +19,43 @@ if test $(id -u) != 0 ; then fi export LC_ALL=C # the following is vulnerable to i18n +if [ x`uname`x = xFreeBSDx ]; then + $SUDO pkg install -yq \ + devel/git \ + devel/gmake \ + devel/automake \ + devel/yasm \ + devel/boost-all \ + devel/valgrind \ + devel/pkgconf \ + devel/libatomic_ops \ + devel/libedit \ + devel/libtool \ + devel/google-perftools \ + lang/cython \ + devel/py-virtualenv \ + databases/leveldb \ + net/openldap24-client \ + security/nss \ + security/cryptopp \ + archivers/snappy \ + ftp/curl \ + misc/e2fsprogs-libuuid \ + textproc/expat2 \ + textproc/libxml2 \ + textproc/xmlstarlet \ + emulators/fuse \ + java/junit \ + lang/python27 \ + devel/py-argparse \ + devel/py-nose \ + www/py-flask \ + www/fcgi \ + sysutils/flock \ + + exit +fi + if test -f /etc/redhat-release ; then $SUDO yum install -y redhat-lsb-core fi