summaryrefslogtreecommitdiff
path: root/dev-cpp/simpleini/simpleini-4.24.ebuild
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-11-13 06:52:16 -0500
committerIonen Wolkens <ionen@gentoo.org>2025-11-13 07:09:33 -0500
commita081b36656ac80a479ced3816d1b8c4422d92c00 (patch)
tree586995414bde7fa648cc0df01898a265999d3ba4 /dev-cpp/simpleini/simpleini-4.24.ebuild
parent6591172c33f2c9c805e2cb2380afbf2dd576052b (diff)
downloadgentoo-a081b36656ac80a479ced3816d1b8c4422d92c00.tar.gz
gentoo-a081b36656ac80a479ced3816d1b8c4422d92c00.tar.bz2
gentoo-a081b36656ac80a479ced3816d1b8c4422d92c00.zip
dev-cpp/simpleini: add 4.24
Seems(?) 4.23 was done to have "old changes" before merging a bunch of build system changes into a follow up 4.24 almost right away. For us this shouldn't really change much though. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-cpp/simpleini/simpleini-4.24.ebuild')
-rw-r--r--dev-cpp/simpleini/simpleini-4.24.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-cpp/simpleini/simpleini-4.24.ebuild b/dev-cpp/simpleini/simpleini-4.24.ebuild
new file mode 100644
index 000000000000..3337d60a24a5
--- /dev/null
+++ b/dev-cpp/simpleini/simpleini-4.24.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="C++ library providing a simple API to read and write INI-style files"
+HOMEPAGE="https://github.com/brofield/simpleini/"
+SRC_URI="https://github.com/brofield/simpleini/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-cpp/gtest )"
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_TESTING=$(usex test)
+ #-DSIMPLEINI_BUILD_TESTS=$(usex test) # exists but unused?
+ -DSIMPLEINI_USE_SYSTEM_GTEST=yes
+ )
+
+ cmake_src_configure
+}