gentoo-ebuilds/app-arch/innoextract/innoextract-1.9.ebuild
Sam James 790d8f09f7
app-arch/innoextract: fix build w/ boost-1.85.0
Closes: https://bugs.gentoo.org/930495
Signed-off-by: Sam James <sam@gentoo.org>
2024-04-23 12:09:17 +01:00

38 lines
823 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="A tool to unpack installers created by Inno Setup"
HOMEPAGE="https://constexpr.org/innoextract/"
SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~m68k ppc64 x86"
IUSE="debug +iconv +lzma"
RDEPEND="
dev-libs/boost:=[bzip2,zlib]
iconv? ( virtual/libiconv )
lzma? ( app-arch/xz-utils )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-1.9-fix-linkage.patch"
"${FILESDIR}/${PN}-1.9-boost-1.85.0.patch"
)
src_configure() {
local mycmakeargs=(
-DDEBUG=$(usex debug)
-DSET_OPTIMIZATION_FLAGS=OFF
-DSTRICT_USE=ON
-DUSE_LZMA=$(usex lzma)
-DWITH_CONV=$(usex iconv iconv builtin)
)
cmake_src_configure
}