mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
dev-libs/libuna: fix version
old versions could not be fetched (404)
This commit is contained in:
parent
cf3e03b823
commit
ae27d1ad31
3 changed files with 1 additions and 52 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST libuna-alpha-20220102.tar.gz 1985446 BLAKE2B 59ccdbd1b19ceaef8f90120bd58fb7a04196a06d791d4b6ba2ba52e1b2181096ee5915ce8bc3f09d0a1b1584ddfdf8151717874a708035a5a70bb772645a92ef SHA512 a86e255f77061425a0b7ff699021f9a5e0f081867970d809f37627400460083072ffec9ef353632031eebc07a29ff7f55d6c33a3552af7acacc1835db37f46d6
|
||||
DIST libuna-alpha-20220611.tar.gz 1991540 BLAKE2B b53f5834096a4d467dd7dae86aab56fae4b4ff8f402b37e5495cd1e09f22a3c88eb70454a095add08a1a0b1310290926e63e739698863f97972fb9e91eda88d6 SHA512 14a9a703c2c4166f229eb8c92ea0143f3a1ef947c23fe4cc8adc9e81f7dad6e7d82d8dc091fb987dfdd34144d611051e955be12b8d15fe0d031e1e4a7b87af6f
|
||||
DIST libuna-alpha-20240130.tar.gz 2006948 BLAKE2B aedebf7f0da4534e307d6fff94db85d352859c94c1683a6a5fc55224dfab364b7ee4b53adcde846732056113c14bc56cd63724b0c63f1125de8d060cff31b30f SHA512 892bfda2139b7f2078eddd660fffdf66302e80d5ae86dc46590f92e68b7624383409a6d783cc0a4db660ef37ee04865cb99e6ea016dd0c861d1c11551902850f
|
||||
|
|
|
|||
|
|
@ -1,50 +0,0 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Library to support Unicode and ASCII (byte string) conversions"
|
||||
HOMEPAGE="https://github.com/libyal/libuna"
|
||||
SRC_URI="https://github.com/libyal/libuna/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE="nls unicode"
|
||||
|
||||
# This library has a circular build-time dependency on libcfile. According to upstream, this is
|
||||
# a non-issue as long as we use the pre-assembled download tarballs because they contain all
|
||||
# required sources (see https://github.com/libyal/libuna/issues/7).
|
||||
# dev-libs/libcfile
|
||||
DEPEND="
|
||||
dev-libs/libcdatetime[nls=]
|
||||
dev-libs/libcerror[nls=]
|
||||
dev-libs/libclocale[nls=,unicode=]
|
||||
dev-libs/libcnotify[nls=]
|
||||
nls? (
|
||||
virtual/libiconv
|
||||
virtual/libintl
|
||||
)
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_enable nls) \
|
||||
$(use_with nls libiconv-prefix) \
|
||||
$(use_with nls libintl-prefix) \
|
||||
$(use_enable unicode wide-character-type)
|
||||
|
||||
# --disable-shared-libs disable shared library support
|
||||
# not supported in the ebuild at the moment - kind of defeats the entire process
|
||||
|
||||
# --enable-winapi enable WINAPI support for cross-compilation
|
||||
# [default=auto-detect]
|
||||
# not supported in the ebuild at the moment - requires windows.h, does not make much sense for us
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
# see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
||||
Loading…
Reference in a new issue