mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
dev-libs/libclocale: fix version, issue #1556
This commit is contained in:
parent
c692f456d2
commit
e3eb7e7cdd
3 changed files with 1 additions and 45 deletions
|
|
@ -1,2 +1 @@
|
|||
DIST libclocale-alpha-20210526.tar.gz 513701 BLAKE2B 7af9c4970520408baf1e810eead458a1df708c1eed960ba3aaf7ad0365d6f076a7df6e406ca69c5cd309a4e3e312970a03592dff4539e2a08f3a0b640798a134 SHA512 76c7e808435e6226510467692a3261ca0edfeca0a8c8fef41727864cc46dc41f89286310a0fee4809ea1cba53a713cbf664ea4d21c9131e8c45106b2134ab926
|
||||
DIST libclocale-alpha-20220107.tar.gz 513676 BLAKE2B 942c7d831d2dbf36302eedc8b662674afeb22f176eea4fe5625f7f7ea8159895af9a3a686fedfe42e7316c351888006a88daee3d301e799181838dddb4e67220 SHA512 98bbd0487e813c9939d7b217e0f27178e805b445c801270fe66fcff6a685fcc3b9a6c4d1d3252e805bf63733146f022525245af6c93a0a6e2ee18d1147ad9643
|
||||
DIST libclocale-alpha-20240107.tar.gz 525215 BLAKE2B b85b7b3f14e35c713c5c78973d310679cc8d87459be6bae068171d1ec56b151ba9d7e0e4979f0acaf75f5c8938676319dbe1cc58ad8806615fb3f9d18ebf11bd SHA512 0f112607aac634e4e990bead69cabd95bbaf92d187ade1dcf65c185b14b8c0690bd54c30cd4e74a47834273e5b200e023a4745302988a83313a8fddb4bcf533c
|
||||
|
|
|
|||
|
|
@ -1,43 +0,0 @@
|
|||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="Library for cross-platform C locale functions"
|
||||
HOMEPAGE="https://github.com/libyal/libclocale"
|
||||
SRC_URI="https://github.com/libyal/libclocale/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 x86"
|
||||
IUSE="nls unicode"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/libcerror[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