gentoo-ebuilds/net-libs/libsrsirc/libsrsirc-0.0.14.1.ebuild
NHOrus e1b64664c4
net-libs/libsrsirc: add 0.0.14.1
Version bump that fixes C99 and musl compile problems.
Uses different website as tarball host, see
https://github.com/fstd/libsrsirc/issues/6#issuecomment-2081234589

Closes: https://bugs.gentoo.org/731260
Closes: https://bugs.gentoo.org/875275
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/40858
Signed-off-by: Sam James <sam@gentoo.org>
2025-03-10 01:34:10 +00:00

26 lines
589 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Lightweight, cross-platform IRC library"
HOMEPAGE="https://github.com/fstd/libsrsirc"
SRC_URI="https://kiwi.pr0.tips/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs ssl"
DEPEND="ssl? ( dev-libs/openssl:0= )"
RDEPEND="${DEPEND}"
src_configure() {
econf $(use_enable static-libs static) $(use_with ssl)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
mv "${ED}/usr/bin/icat" "${ED}/usr/bin/icat-lsi" || die
}