diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 05:48:38 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 05:48:38 -0500 |
| commit | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (patch) | |
| tree | 0d7a74b4463ee387f9cf9368ceb1b757f694f72a /dev-cpp/sprout | |
| parent | f716a9fe6455d39eef01e718aae68dae61c19704 (diff) | |
| download | baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.gz baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.tar.xz baldeagleos-repo-bfd9c39e4712ebdb442d4ca0673061faed1e70e1.zip | |
Revert "Adding metadata"
This reverts commit f716a9fe6455d39eef01e718aae68dae61c19704.
Diffstat (limited to 'dev-cpp/sprout')
| -rw-r--r-- | dev-cpp/sprout/Manifest | 1 | ||||
| -rw-r--r-- | dev-cpp/sprout/files/optional_binaries.patch | 12 | ||||
| -rw-r--r-- | dev-cpp/sprout/metadata.xml | 15 | ||||
| -rw-r--r-- | dev-cpp/sprout/sprout-0_pre20190615-r1.ebuild | 36 |
4 files changed, 64 insertions, 0 deletions
diff --git a/dev-cpp/sprout/Manifest b/dev-cpp/sprout/Manifest new file mode 100644 index 000000000000..9cb51303732e --- /dev/null +++ b/dev-cpp/sprout/Manifest @@ -0,0 +1 @@ +DIST sprout-0_pre20190615.tar.gz 4997141 BLAKE2B bc7412a2c61c8f5fb5e37b0112c7f45e7ece1be3a5c02a4a72be4c39ab2297a9c75758b54dd81addc45d06c380f03c9c1976c588e67b1f0265486760ffd4b277 SHA512 b81c299842c48626a7fbedb5b70932623ddb128bd5c71115269253b2c82a331d4f5d5adeab24529be2c886d293de96c15c9641280b4eb31bd60379b284556900 diff --git a/dev-cpp/sprout/files/optional_binaries.patch b/dev-cpp/sprout/files/optional_binaries.patch new file mode 100644 index 000000000000..df6641f0fb53 --- /dev/null +++ b/dev-cpp/sprout/files/optional_binaries.patch @@ -0,0 +1,12 @@ +diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt +index a68233bf..ef38b570 100644 +--- a/tools/CMakeLists.txt ++++ b/tools/CMakeLists.txt +@@ -1 +1,6 @@ +-subdirs( compost darkroom )
++if (WITH_WAVCONV) ++ subdirs( compost ) ++endif() ++if (WITH_TEXCONV) ++ subdirs( darkroom ) ++endif() diff --git a/dev-cpp/sprout/metadata.xml b/dev-cpp/sprout/metadata.xml new file mode 100644 index 000000000000..284f28a44fca --- /dev/null +++ b/dev-cpp/sprout/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>m.santullo@posteo.net</email> + <name>Michele Santullo</name> + </maintainer> + <upstream> + <remote-id type="github">bolero-MURAKAMI/Sprout</remote-id> + </upstream> + <use> + <flag name="texconv">Install texconv from subproject compost</flag> + <flag name="wavconv">Install texconv from subproject darkroom</flag> + </use> +</pkgmetadata> diff --git a/dev-cpp/sprout/sprout-0_pre20190615-r1.ebuild b/dev-cpp/sprout/sprout-0_pre20190615-r1.ebuild new file mode 100644 index 000000000000..099fb90a8150 --- /dev/null +++ b/dev-cpp/sprout/sprout-0_pre20190615-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 2020-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +COMMIT="6b5addba9face0a6403e66e7db2aa94d87387f61" + +inherit cmake + +DESCRIPTION="C++11/14 constexpr based Containers, Algorithms, Random numbers and others" +HOMEPAGE="http://bolero-murakami.github.io/Sprout/" +SRC_URI="https://github.com/bolero-MURAKAMI/Sprout/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/Sprout-${COMMIT}" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="test texconv wavconv" +RESTRICT="!test? ( test )" + +DEPEND="dev-libs/boost:=" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/optional_binaries.patch +) + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTS=$(usex test ON OFF) + -DWITH_TEXCONV=$(usex texconv ON OFF) + -DWITH_WAVCONV=$(usex wavconv ON OFF) + ) + cmake_src_configure +} |
