added current version of libfdata

This commit is contained in:
Volker Wegert 2022-11-05 22:31:06 +01:00
parent 6b654c33d1
commit 52f7eb3c3a
No known key found for this signature in database
GPG key ID: 1BCEC13D2F171EC4
2 changed files with 34 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST libfdata-alpha-20200728.tar.gz 725242 BLAKE2B aab93521547d07efd599ed5b82f811f7ee74e1b0720d8bce27e8521ece08506bb2f5f253eeb558fb93554a1747a62ebf9ba30d04a92cf606de3c73ce1c00c4bf SHA512 9a03e23e69a92c86df63488e4c3ed5fecaa87a75c575281e268d06a643860ed5918635863fc8ae76f813d857cbb25d68b3795449c2c4b81f85891019766c9ff3
DIST libfdata-alpha-20201129.tar.gz 725653 BLAKE2B c8955fd48983ed60914c65c9b1308f5a119ecab88dd9c6fe71beea5a2e7d07bc948987e2c540a144ccb133664e15edea94e555bfe3ea031cbb54c2a280c92f52 SHA512 5b367e9af485e2974736eaa8116bf6bd8011a27e810c4a4ed6cd825aa480b2962ec05d986d682e4ca078a3116349c9f8563cd0fb08ad82a91221e074f9817644
DIST libfdata-alpha-20220111.tar.gz 726541 BLAKE2B 8640cbcafd39e26638cfa5b3f7c1d9c99618801ba080bc8d5ee5ee8d574a837e74d8f1df5399e367f7a17f28b5f175a7e0183e0cefe7fb37a303d7be61a261b2 SHA512 89e7477d15df8403102452fef874e1d2c61be53e861051bd06d258d1e8d3fdca86b0ec694b2ece62fc74e71257cd93b711dfa785aea2f3e313b5e857569c80a3

View file

@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Library for cross-platform C file data functions"
HOMEPAGE="https://github.com/libyal/${PN}"
SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE="debug nls"
DEPEND="dev-libs/libcdata
dev-libs/libcerror
dev-libs/libcnotify
dev-libs/libcthreads
dev-libs/libfcache"
RDEPEND="${DEPEND}"
src_configure() {
econf $(use_enable nls) \
$(use_with nls libiconv-prefix) \
$(use_with nls libintl-prefix) \
$(use_enable debug debug-output) \
$(use_enable debug verbose-output)
# \
# --with-libcdata --with-libcerror \
# --with-libcnotify --with-libcthreads \
# --with-libfcache
}