summaryrefslogtreecommitdiff
path: root/dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-08-17 08:12:12 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2021-08-17 08:12:12 +0000
commit65b67dff619cdbd5e8b3e9b14ffb28f03a2b56df (patch)
treee62431366681c46af0f93f1d5b0e1b2e6221f0fd /dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild
parent894feb4dcad43f60c61f12e12decb9801819ba80 (diff)
downloadbaldeagleos-repo-65b67dff619cdbd5e8b3e9b14ffb28f03a2b56df.tar.gz
baldeagleos-repo-65b67dff619cdbd5e8b3e9b14ffb28f03a2b56df.tar.xz
baldeagleos-repo-65b67dff619cdbd5e8b3e9b14ffb28f03a2b56df.zip
Adding metadata
Diffstat (limited to 'dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild')
-rw-r--r--dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild b/dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild
deleted file mode 100644
index c35d82cd5f21..000000000000
--- a/dev-cpp/yaml-cpp/yaml-cpp-0.7.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS="cmake"
-inherit cmake-multilib
-
-DESCRIPTION="YAML parser and emitter in C++"
-HOMEPAGE="https://github.com/jbeder/yaml-cpp"
-SRC_URI="https://github.com/jbeder/yaml-cpp/archive/${P}.tar.gz"
-S="${WORKDIR}/yaml-cpp-${P}"
-
-LICENSE="MIT"
-SLOT="0/0.7"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}/${P}-gtest.patch"
-)
-
-src_prepare() {
- rm -r test/gtest-* || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DYAML_BUILD_SHARED_LIBS=ON
- -DYAML_CPP_BUILD_TOOLS=OFF # Don't have install rule
- -DYAML_CPP_BUILD_TESTS=$(usex test)
- )
-
- cmake-multilib_src_configure
-}