This commit is contained in:
Mario Fetka
2024-06-18 10:44:56 +02:00
parent 6a37474503
commit 20ef8b5c88
95 changed files with 4227 additions and 99 deletions

2
dev-libs/plog/Manifest Normal file
View File

@@ -0,0 +1,2 @@
DIST plog-1.1.9.tar.gz 47444 BLAKE2B 2358f0186379f323d7d5ff56e684865af3b65012f2c34752be42f205298c82229f4d10870b60312de9b8dd47852d80a72a2e5ccb7b214a899401eb8048f72c2f SHA512 d979fdf0011ef9bb94a2271da5d17058dbab5bc47438a13769d084fdebe5e169e7c05a043d69acceb752896df7cdae4433f32bfbcc81e055dffd9c701be88003
EBUILD plog-1.1.9.ebuild 514 BLAKE2B a9712e1f69a58a1ff197d6cb3b74238018216ca5f629097ee308335ca29265a512702680359c469f940feda432b7207c649e887f7c1d053f1537b28ab7204823 SHA512 51641f5607f63b29495093910e938573a01c4d11119f59ebf9b7a6b2d839cefff274b766a13628dc65ebf71e0091d67d91e08c4dceb4989ebfceb04d62ff1f6e

View File

@@ -0,0 +1,25 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Portable, simple and extensible C++ logging library"
HOMEPAGE="https://github.com/SergiusTheBest/plog"
SRC_URI="https://github.com/SergiusTheBest/plog/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
local mycmakeargs=(
-DPLOG_BUILD_SAMPLES=OFF
)
cmake_src_configure
}