Files
linamh/dev-libs/plog/plog-1.1.11.ebuild
Mario Fetka 2224efd92e Add newer package versions from Portage
Added 60 new ebuilds with versions available in Portage:
- app-admin packages updated
- dev-libs updates (libcec, openssl-compat, plog)
- dev-qt packages bumped to 5.15.19 and 6.x series
- dev-embedded and various other categories updated
- All old versions kept for compatibility

This allows users to choose between stable and latest versions.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-27 20:44:57 +02:00

26 lines
514 B
Bash

# 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
}