mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 13:03:31 -04:00
dev-libs/tweeny: EAPI-8
Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
This commit is contained in:
34
dev-libs/tweeny/tweeny-3.2.0-r1.ebuild
Normal file
34
dev-libs/tweeny/tweeny-3.2.0-r1.ebuild
Normal file
@@ -0,0 +1,34 @@
|
||||
# Copyright 2020-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="C++ tweening (inbetweening) library"
|
||||
HOMEPAGE="https://mobius3.github.io/tweeny/"
|
||||
SRC_URI="https://github.com/mobius3/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc"
|
||||
|
||||
BDEPEND="doc? ( app-text/doxygen )"
|
||||
|
||||
src_prepare() {
|
||||
cmake_src_prepare
|
||||
|
||||
if use doc; then
|
||||
sed -i 's@DESTINATION share/doc/Tweeny@DESTINATION ${CMAKE_INSTALL_DOCDIR}@' \
|
||||
doc/CMakeLists.txt || die "Could not change documentation path."
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local -a mycmakeargs=(
|
||||
-DTWEENY_BUILD_DOCUMENTATION=$(usex doc)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user