mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/35472 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
27 lines
585 B
Bash
27 lines
585 B
Bash
# Copyright 1999-2024 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="http://penenen.de/${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
|
|
}
|