gentoo/dev-cpp/simpleini/simpleini-4.22-r1.ebuild
Ionen Wolkens 1e627a3d47
dev-cpp/simpleini: tidy a bit
- scrub patches
- pkgconfig patch is obsolete, does not matter with cmake
- can skip pkgconfig dep, always provided with cmake

Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
2024-04-21 14:05:42 -04:00

33 lines
700 B
Bash

# Copyright 2022-2024 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 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="test? ( dev-cpp/gtest )"
PATCHES=(
"${FILESDIR}"/${P}-include-dir.patch
"${FILESDIR}"/${P}-disable-tests.patch
)
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
-DSIMPLEINI_USE_SYSTEM_GTEST=yes
)
cmake_src_configure
}