sys-libs/libhx: add 4.24

Signed-off-by: Hanno Böck <hanno@gentoo.org>
This commit is contained in:
Hanno Böck
2024-07-29 11:18:51 +02:00
parent 51a457d11e
commit 16546fcc39
2 changed files with 27 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST libHX-4.23.tar.xz 359608 BLAKE2B f14d7be69d3bedb78758e5705b196c0179a00f77e768802a3e19fd5b1bbbdc1d117c907718eb6d63e1aba33d2bc872b64a6dd550c9bf29c6ba47b09682829d69 SHA512 c19a2e8a2f84a81552258a58f47a55fd3f5c81a19d12cf7511c12a3a97bef051977f18cd82a004a825c20d4fd3b2c48f23ddbf9364a46b24faabcb94aa0167ff
DIST libHX-4.24.tar.xz 360816 BLAKE2B 9bde513041d33708dce34295cdc1d3a1f723178f5a6589c73fc6c2ed9399e3aebff5a3dc1df62691f56267c4769c16ebba88763d11cbece13204108641288aec SHA512 a8e87b7cb1f49bb119b2b7e3088045e1245390170b6e672ed5d3bbc1fd48bf2630b8b481e7589adb25e24b76ac8a0053ccdb6ba7d5b3cf945ccef5ab678ef521

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Platform independent library providing basic system functions"
HOMEPAGE="https://inai.de/projects/libhx/"
SRC_URI="https://inai.de/files/${PN}/libHX-${PV}.tar.xz"
S="${WORKDIR}/libHX-${PV}"
LICENSE="GPL-3"
SLOT="0/32" # soname version
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"
BDEPEND="app-arch/xz-utils"
src_install() {
default
if use doc; then
dodoc doc/*.txt doc/*.rst
fi
find "${ED}" -name "*.la" -delete || die
}