diff options
author | Ben Kohler <bkohler@gentoo.org> | 2021-08-23 09:04:49 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2021-08-23 09:31:30 -0500 |
commit | dfdd629cde76b065d0fea208b40a1f9bb889e9c2 (patch) | |
tree | d36926a27f593737ae5df2530d1cef6ab8dd6484 /dev-libs/ell/ell-0.43.ebuild | |
parent | sys-kernel/rt-sources: rt-sources 5.4.138_p62 (diff) | |
download | gentoo-dfdd629cde76b065d0fea208b40a1f9bb889e9c2.tar.gz gentoo-dfdd629cde76b065d0fea208b40a1f9bb889e9c2.tar.bz2 gentoo-dfdd629cde76b065d0fea208b40a1f9bb889e9c2.zip |
dev-libs/ell: bump to 0.43
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'dev-libs/ell/ell-0.43.ebuild')
-rw-r--r-- | dev-libs/ell/ell-0.43.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-libs/ell/ell-0.43.ebuild b/dev-libs/ell/ell-0.43.ebuild new file mode 100644 index 000000000000..e2a5fd2979c4 --- /dev/null +++ b/dev-libs/ell/ell-0.43.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic linux-info multilib-minimal + +DESCRIPTION="Embedded Linux Library provides core, low-level functionality for system daemons" +HOMEPAGE="https://01.org/ell" +if [[ "${PV}" == *9999 ]] ; then + inherit autotools git-r3 + EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git" +else + SRC_URI="https://mirrors.edge.kernel.org/pub/linux/libs/${PN}/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +fi +LICENSE="LGPL-2.1" +SLOT="0" + +IUSE="pie test" +RESTRICT="!test? ( test )" + +RDEPEND="" +DEPEND="test? ( sys-apps/dbus )" + +CONFIG_CHECK=" + ~TIMERFD + ~EVENTFD + ~CRYPTO_USER_API + ~CRYPTO_USER_API_HASH + ~CRYPTO_MD5 + ~CRYPTO_SHA1 + ~KEY_DH_OPERATIONS +" + +src_prepare() { + default + [[ "${PV}" == *9999 ]] && eautoreconf +} + +multilib_src_configure() { + append-cflags "-fsigned-char" #662694 + local myeconfargs=( + $(use_enable pie) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + local DOCS=( ChangeLog README ) + einstalldocs + + find "${ED}" -name "*.la" -delete || die +} |