diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-02-26 16:37:02 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-02-26 16:37:06 +0100 |
commit | 350edb552c5f777633fbfbf645dc32081cb2abb4 (patch) | |
tree | 83e9d45fbc010917dc6d6159e0ec174f0ffa03ca /net-libs/zeromq/zeromq-4.3.3-r1.ebuild | |
parent | media-gfx/gnofract4d: Stabilize 4.3_p20201029 x86, #772116 (diff) | |
download | gentoo-350edb552c5f777633fbfbf645dc32081cb2abb4.tar.gz gentoo-350edb552c5f777633fbfbf645dc32081cb2abb4.tar.bz2 gentoo-350edb552c5f777633fbfbf645dc32081cb2abb4.zip |
net-libs/zeromq: fix automagic on dev-libs/libbsd
Link: https://github.com/zeromq/libzmq/commit/068385c951c0608edec6264d55ba9c4c923acccc
Closes: https://bugs.gentoo.org/772965
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'net-libs/zeromq/zeromq-4.3.3-r1.ebuild')
-rw-r--r-- | net-libs/zeromq/zeromq-4.3.3-r1.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/net-libs/zeromq/zeromq-4.3.3-r1.ebuild b/net-libs/zeromq/zeromq-4.3.3-r1.ebuild new file mode 100644 index 000000000000..aacebe8becf4 --- /dev/null +++ b/net-libs/zeromq/zeromq-4.3.3-r1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit autotools + +DESCRIPTION="A brokerless kernel" +HOMEPAGE="https://zeromq.org/" +SRC_URI="https://github.com/zeromq/libzmq/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0/5" +KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="doc drafts +libbsd pgm +sodium static-libs test unwind elibc_Darwin" +RESTRICT="!test? ( test )" + +RDEPEND=" + !elibc_Darwin? ( unwind? ( sys-libs/libunwind ) ) + libbsd? ( dev-libs/libbsd:= ) + sodium? ( dev-libs/libsodium:= ) + pgm? ( ~net-libs/openpgm-5.2.122 )" +DEPEND="${RDEPEND} + !elibc_Darwin? ( sys-apps/util-linux ) + doc? ( + app-text/asciidoc + app-text/xmlto + ) + pgm? ( virtual/pkgconfig )" + +src_prepare() { + sed \ + -e '/libzmq_werror=/s:yes:no:g' \ + -i configure.ac || die + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + --enable-shared + $(use_enable drafts) + $(use_enable libbsd) + $(use_enable static-libs static) + $(use_enable unwind libunwind) + $(use_with sodium libsodium) + $(use_with pgm) + $(use_with doc docs) + ) + econf "${myeconfargs[@]}" +} + +src_test() { + # Restricting to one job because multiple tests are using the same port. + # Upstream knows the problem and says it doesn't support parallel test + # execution, see ${S}/INSTALL. + emake -j1 check +} + +src_install() { + default + find "${ED}"/usr/lib* -name '*.la' -delete || die +} |