mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
41 lines
720 B
Bash
41 lines
720 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic autotools
|
|
|
|
DESCRIPTION="Loki C++ library from Modern C++ Design"
|
|
HOMEPAGE="https://data-room-software.org/libferris/"
|
|
SRC_URI="https://downloads.sourceforge.net/witme/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
|
|
RDEPEND=">=dev-libs/libsigc++-2.6:2"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3.0.13-r3-configure-libsigc.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
append-cxxflags -std=c++11
|
|
|
|
econf
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# package provides .pc files
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|