From 659e92a89a68a12cb4c32191160dcb3a6f2aae12 Mon Sep 17 00:00:00 2001 From: gryf Date: Wed, 12 Feb 2025 17:09:36 +0100 Subject: [PATCH] Added ebuild for cameractrls --- media-video/cameractrls/Manifest | 1 + .../cameractrls/cameractrls-9999.ebuild | 63 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 media-video/cameractrls/Manifest create mode 100644 media-video/cameractrls/cameractrls-9999.ebuild diff --git a/media-video/cameractrls/Manifest b/media-video/cameractrls/Manifest new file mode 100644 index 0000000..ece7549 --- /dev/null +++ b/media-video/cameractrls/Manifest @@ -0,0 +1 @@ +EBUILD cameractrls-9999.ebuild 1347 BLAKE2B 6593d0dbaee9f147b9d9194bf250a996b40a75aa59ceaba7546ab03720080f915ae9884ecd118c28a91dc5bef879259b18da8459b9285e89a1072622ebae9538 SHA512 5d7b76e96288748b1c30b9eb0b4733f38419f424bdbe4662901a7ccebc72fab3a3db4de06902b9fec8ad1c48744017b1ca1243bb1c9f1d12f9822fa089ab93b1 diff --git a/media-video/cameractrls/cameractrls-9999.ebuild b/media-video/cameractrls/cameractrls-9999.ebuild new file mode 100644 index 0000000..7cd4592 --- /dev/null +++ b/media-video/cameractrls/cameractrls-9999.ebuild @@ -0,0 +1,63 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{12..13} ) +DISTUTILS_USE_PEP517=setuptools + +inherit git-r3 distutils-r1 + +DESCRIPTION="Camera controls for Linux " +HOMEPAGE="https://github.com/soyersoyer/cameractrls" +EGIT_REPO_URI="https://github.com/gryf/cameractrls" +IUSE="-daemon doc gtk3 -gtk4 ptz view" + +LICENSE="LGPLv3+" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + gui-libs/gtk + =x11-libs/gtk+-3.22 + dev-python/pygobject[${PYTHON_USEDEP}] + media-libs/libsdl2 + dev-libs/libspnav +" +RDEPEND="${DEPEND}" +BDEPEND="" + +#python_compile(){ +#} +# +#python_install() { +# if use gtk4; then +# python_newscript cameractrlsgtk4.py cameractrlsgtk4 +# elif use gtk3; then +# python_newscript cameractrlsgtk.py cameractrlsgtk +# fi +# +# if use daemon; then +# python_newscript cameractrlsd.py cameractrlsd +# fi +# +# if use ptz; then +# python_newscript cameraptzgame.py cameraptzgame +# python_newscript cameraptzmidi.py cameraptzmidi +# python_newscript cameraptzspnav.py cameraptzspnav +# fi +# +# if use view; then +# python_newscript cameraview.py cameraview +# fi +# +# python_domodule pysvn +#} +# +#python_install_all() { +# use doc && local HTML_DOCS=( Docs/. ) +# if use examples; then +# docinto examples +# dodoc -r Examples/Client/. +# docompress -x /usr/share/doc/${PF}/examples +# fi +#}