diff options
author | Marek Szuba <marecki@gentoo.org> | 2019-12-20 14:10:27 +0000 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2019-12-20 14:10:27 +0000 |
commit | 349bf02860377e3a7b0a73433a353e1b5f0bd5dd (patch) | |
tree | 78782f39f771c75b40a585e832257c618490ee87 /net-libs/xrootd | |
parent | net-libs/libmicrohttpd: ia64 stable wrt bug #703220 (diff) | |
download | gentoo-349bf02860377e3a7b0a73433a353e1b5f0bd5dd.tar.gz gentoo-349bf02860377e3a7b0a73433a353e1b5f0bd5dd.tar.bz2 gentoo-349bf02860377e3a7b0a73433a353e1b5f0bd5dd.zip |
net-libs/xrootd: remove redundant USE=rbd from 4.10.1
Since version 4.10.0 xrootd upstream no longer bundle XrdCeph code with
core XRootD so all this flag did in this ebuild was create an
unnecessary dependency on sys-cluster/ceph and produce configure-time
warnings.
Closes: https://bugs.gentoo.org/691600
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-libs/xrootd')
-rw-r--r-- | net-libs/xrootd/xrootd-4.10.1.ebuild | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net-libs/xrootd/xrootd-4.10.1.ebuild b/net-libs/xrootd/xrootd-4.10.1.ebuild index 84ac2910a28b..c15bef797bd6 100644 --- a/net-libs/xrootd/xrootd-4.10.1.ebuild +++ b/net-libs/xrootd/xrootd-4.10.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://xrootd.org/download/v${PV}/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc examples fuse http kerberos python readline rbd ssl test" +IUSE="doc examples fuse http kerberos python readline ssl test" RESTRICT="!test? ( test )" CDEPEND=" @@ -22,7 +22,6 @@ CDEPEND=" fuse? ( sys-fs/fuse:= ) kerberos? ( virtual/krb5 ) python? ( ${PYTHON_DEPS} ) - rbd? ( sys-cluster/ceph ) readline? ( sys-libs/readline:0= ) ssl? ( dev-libs/openssl:0= ) " @@ -56,7 +55,6 @@ pkg_setup() { src_configure() { local mycmakeargs=( - -DENABLE_CEPH=$(usex rbd) -DENABLE_CRYPTO=$(usex ssl) -DENABLE_FUSE=$(usex fuse) -DENABLE_HTTP=$(usex http) |