diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-11-16 00:23:22 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-16 00:23:22 +0100 |
commit | f7619eaede1fc6b8bd97d4827e19c5665f5d2d3a (patch) | |
tree | e8a025f4d15e9f3b260f888aa256a9bfab39a931 /net-libs/openmq-cclient | |
parent | net-libs/libident: disable static libs, port to EAPI 7 (diff) | |
download | gentoo-f7619eaede1fc6b8bd97d4827e19c5665f5d2d3a.tar.gz gentoo-f7619eaede1fc6b8bd97d4827e19c5665f5d2d3a.tar.bz2 gentoo-f7619eaede1fc6b8bd97d4827e19c5665f5d2d3a.zip |
net-libs/openmq-cclient: disable static libs
Closes: https://bugs.gentoo.org/725016
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-libs/openmq-cclient')
-rw-r--r-- | net-libs/openmq-cclient/openmq-cclient-4.4.1.ebuild | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/net-libs/openmq-cclient/openmq-cclient-4.4.1.ebuild b/net-libs/openmq-cclient/openmq-cclient-4.4.1.ebuild index a60d88a6722b..8fdd8ee4a310 100644 --- a/net-libs/openmq-cclient/openmq-cclient-4.4.1.ebuild +++ b/net-libs/openmq-cclient/openmq-cclient-4.4.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -73,6 +73,12 @@ src_prepare() { eautoreconf } +src_configure() { + econf --disable-static +} + src_install() { - emake install DESTDIR="${D}" + default + dodoc -r "${WORKDIR}"/mq/src/doc/en/. + find "${ED}" -name '*.la' -delete || die } |