gentoo-ebuilds/dev-cpp/elfio/elfio-3.12.ebuild
Kostadin Shishmanov ba2d0b8b9a
dev-cpp/elfio: fix build with gcc 15, remove CMake variable
Backport upstream commit [1] to fix build with gcc 15 and get rid of
CMake variable that is obsolete and is not getting used.

[1] 34d2c64

Closes: https://bugs.gentoo.org/881859
Closes: https://bugs.gentoo.org/937460
Signed-off-by: Kostadin Shishmanov <kostadinshishmanov@protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/41057
Signed-off-by: Sam James <sam@gentoo.org>
2025-03-13 12:04:44 +00:00

38 lines
764 B
Bash

# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="ELF reader/producer header-only C++ library"
HOMEPAGE="https://github.com/serge1/ELFIO"
SRC_URI="https://github.com/serge1/${PN}/archive/Release_${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN^^}-Release_${PV}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="test? ( dev-cpp/gtest )"
PATCHES=(
"${FILESDIR}"/${PN}-3.12-gnuinstalldirs-docdir.patch
"${FILESDIR}"/${PN}-3.12-gcc15.patch
)
src_configure() {
local mycmakeargs=(
-DELFIO_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}
src_install() {
cmake_src_install
rm "${ED}"/usr/share/doc/${PF}/LICENSE.txt || die
}