]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
install-deps.sh: Add the required packages to build on FreeBSD
authorWillem Jan Withagen <wjw@digiware.nl>
Thu, 24 Mar 2016 11:48:20 +0000 (12:48 +0100)
committerWillem Jan Withagen <wjw@digiware.nl>
Tue, 10 May 2016 21:41:17 +0000 (23:41 +0200)
Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
install-deps.sh

index 75523827158077d1c3fbf29015420fbfb71077d7..902130992a6bc8e08059db8e73d0b0863d46c80e 100755 (executable)
@@ -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