2016-04-29 08:55:29 +00:00
|
|
|
# Template file for 'ceph'
|
|
|
|
pkgname=ceph
|
2016-07-27 06:38:17 +00:00
|
|
|
version=10.2.2
|
|
|
|
revision=1
|
2016-04-29 08:55:29 +00:00
|
|
|
build_style=gnu-configure
|
2016-04-30 14:57:54 +00:00
|
|
|
configure_args="--with-man-pages --with-radosgw --without-openldap
|
2016-04-29 08:55:29 +00:00
|
|
|
--with-nss --without-cython --without-tcmalloc
|
|
|
|
--without-crytocpp --without-librocksdb --disable-static"
|
|
|
|
hostmakedepends="automake libtool pkg-config yasm python-devel python-setuptools
|
|
|
|
python-virtualenv python-pip python-Sphinx"
|
|
|
|
makedepends="zlib-devel bzip2-devel liblzma-devel xfsprogs-devel leveldb-devel
|
|
|
|
boost-devel expat-devel libcurl-devel fuse-devel libaio-devel libatomic_ops-devel
|
|
|
|
libedit-devel ncurses-devel libuuid-devel libblkid-devel eudev-libudev-devel
|
|
|
|
nss-devel snappy-devel keyutils-devel fcgi-devel"
|
|
|
|
short_desc="Distributed, fault-tolerant storage platform delivering object, block, and file system"
|
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
|
|
license="GPL-2"
|
|
|
|
homepage="http://ceph.com/"
|
|
|
|
distfiles="http://download.ceph.com/tarballs/ceph-${version}.tar.gz"
|
2016-07-27 06:38:17 +00:00
|
|
|
checksum=7adaaeffb5a787108b5e1494df9165b6420069c0ab710e6e4aad185f423b0f6d
|
2016-04-29 08:55:29 +00:00
|
|
|
|
|
|
|
# - Needs NEON on ARM (armv7+)
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
2016-07-27 06:38:17 +00:00
|
|
|
*-musl) broken="execinfo.h, PTHREAD_RWLOCK_NONRECURSIVE_NP, etc";;
|
2016-04-29 08:55:29 +00:00
|
|
|
armv7*) CFLAGS="-mfpu=neon";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
LDFLAGS="-Wl,--no-as-needed"
|
|
|
|
|
|
|
|
pre_configure() {
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
|
|
*-musl)
|
|
|
|
sed -i '/no resolv library found/s/AC_MSG_FAILURE/AC_MSG_RESULT/' configure.ac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
autoreconf -fi
|
|
|
|
}
|
|
|
|
post_install() {
|
|
|
|
mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/bin
|
|
|
|
mv ${DESTDIR}/usr/sbin/* ${DESTDIR}/usr/bin
|
|
|
|
vmkdir usr/share/bash-completion/completions
|
|
|
|
mv ${DESTDIR}/etc/bash_completion.d/* ${DESTDIR}/usr/share/bash-completion/completions
|
|
|
|
rm -rf ${DESTDIR}/usr/include
|
|
|
|
}
|