media-libs/olivecore: new package, add 9999

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2024-01-18 14:22:09 +02:00
parent 5bb78f3e41
commit eed5795993
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>parona@protonmail.com</email>
<name>Alfred Wingate</name>
</maintainer>
<upstream>
<remote-id type="github">olive-editor/core</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake git-r3
DESCRIPTION="Common components shared between Olive libraries"
HOMEPAGE="
https://olivevideoeditor.org/
https://github.com/olive-editor/core/
"
EGIT_REPO_URI="https://github.com/olive-editor/core/"
LICENSE="GPL-3"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND="
dev-libs/imath
media-libs/opentimelineio
>=media-video/ffmpeg-3.0:=
virtual/opengl
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DOLIVECORE_BUILD_TESTS=$(usex test)
)
cmake_src_configure
}