voms-2.1.0olifre
download
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit autotools
MY_PV=$(ver_rs 3 '-')
DESCRIPTION="The VOMS native service and APIs"
HOMEPAGE="https://italiangrid.github.io/voms/"
SRC_URI="https://github.com/italiangrid/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc +clients server"
DEPEND="dev-libs/openssl:0="
RDEPEND="${DEPEND}
>=net-libs/gsoap-2.8.50
sci-physics/egi-igtf
sci-physics/wlcg-voms"
src_prepare() {
default
mkdir -p aux src/autogen || die
eautoreconf
}
src_configure() {
econf \
$(use_with clients) \
$(use_with server)
}