diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-07-26 02:57:39 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-07-26 02:57:39 +0100 |
commit | 24162508832f37f873ab12dfdfb191cf99318055 (patch) | |
tree | 3f9d1bac9025c4a823e0d7f948110aa74857baf8 /dev-cpp/simpleini | |
parent | 26262b314fa723a2e86f4a9b8b344a72eb9c0393 (diff) |
gentoo auto-resync : 26:07:2022 - 02:57:39
Diffstat (limited to 'dev-cpp/simpleini')
-rw-r--r-- | dev-cpp/simpleini/Manifest | 3 | ||||
-rw-r--r-- | dev-cpp/simpleini/metadata.xml | 11 | ||||
-rw-r--r-- | dev-cpp/simpleini/simpleini-4.19.ebuild | 40 |
3 files changed, 54 insertions, 0 deletions
diff --git a/dev-cpp/simpleini/Manifest b/dev-cpp/simpleini/Manifest new file mode 100644 index 000000000000..fd00a6b3fa64 --- /dev/null +++ b/dev-cpp/simpleini/Manifest @@ -0,0 +1,3 @@ +DIST simpleini-4.19.tar.gz 62793 BLAKE2B f32a25743c89f954a0b1cce2cb29584d63083922b9b56d91b39412617067f7316ecb897474a7f3a4d550569a0d007e51780d3532079966a7ba72e2b89ff5a5cc SHA512 3f0f3120aca3350bab66fe1727f4d15536d933a0840a17b49203c2220fab7ace4383d856c1b77a84f4e36c9a5df0c3eb937ad729c977f84e7163d7e2cff400c5 +EBUILD simpleini-4.19.ebuild 1047 BLAKE2B 8b42b57fb12829b371732053a92da37fa3cd3f40b2d57c0117a49816ecb6ccfcd983de5ccf5911a42509aaa9e39276a69fe876d54cb9b13501b53145d9409afa SHA512 7286e10c0ac599f4500ebb37ab4c40c5e933ebc9e734be28ff392fb26d2420065277fb67e9eefdff1245dc280d71d4a6ffc48b990d5c6261cac7215f78078740 +MISC metadata.xml 337 BLAKE2B fa98273f3b1289d766527689796a928b6ac1bb7d325aba1fe5ddd52683004bf083c272491976cf5751116c643926188af906dc3bbcb8e857ba3c12cc8b0567cd SHA512 cf72312d53f82f169c7bd3f78b9d29224e50c760f0bb0afe69d522969eadb8535c1085369daf11c6bfaa23310cba1bc0053ee997c3aa27103e457209a60be0af diff --git a/dev-cpp/simpleini/metadata.xml b/dev-cpp/simpleini/metadata.xml new file mode 100644 index 000000000000..3d8641a5fa36 --- /dev/null +++ b/dev-cpp/simpleini/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>games@gentoo.org</email> + <name>Gentoo Games Project</name> + </maintainer> + <upstream> + <remote-id type="github">brofield/simpleini</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-cpp/simpleini/simpleini-4.19.ebuild b/dev-cpp/simpleini/simpleini-4.19.ebuild new file mode 100644 index 000000000000..acd530cf090e --- /dev/null +++ b/dev-cpp/simpleini/simpleini-4.19.ebuild @@ -0,0 +1,40 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic toolchain-funcs + +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 )" +BDEPEND="test? ( virtual/pkgconfig )" + +src_compile() { + if use test; then + append-cppflags $($(tc-getPKG_CONFIG) --cflags gtest_main || die) + append-ldflags $(test-flags-CCLD -pthread) + append-libs $($(tc-getPKG_CONFIG) --libs gtest_main || die) + local emakeargs=( + {CC,CXX}="$(tc-getCXX)" + CXXFLAGS="${CXXFLAGS}" + CPPFLAGS="${CPPFLAGS}" + LDFLAGS="${LDFLAGS} ${LIBS}" + ) + emake -C tests "${emakeargs[@]}" + fi +} + +src_install() { + # note: skipping ConvertUTF, can use -DSI_CONVERT_ICU instead if needed + doheader SimpleIni.h + einstalldocs +} |