1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-02-02 06:15:46 +01:00

Added ebuild for cameractrls

This commit is contained in:
2025-02-12 17:09:36 +01:00
parent 7fd70c9dea
commit 659e92a89a
2 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1 @@
EBUILD cameractrls-9999.ebuild 1347 BLAKE2B 6593d0dbaee9f147b9d9194bf250a996b40a75aa59ceaba7546ab03720080f915ae9884ecd118c28a91dc5bef879259b18da8459b9285e89a1072622ebae9538 SHA512 5d7b76e96288748b1c30b9eb0b4733f38419f424bdbe4662901a7ccebc72fab3a3db4de06902b9fec8ad1c48744017b1ca1243bb1c9f1d12f9822fa089ab93b1

View File

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