mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 16:02:39 +01:00
Compare commits
80 Commits
eafb30728c
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
496ad1b3d3
|
|||
|
8b30000a2a
|
|||
|
07a5d9078f
|
|||
|
d57e0966f1
|
|||
|
aef0cf6bf8
|
|||
|
fa9978e315
|
|||
|
26158e1362
|
|||
|
ea9b748269
|
|||
|
6076fd73d7
|
|||
|
51427fe5c5
|
|||
|
f2c00cbc3a
|
|||
|
96890398a3
|
|||
|
4931e69d43
|
|||
|
35419a0a09
|
|||
|
d8d5e3ba69
|
|||
|
8decd0b0d4
|
|||
|
10de84f5c4
|
|||
|
dbf27b8b3e
|
|||
|
b6bcff8abe
|
|||
|
cab3a112af
|
|||
|
c3859dcfa8
|
|||
|
5a9b5cb19f
|
|||
|
b3dff781b9
|
|||
|
bf515db771
|
|||
|
64ba264c59
|
|||
|
b4d58eada1
|
|||
|
2443008441
|
|||
|
56b1e7da24
|
|||
|
a08b08e6c0
|
|||
|
34fde41d35
|
|||
|
91e3cf6022
|
|||
|
070b6f955a
|
|||
|
9dc0000ff1
|
|||
|
6b02bbeada
|
|||
|
565b4ee1b5
|
|||
|
e2db385ae3
|
|||
|
e226738e6f
|
|||
|
d95c4d20c0
|
|||
|
3437c4341b
|
|||
|
a7dd08e689
|
|||
|
a05c0c2a86
|
|||
|
f741c8c802
|
|||
|
c925b7a385
|
|||
|
c58da3c325
|
|||
|
8ba8ee2e82
|
|||
|
a68fbaa008
|
|||
|
71c2bb1cd7
|
|||
|
4e9da4ddab
|
|||
|
a996f9c231
|
|||
|
67a85565b4
|
|||
|
f7875188c6
|
|||
|
aaa497d532
|
|||
|
abb81fdd57
|
|||
|
549e2b8298
|
|||
|
26b285e26a
|
|||
|
fd8a222e09
|
|||
|
6e36160591
|
|||
|
b7929af35c
|
|||
|
7cb8cdfca0
|
|||
|
75280d7e46
|
|||
|
f69f212880
|
|||
|
d40bc39e19
|
|||
|
dd66d2cfc0
|
|||
|
4ed0d44b25
|
|||
|
d66e15cbd5
|
|||
|
e8521c0776
|
|||
|
06355fec1f
|
|||
|
892bfc0dd5
|
|||
|
1833966a7f
|
|||
|
2253f61ab5
|
|||
|
56434a465f
|
|||
|
6448eca3a6
|
|||
|
11946ff15a
|
|||
|
04917bba41
|
|||
|
dbcd4224c1
|
|||
|
a3c5a4e016
|
|||
|
ee61427d1f
|
|||
|
dbdc1f1109
|
|||
|
ef65c17bb5
|
|||
|
72ac1e9400
|
@@ -1 +1,2 @@
|
||||
DIST readpe-0.84.tar.gz 642372 BLAKE2B 59c326fad879c172c9b90964e2eb140fc4df2db3c7ee3b00324ed659fb8eb70c356036b3c601eaed6fc8e91dfc1ab29166383a5d7ded8b3d8970b601617c3f24 SHA512 facb4db30e46b05436888614302c784af543914f7aaa3c5a499352a6df71ea29c512f97304981a51f8e852a01ff95d1a3c7d885add86e8bb0c28cf805f7ed30b
|
||||
DIST readpe-0.85.1.tar.gz 648014 BLAKE2B e1d07b32fcb48f69f50b5777e07ac5bc9c1e9c9abfbcf35e7165da43b81431a6a80d7336932b2969a292c41f55b1bccd4959d9e71c449b2f941347bb6fca11c7 SHA512 3877b80657a707e4cf92cae665a643f05d3b712a31cdb16c2f0fee2b3088dd96539083aec0030f4b3f8a62ea071f1f71d5eec6fe480e640e4cdd72b534072432
|
||||
|
||||
35
app-forensics/readpe/readpe-0.85.1.ebuild
Normal file
35
app-forensics/readpe/readpe-0.85.1.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Multiplatform command line toolkit to work with PE binaries"
|
||||
HOMEPAGE="https://github.com/mentebinaria/readpe"
|
||||
SRC_URI="
|
||||
https://github.com/mentebinaria/readpe/archive/v${PV}.tar.gz
|
||||
-> ${P}.tar.gz
|
||||
"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="dev-libs/openssl"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${PN}-fix-manpages-compression.patch" )
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e '/^prefix/s#\([^=]*\).*$#\1= '"${EPREFIX}/usr"'#' \
|
||||
-e '/^libdir/s#\([^=]*\).*$#\1= /usr/'$(get_libdir)'#' \
|
||||
src/Makefile lib/libpe/Makefile || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC="$(tc-getCC)"
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
DIST piper-0.8.tar.gz 318558 BLAKE2B 170426c35899841a3317d0cd37d253fab524848fbe5ebf1c2e670c56c962bf9f7a39bccd1dea43bbf0d5c6a158e795df63e84ddb0422fec4fd92142d70fccbc8 SHA512 c0a05262262a1284911c976ab934653f8a3699066ef1d791669169c1e6c5db62dba0fcccc32d6bc68b996a2c2b8e96a6567761d01417a03d7dbb41010dd95cd8
|
||||
@@ -1,23 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
Piper is a graphical user interface to configure gaming mice.
|
||||
Configuration options include changing the resolution (DPI) of the
|
||||
mouse, adding and removing profiles, setting LED colors and changing
|
||||
button behaviors.
|
||||
|
||||
Piper requires <pkg>dev-libs/libratbag</pkg>’s ratbagd, the daemon to actually communicate with the
|
||||
mice. Piper is merely a front end to ratbagd, ratbagd must be
|
||||
installed and running when Piper is launched.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="github">libratbag/piper</remote-id>
|
||||
<bugs-to>https://github.com/libratbag/piper/issues</bugs-to>
|
||||
<doc lang="en">https://github.com/libratbag/piper/wiki</doc>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,69 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit meson python-single-r1 xdg
|
||||
|
||||
DESCRIPTION="GTK application to configure gaming devices"
|
||||
HOMEPAGE="https://github.com/libratbag/piper"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/libratbag/piper.git"
|
||||
else
|
||||
SRC_URI="https://github.com/libratbag/piper/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="test"
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
')
|
||||
test? (
|
||||
dev-libs/appstream
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/flake8[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
virtual/pkgconfig
|
||||
"
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
dev-libs/gobject-introspection
|
||||
>=dev-libs/libratbag-0.14
|
||||
gnome-base/librsvg[introspection]
|
||||
x11-libs/gdk-pixbuf[introspection]
|
||||
x11-libs/gtk+:3[introspection]
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/evdev[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
dev-python/pycairo[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[cairo,${PYTHON_USEDEP}]
|
||||
')
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
dev-libs/libevdev
|
||||
virtual/libudev
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
python_setup
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
python_optimize
|
||||
python_fix_shebang "${ED}"/usr/bin/
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
DIST libratbag-0.18.tar.gz 296737 BLAKE2B db691af43b3d2aeafcb31cdb4ce41504dd37a7a0a5a6d97bf2a3bee6840bbe49de25351990787436bc00a0dc80f5a20e31030069aa58ea8e38c7cad1029e39f8 SHA512 ae1796d738f7e448c6022c56cb876af5fb43e29b89fef31bbf42b9c838a07fd1d6cf94815dfde87dcd94a72bae159ca14624826b75cf83c988ba4c20340031cb
|
||||
@@ -1,13 +0,0 @@
|
||||
#!/sbin/openrc-run
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
description="system daemon to introspect and modify configurable mice"
|
||||
pidfile="/run/${SVCNAME}.pid"
|
||||
command="/usr/bin/ratbagd"
|
||||
start_stop_daemon_args="--quiet"
|
||||
command_background="true"
|
||||
|
||||
depend() {
|
||||
need dbus
|
||||
}
|
||||
@@ -1,108 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit meson python-single-r1 systemd udev
|
||||
|
||||
DESCRIPTION="Library to configure gaming mice"
|
||||
HOMEPAGE="https://github.com/libratbag/libratbag"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/libratbag/libratbag.git"
|
||||
else
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="doc elogind systemd test"
|
||||
REQUIRED_USE="
|
||||
${PYTHON_REQUIRED_USE}
|
||||
^^ ( elogind systemd )
|
||||
"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
dev-lang/swig
|
||||
virtual/pkgconfig
|
||||
doc? (
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/sphinx[${PYTHON_USEDEP}]
|
||||
dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
test? (
|
||||
dev-libs/check
|
||||
dev-libs/gobject-introspection
|
||||
dev-debug/valgrind
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/evdev[${PYTHON_USEDEP}]
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
"
|
||||
RDEPEND="
|
||||
${PYTHON_DEPS}
|
||||
acct-group/plugdev
|
||||
dev-libs/glib:2
|
||||
dev-libs/json-glib
|
||||
dev-libs/libevdev
|
||||
dev-libs/libunistring:=
|
||||
virtual/libudev:=
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||
dev-python/evdev[${PYTHON_USEDEP}]
|
||||
')
|
||||
elogind? ( sys-auth/elogind )
|
||||
systemd? ( sys-apps/systemd )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
dev-libs/gobject-introspection
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
if use elogind ; then
|
||||
# Fix systemd includes for elogind
|
||||
sed -i -e 's@include <systemd@include <elogind@' \
|
||||
ratbagd/ratbag*.c || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
python_setup
|
||||
|
||||
local emesonargs=(
|
||||
$(meson_use doc documentation)
|
||||
$(meson_use systemd)
|
||||
$(meson_use test tests)
|
||||
-Ddbus-group="plugdev"
|
||||
-Dlogind-provider=$(usex elogind elogind systemd)
|
||||
-Dsystemd-unit-dir="$(systemd_get_systemunitdir)"
|
||||
-Dudev-dir="${EPREFIX}$(get_udevdir)"
|
||||
)
|
||||
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
python_fix_shebang "${ED}"/usr/bin/
|
||||
newinitd "${FILESDIR}"/ratbagd.init ratbagd
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z "${REPLACING_VERSIONS}" ]] ; then
|
||||
elog 'You need to be in "plugdev" group in order to access the'
|
||||
elog 'ratbagd dbus interface'
|
||||
fi
|
||||
elog 'You may be required to create and/or be part of the "games" group if you intend on using piper'
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">libratbag/libratbag</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
35
licenses/INTEL-IPU
Normal file
35
licenses/INTEL-IPU
Normal file
@@ -0,0 +1,35 @@
|
||||
Copyright (c) Intel Corporation
|
||||
|
||||
Redistribution. Redistribution and use in binary form, without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions must reproduce the above copyright notice and the
|
||||
following disclaimer in the documentation and/or other materials
|
||||
provided with the distribution.
|
||||
* Neither the name of Intel Corporation nor the names of its suppliers
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
* No reverse engineering, decompilation, or disassembly of this software
|
||||
is permitted.
|
||||
|
||||
Limited patent license. Intel Corporation grants a world-wide,
|
||||
royalty-free, non-exclusive license under patents it now or hereafter
|
||||
owns or controls to make, have made, use, import, offer to sell and
|
||||
sell ("Utilize") this software, but solely to the extent that any
|
||||
such patent is necessary to Utilize the software alone. The patent
|
||||
license shall not apply to any other combinations which include this
|
||||
software. No hardware per se is licensed hereunder.
|
||||
|
||||
DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||||
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
|
||||
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
||||
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGE.
|
||||
@@ -1 +1,2 @@
|
||||
DIST Twemoji-16.0.1.ttf 3382500 BLAKE2B 1d3e20ab6b4561baf33584cff76c387d457d35424b3fd5f99d4fa74351b4028d9d88a18710ef4c6dc6285fa595a2c440824a265b00e85f923860c7f6057a8a47 SHA512 454d6b0947f3a6e8d8f59037e90f3965f2f34dfd8ee22512b0425d6fbfeb97b88b2013a21c4d632aa77e48b133729f253a2f9a7ad2b9c6fd60168b4e49a99305
|
||||
DIST twitter-twemoji-fonts-14.0.2-2.fc37.noarch.rpm 2775594 BLAKE2B 91b9d914f0013dc1e5f42e98b58986810d782500c7b7c4522f4c22a4030f1ffe4762a43e8ccd502ff5759085b06a25a2a6f283f52ea3d2c3936ff2c23ad96dd9 SHA512 37ca9750ec83d9dea91a6aa8642fbf54c4af6c9c8d0635205ed8d7e7902c3851b14a1b12b304054c4d6bae642af33503aaf7957262d48df389687f168c0dfbee
|
||||
|
||||
25
media-fonts/twemoji-ttf/twemoji-ttf-16.0.1.ebuild
Normal file
25
media-fonts/twemoji-ttf/twemoji-ttf-16.0.1.ebuild
Normal file
@@ -0,0 +1,25 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit font
|
||||
|
||||
MY_PN="${PN%-ttf}"
|
||||
|
||||
DESCRIPTION="Twitter Emoji for everyone"
|
||||
HOMEPAGE="https://github.com/jdecked/twemoji/"
|
||||
SRC_URI="https://distfiles.alpinelinux.org/distfiles/edge/${MY_PN^}-${PV}.ttf"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT CC-BY-4.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
FONT_CONF=( "${FILESDIR}/75-${MY_PN}.conf" )
|
||||
FONT_SUFFIX="ttf"
|
||||
|
||||
src_unpack() {
|
||||
cp "${DISTDIR}/${A}" "${S}/${MY_PN^}.${FONT_SUFFIX}" || die
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
DIST loupe-46.2.tar.xz 27350652 BLAKE2B ce8b3db804517c5ea0051c1f17cea6957a0e1ec201d9a3312b31e216c6ba0cdc094053384fb2c8b809e59c860a34e8579cf51f3354b43427971f5b4099f211c7 SHA512 b857fcb22ba610b754cc8386a8604ef9edfb35495c1e3c2b4063c290ba61d9f3d1d8ee5535ea706b76830bd3b8ceb6e9cf58babb890e0cfab486d332b8eb4457
|
||||
@@ -1,51 +0,0 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cargo gnome.org gnome2-utils meson xdg
|
||||
|
||||
DESCRIPTION="An image viewer application written with GTK 4, Libadwaita and Rust"
|
||||
HOMEPAGE="https://apps.gnome.org/Loupe/"
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
# Dependent crate licenses
|
||||
LICENSE+="
|
||||
Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 MIT
|
||||
Unicode-DFS-2016
|
||||
|| ( LGPL-2.1+ MPL-2.0 )
|
||||
"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
DEPEND="
|
||||
>=gui-libs/gtk-4.13.6:4
|
||||
>=gui-libs/libadwaita-1.4.0
|
||||
>=dev-libs/libgweather-4.2.0
|
||||
>=media-libs/lcms-2.12.0:2
|
||||
>=sys-libs/libseccomp-2.5.0
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
>=media-libs/glycin-loaders-1.1.2
|
||||
"
|
||||
BDEPEND="${DEPEND}"
|
||||
|
||||
ECARGO_VENDOR="${S}/vendor"
|
||||
|
||||
src_configure() {
|
||||
meson_src_configure
|
||||
ln -s "${CARGO_HOME}" "${BUILD_DIR}/cargo-home" || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_schemas_update
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_schemas_update
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
}
|
||||
2
media-libs/ipu7-camera-bins/Manifest
Normal file
2
media-libs/ipu7-camera-bins/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST ipu7-camera-bins-0_p20250928.tar.gz 8811014 BLAKE2B a520aab04a6f917a71d498637df6b97b86d85096ffee133261bb8429aed6f8a04cb05c552ec6ea6434e02cfed496a5713af6e9539ce079d11f276522b5420c71 SHA512 78c4d5363fb00161dc3a7d7d3eab67c13411d3676a1b8757027a49abc21a1563f8eee2417ebc3cfe0afe639f637df4e9d649b5ae140539002467f1f82b9ad454
|
||||
DIST ipu7-camera-bins-0_p20251112.tar.gz 8815760 BLAKE2B ef96fa8d5e087584ccc6810aa83e91bf8118078c0b3397fd9e2afec2de4cd59f358ed1c8a0248e8fab7e02d55708de3423f297dc715d504583b0161b37631ff5 SHA512 8b746ac54d83bd91dbfd469e1298b4c960def102870d9da5e2ef7d874a4ba2c5e3116fbab6c50a9a919d96125b71f5c553790528fd16f18069c8e703140dd49f
|
||||
@@ -0,0 +1,39 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
COMMIT_ID="09ccd020d5d1aa34b91e9f30b01a4166dd31f51b"
|
||||
|
||||
DESCRIPTION="Intel IPU7 MIPI camera proprietary image processing libraries"
|
||||
HOMEPAGE="https://github.com/intel/ipu7-camera-bins"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="INTEL-IPU"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RESTRICT="elibc_musl"
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e '/^libdir=/s#.*#libdir=${prefix}/'$(get_libdir)'#g' \
|
||||
lib/pkgconfig/*.pc || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dolib.so lib/libia_*
|
||||
|
||||
insinto /usr/$(get_libdir)/pkgconfig
|
||||
doins lib/pkgconfig/ia_imaging-ipu7*.pc
|
||||
|
||||
insinto /usr/include/ipu7x/ia_imaging
|
||||
doins include/ipu7x/ia_imaging/*.h
|
||||
|
||||
insinto /usr/include/ipu75xa/ia_imaging
|
||||
doins include/ipu75xa/ia_imaging/*.h
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
COMMIT_ID="b7ebe7949329d8022e5cec0085f8c183bfdeb501"
|
||||
|
||||
DESCRIPTION="Intel IPU7 MIPI camera proprietary image processing libraries"
|
||||
HOMEPAGE="https://github.com/intel/ipu7-camera-bins"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="INTEL-IPU"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RESTRICT="elibc_musl"
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e '/^libdir=/s#.*#libdir=${prefix}/'$(get_libdir)'#g' \
|
||||
lib/pkgconfig/*.pc || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dolib.so lib/libia_*
|
||||
|
||||
insinto /usr/$(get_libdir)/pkgconfig
|
||||
doins lib/pkgconfig/ia_imaging-ipu7*.pc
|
||||
|
||||
insinto /usr/include/ipu7x/ia_imaging
|
||||
doins include/ipu7x/ia_imaging/*.h
|
||||
|
||||
insinto /usr/include/ipu75xa/ia_imaging
|
||||
doins include/ipu75xa/ia_imaging/*.h
|
||||
}
|
||||
11
media-libs/ipu7-camera-bins/metadata.xml
Normal file
11
media-libs/ipu7-camera-bins/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">intel/ipu7-camera-bins</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
2
media-libs/ipu7-camera-hal/Manifest
Normal file
2
media-libs/ipu7-camera-hal/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST ipu7-camera-hal-0_p20250929.tar.gz 3640619 BLAKE2B 9e5aa1283fa2735edf286669d1c6e27d2f4b918ef28f61d521aaf0d7a3a6940e6afa725ba413ebbd692fe02edf68c39a0c7e5d9ee66e66e01acde06667ef427a SHA512 c624b7ebf256278efd08e79e439e1bae62ee044dd14aac482b9b971bc94060376ff854c3ef8a5d9da1dd0e1cb349f8c860b2d881c52bd61ff3512e8c2f72c0aa
|
||||
DIST ipu7-camera-hal-0_p20251112.tar.gz 3645224 BLAKE2B aabcc94db3d08ffe842e33c89e2224d20d05ea4c250b7ae2b887aa62440c3460bd944f3c0ef5a2c14dd94b7e933a871c8ecf2c26dabc239a2ab57a04abe068dc SHA512 41367a1b6bf449fe2f55f8ede56434fa8ee32e157d80913bb283790c5574716f62540be0fab3bb8c3d0b5d495c9ad692dcf5fbebfc7af72de02b2e452f42ca29
|
||||
@@ -0,0 +1,2 @@
|
||||
# Remove the 'uaccess' tag from ipu7 video4linux devices to avoid the application like Cheese seeing them.
|
||||
SUBSYSTEM=="video4linux", ENV{ID_V4L_PRODUCT}=="ipu7", TAG-="uaccess"
|
||||
@@ -0,0 +1,48 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
COMMIT_ID="feed9155372c0ba5543ca0c04052bdd71ed8b031"
|
||||
|
||||
DESCRIPTION="Intel IPU7 MIPI camera HAL"
|
||||
HOMEPAGE="https://github.com/intel/ipu7-camera-hal"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/expat
|
||||
dev-libs/jsoncpp
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-base:1.0
|
||||
media-libs/ipu7-camera-bins
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e '/cmake_minimum_required/s#2\.8#3.5#1' \
|
||||
CMakeLists.txt || die
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_CAMHAL_ADAPTOR=ON
|
||||
-DBUILD_CAMHAL_PLUGIN=ON
|
||||
-DIPU_VERSIONS="ipu7x;ipu75xa"
|
||||
-DUSE_STATIC_GRAPH=ON
|
||||
-DUSE_STATIC_GRAPH_AUTOGEN=ON
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
@@ -0,0 +1,60 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake udev
|
||||
|
||||
COMMIT_ID="affeb2200bfa61f98ef4be08ff046767d40fcedf"
|
||||
|
||||
DESCRIPTION="Intel IPU7 MIPI camera HAL"
|
||||
HOMEPAGE="https://github.com/intel/ipu7-camera-hal"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/expat
|
||||
dev-libs/jsoncpp
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-base:1.0
|
||||
media-libs/ipu7-camera-bins
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e '/cmake_minimum_required/s#2\.8#4.0#1' \
|
||||
CMakeLists.txt || die
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_CAMHAL_ADAPTOR=ON
|
||||
-DBUILD_CAMHAL_PLUGIN=ON
|
||||
-DIPU_VERSIONS="ipu7x;ipu75xa"
|
||||
-DUSE_STATIC_GRAPH=ON
|
||||
-DUSE_STATIC_GRAPH_AUTOGEN=ON
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
udev_dorules "${FILESDIR}"/72-intel-mipi-ipu7-camera.rules
|
||||
cmake_src_install
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
udev_reload
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
udev_reload
|
||||
}
|
||||
11
media-libs/ipu7-camera-hal/metadata.xml
Normal file
11
media-libs/ipu7-camera-hal/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">intel/ipu7-camera-hal</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +1,3 @@
|
||||
DIST libcamera-v0.4.0.tar.bz2 1315742 BLAKE2B 284bffbaf9f5e7235c9835717c601d346fbb67c326e4a4f42281a4da2d75cc915166f7fd3267f0dc87eda883ecff684c51338ed5212427a7f24b27ba9c8056f0 SHA512 dd097461cc5bc834cdd6c43e872a32aee55ee7276b850600d705461aa9279144163b6d0374a63b27bec3f866973d4a44a9f89eacf1d40468a33faec1ffbc75b4
|
||||
DIST libcamera-v0.5.0.tar.bz2 1451501 BLAKE2B f1086a84eb0d6a3c99a86eb233d5b524c7c9b3889588e2c099fe8924ff256b90b91251cf470fd3dacd71005ba3f9e27829d0d70f2d0cb269735aa321880995f4 SHA512 a1520929cf77ba88a101e64e37c5400572e47422c5bf5a57a5b17915ba87ab4a62f3e4f8119bc3ddde91aaaf8425fe5406b24e6c72fb7e0bea47f168b8d7e1c8
|
||||
DIST libcamera-v0.5.2.tar.bz2 1495582 BLAKE2B 84bf2236d4b124047abcd3893622d1656ac57a1b1f3d88e67cefb346541b75f0b34e7d9780349cee761af98f02b4988e6d5c8e4f2a446e17028ef150b7512669 SHA512 c10bd6921cd5307dc88b7f710fd2e69c69b8c90dab2ca29c8e45e3dc5703335a6b5e7482e9de950bf56d25f2482f4640a35f29715f7e30bc02ad1a9167dd98fd
|
||||
|
||||
105
media-libs/libcamera/libcamera-0.5.0.ebuild
Normal file
105
media-libs/libcamera/libcamera-0.5.0.ebuild
Normal file
@@ -0,0 +1,105 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..13} )
|
||||
|
||||
inherit meson python-single-r1
|
||||
|
||||
DESCRIPTION="An open source camera stack and framework for Linux, Android, and ChromeOS"
|
||||
HOMEPAGE="https://libcamera.org/"
|
||||
SRC_URI="https://gitlab.freedesktop.org/camera/libcamera/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
LICENSE="LGPL-2.1+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="+app debug gstreamer python qt6 trace udev unwind v4l"
|
||||
#IUSE=+" doc test"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/libyaml:=
|
||||
|| (
|
||||
dev-libs/openssl
|
||||
net-libs/gnutls
|
||||
)
|
||||
app? (
|
||||
dev-libs/libevent:=
|
||||
x11-libs/libdrm:=
|
||||
media-libs/libjpeg-turbo:=
|
||||
media-libs/libsdl2
|
||||
)
|
||||
debug? ( dev-libs/elfutils:= )
|
||||
gstreamer? (
|
||||
media-libs/gstreamer:=
|
||||
media-libs/gst-plugins-base )
|
||||
qt6? (
|
||||
dev-qt/qtbase[gui,opengl,widgets]
|
||||
media-libs/tiff
|
||||
)
|
||||
python? (
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/jinja2[${PYTHON_USEDEP}]
|
||||
dev-python/ply[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
trace? ( dev-util/lttng-ust:= )
|
||||
udev? ( virtual/libudev )
|
||||
unwind? ( sys-libs/libunwind:= )
|
||||
"
|
||||
#BDPEND="
|
||||
# doc? (
|
||||
# app-text/doxygen[dot]
|
||||
# dev-python/sphinx
|
||||
# dev-texlive/texlive-latexextra
|
||||
# )
|
||||
#"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
trace? ( dev-util/lttng-tools )
|
||||
"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
src_prepare() {
|
||||
if use python; then
|
||||
sed -i -e \
|
||||
"/^destdir =/s#=.*#= '$(python_get_sitedir)/libcamera'#g" \
|
||||
src/py/libcamera/meson.build || die
|
||||
fi
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
-Dandroid=disabled
|
||||
$(meson_feature app cam)
|
||||
# Building documentation is broken
|
||||
# $(meson_feature doc documentation)
|
||||
-Ddocumentation=disabled
|
||||
$(meson_feature gstreamer)
|
||||
$(meson_feature python pycamera)
|
||||
$(meson_feature qt6 qcam)
|
||||
$(meson_feature udev)
|
||||
# Depend on libyuv
|
||||
# $(meson_use test)
|
||||
-Dtest=false
|
||||
-Dpipelines=imx8-isi,ipu3,mali-c55,rkisp1,rpi/vc4,simple,uvcvideo,vimc
|
||||
-Dbuildtype=$(usex debug debug plain)
|
||||
$(meson_feature v4l v4l2)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
if use python; then
|
||||
python_optimize "${D}/$(python_get_sitedir)/libcamera"
|
||||
fi
|
||||
}
|
||||
105
media-libs/libcamera/libcamera-0.5.2.ebuild
Normal file
105
media-libs/libcamera/libcamera-0.5.2.ebuild
Normal file
@@ -0,0 +1,105 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..13} )
|
||||
|
||||
inherit meson python-single-r1
|
||||
|
||||
DESCRIPTION="An open source camera stack and framework for Linux, Android, and ChromeOS"
|
||||
HOMEPAGE="https://libcamera.org/"
|
||||
SRC_URI="https://gitlab.freedesktop.org/camera/libcamera/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
LICENSE="LGPL-2.1+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="+app debug gstreamer python qt6 trace udev unwind v4l"
|
||||
#IUSE=+" doc test"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/libyaml:=
|
||||
|| (
|
||||
dev-libs/openssl
|
||||
net-libs/gnutls
|
||||
)
|
||||
app? (
|
||||
dev-libs/libevent:=
|
||||
x11-libs/libdrm:=
|
||||
media-libs/libjpeg-turbo:=
|
||||
media-libs/libsdl2
|
||||
)
|
||||
debug? ( dev-libs/elfutils:= )
|
||||
gstreamer? (
|
||||
media-libs/gstreamer:=
|
||||
media-libs/gst-plugins-base )
|
||||
qt6? (
|
||||
dev-qt/qtbase[gui,opengl,widgets]
|
||||
media-libs/tiff
|
||||
)
|
||||
python? (
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/jinja2[${PYTHON_USEDEP}]
|
||||
dev-python/ply[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
trace? ( dev-util/lttng-ust:= )
|
||||
udev? ( virtual/libudev )
|
||||
unwind? ( sys-libs/libunwind:= )
|
||||
"
|
||||
#BDPEND="
|
||||
# doc? (
|
||||
# app-text/doxygen[dot]
|
||||
# dev-python/sphinx
|
||||
# dev-texlive/texlive-latexextra
|
||||
# )
|
||||
#"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
trace? ( dev-util/lttng-tools )
|
||||
"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
src_prepare() {
|
||||
if use python; then
|
||||
sed -i -e \
|
||||
"/^destdir =/s#=.*#= '$(python_get_sitedir)/libcamera'#g" \
|
||||
src/py/libcamera/meson.build || die
|
||||
fi
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
-Dandroid=disabled
|
||||
$(meson_feature app cam)
|
||||
# Building documentation is broken
|
||||
# $(meson_feature doc documentation)
|
||||
-Ddocumentation=disabled
|
||||
$(meson_feature gstreamer)
|
||||
$(meson_feature python pycamera)
|
||||
$(meson_feature qt6 qcam)
|
||||
$(meson_feature udev)
|
||||
# Depend on libyuv
|
||||
# $(meson_use test)
|
||||
-Dtest=false
|
||||
-Dpipelines=imx8-isi,ipu3,mali-c55,rkisp1,rpi/vc4,simple,uvcvideo,vimc
|
||||
-Dbuildtype=$(usex debug debug plain)
|
||||
$(meson_feature v4l v4l2)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
if use python; then
|
||||
python_optimize "${D}/$(python_get_sitedir)/libcamera"
|
||||
fi
|
||||
}
|
||||
@@ -1,3 +1,2 @@
|
||||
DIST libdjinterop-0.20.2.tar.gz 2463629 BLAKE2B 47c2b778d3ecdd07e0af5a37c7f63dd73f0c3b58c99f4127a0a7dbc99fd67154af2b55211c11e0e4e634f1adc4230ab4ea5ed9587bbd6cf20ea937698454007b SHA512 591cbf8102e16b11337ec25ad90ef035bf65dbbd18591802d959044874f36bb61bce3d5db974b00ecee14b45c7ea2488542b226d823d9087c92a0b452d804ff3
|
||||
DIST libdjinterop-0.21.0.tar.gz 2465629 BLAKE2B b360f290ac4d074003fdb02bd4080d6178b9d34e14f0d95d2c0e8aa5880ea20f71fd80c6d272a605d55a356b2c62fc1cf073e3462d50a5d50e229141a8d10796 SHA512 c2784ffc6b0ddc9ad92a227621bb00cd1c88aa8f8abe82401774102f9be16dfbe9f0745523d517594faecba60b650a53613c7867afe57e6bcd8a2cc6288dd9ff
|
||||
DIST libdjinterop-0.22.1.tar.gz 2468994 BLAKE2B 0b49d5fc02d8f8c4b05f9e1f7c0eaf49250f92c1446399a348155dc53fa8f6a57c630ef4bbabed143dd223d3569f4af3edf60cbee2b31626125222f3aa83c16c SHA512 1c35d8609342f133cf002d1908d5746c411a9d5e74b42a7ec045545f07a3f4b8a89ce9a95d2fc17edd8970facafbee1b6d8a9283fcd8c74c9cb96ff61f15d47d
|
||||
DIST libdjinterop-0.24.3.tar.gz 2495467 BLAKE2B 6a5fdd7e622913da6c86545704d76d1839b8eaafb36d099ca32dc42b7984ba4399bf4e1489f21b945c1f2020451f1afa5aa95d42568c74cbd4dd654090405ced SHA512 8107f2e6461c6c8f45592caf90b3a0775330960bc565724a53ae91b39f7911dab52725b6993182c0bc663c588acab6ee9e58a3c10426bf2d81a801bcfe540569
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="C++ library for DJ record libraries"
|
||||
HOMEPAGE="https://github.com/xsco/libdjinterop"
|
||||
SRC_URI="https://github.com/xsco/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
|
||||
IUSE="test"
|
||||
|
||||
DEPEND="
|
||||
dev-db/sqlite
|
||||
sys-libs/zlib
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
${DEPEND}
|
||||
test? ( dev-libs/boost )
|
||||
"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DCMAKE_SKIP_BUILD_RPATH=ON
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
1
media-plugins/gst-plugins-icamera/Manifest
Normal file
1
media-plugins/gst-plugins-icamera/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST gst-plugins-icamera-0_p20250926.tar.gz 108630 BLAKE2B e3e768e9a651e00bb722ca3f3841f832351cb6a48d8887d38f16b569ca7cb5ed29f311c2958a13c2996f5e31c77231883ba24876ffb0a68d34c534907f5bb518 SHA512 72b52de96839fa807557a18d114bb32d241a433ad5df7389a5986839a338a7913d5947f3c09b440b10e88fa12ab2be3de64700b95f4ff185eff6bc0d6622212a
|
||||
@@ -0,0 +1,46 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
COMMIT_ID="4fb31db76b618aae72184c59314b839dedb42689"
|
||||
|
||||
DESCRIPTION="icamera plugin for GStreamer"
|
||||
HOMEPAGE="https://github.com/intel/icamerasrc/tree/icamerasrc_slim_api"
|
||||
|
||||
SRC_URI="https://github.com/intel/icamerasrc/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}//icamerasrc-${COMMIT_ID}"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-bad:1.0
|
||||
media-libs/ipu7-camera-bins
|
||||
media-libs/ipu7-camera-hal
|
||||
media-libs/libva
|
||||
x11-libs/libdrm[video_cards_intel]
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
export CHROME_SLIM_CAMHAL=ON
|
||||
econf --enable-gstdrmformat=yes
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
find "${D}" -name '*.la' -delete || die
|
||||
}
|
||||
11
media-plugins/gst-plugins-icamera/metadata.xml
Normal file
11
media-plugins/gst-plugins-icamera/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">intel/icamerasrc</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -20,7 +20,6 @@ SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="media-tv/kodi"
|
||||
DEPEND="media-tv/kodi"
|
||||
|
||||
src_install() {
|
||||
|
||||
@@ -20,7 +20,6 @@ SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="media-tv/kodi"
|
||||
DEPEND="media-tv/kodi"
|
||||
|
||||
src_prepare() {
|
||||
|
||||
@@ -1,28 +1,5 @@
|
||||
DIST mixxx-2.4.2.tar.gz 41883619 BLAKE2B d16c0e857b23cdbd0c1c127fad9b5d5621d77a3febfddc11402d38b4cb03b3daf8baa07a063a384e5fdefe47e385af565b1f884af2a624907585dcc5e4fb3772 SHA512 f6478012ba5fbfd4125838e78657d681ace7d9e4eb3f18534d550cd90ce2663952d7780675993d2cb2ff81683004f9cea19827dd2d6ead87b5029326689e6b3a
|
||||
DIST mixxx-2.5.0.tar.gz 39580922 BLAKE2B e5c5aa02a4b13228857eb620ad174144562d7b4675a40565fda1e641138e0e65dbb2bbe8c7fb32ead242a5bdf8581368ea604c93afbfc5c991ac92065e7bdae7 SHA512 ee3c682d40267358025aba5bfdc378fee1cb6691dc899280132f7e69d315b9ce3d8568ca182752bac96a38310c2f2d71ddc80eea4448b8b32bf6ec6a61a9d608
|
||||
DIST mixxx-manual-2.4-ca.pdf 36481947 BLAKE2B eddefff243cade2ac591f0b410e624c949cb079b488196280fb41c748d10ed39c0d43ebcc57d8b155b5b2e503a895dad494b2dc95d561cd22786fa3f4b72af9c SHA512 aad232259ae0844141454c521a9df95fa8184ad46d89a63c48864294d948c6e1785508ac705fad0467bde235defd7bc91758a45eac15bd84e48b9f803b28e0db
|
||||
DIST mixxx-manual-2.4-cs.pdf 8535025 BLAKE2B 94d0f6978adda16b48703f26a43f57730243babc0436b3f7893e699806991f090e36e46edee476540874994818e01206eb6a3450c269e83e525d0cb2ef08268f SHA512 ab22c99c254e32270f59bbbc1f8b1dc6d4c7138651eedefcc62597b7aadf0cd4cbeb925ae1f3b322791b6941c962c7c51db4150dcb367e5f1387a07c2352a4bf
|
||||
DIST mixxx-manual-2.4-de.pdf 36469095 BLAKE2B 7f3375b2a1254d48297198ff99d6b416024e733b2825bb0af87fd88bfb45ffc0fa88022649cb45bb7dab7d89456ad0de4fe7dba0f21488b376d36d3827ff5a25 SHA512 62b8163edf1b3a1779ceecf955fc17d55d852a56875fbea0b3b971754c9f365bea35717e96a7347111bd32776e7383bbe0c5025c04652fd07a83664c0f45bbcc
|
||||
DIST mixxx-manual-2.4-en.pdf 36455188 BLAKE2B c995565571ce4b167d41002ca4649948234394c7e2ed9b31890e045a284d23417d8b124f031387d8ed0d447264af7321d878e01338b01fb4daf35ed19fce6651 SHA512 69f14a8df2f11f4089ce841314e1998c8f818e3bd4c36b43506480dd077606d92107abf50b4ca67861cb345fca2fcba49a9db17878b5cb99cc1ebcb41ae659fa
|
||||
DIST mixxx-manual-2.4-es.pdf 36465267 BLAKE2B 67b8098c47edcd22fe7febd88b6b07a9d51dfa63d99d1c47bca4e4bad8ee5ad288b36d1dbe3adf98f5deb96dcc2acb0c87659b0861bebfa71af263b26bd31933 SHA512 314eee85de38a26a4db48a86c345f97525c6359bc31c876275b7cba766715bcf13e18beb62833a6b1bd972ff084fe4dc8d7b8245c515459a2094d4df0f4d302d
|
||||
DIST mixxx-manual-2.4-fi.pdf 36461259 BLAKE2B 3b651ebdaa547eae14c680e93e2c2b6b0b616fabc4194b38de88c265ccf57eca3f60d8a40d31fb4b21964cdb0c9a71799ef96f03cb270fd0900d36a11f394cfd SHA512 aba6728372e664014f5d05b29c7e98b6a8a1f1fda9a039ce42def52106ce3b30a8da53c7c49f26a8ba197e6b4c3b1fcab67bf83d0414f6839a30ed7ba8bc2975
|
||||
DIST mixxx-manual-2.4-fr.pdf 36522979 BLAKE2B 5efbc6c2f68644a97b53ec1db5ed52cf15f0e014f1ca37538fb4e34b0cc52605a012461f63af39a52b245d41f03cd28448ab1848d5fa758d5b0e7145dc4f95af SHA512 4657cb26684036dc30c4257ec83ae6d72f8894e3ba93606d56784aba4b4ad8eb6412b864f38c4e02ca9be2ebdb95b907307b9d646441e0c5020a0decf8014135
|
||||
DIST mixxx-manual-2.4-gl.pdf 36459062 BLAKE2B afb54559b6f8f1f2c4e47b8d7af28093f33cd839f07482b469a9200fd9508b09c9ae263363e558e495a37ad2fdc0a318b405ca3c9aaf5955198b89460ec467a5 SHA512 a8c79446457bcc519d987ed3686833644c4cd0a3cee3babca090abaeb23c2628dda3976b0299ccaf961b8b9e4eaeb12e42cece7d948857f0927491f18611d299
|
||||
DIST mixxx-manual-2.4-id.pdf 36461627 BLAKE2B e7e7912003d94b7d7ffded0edadf64cac9770121b7194120cbb01f992c65807df3b5f11a0c29217d986e991bf948003d29c4d7ef2bac8c240ee18244a96eed83 SHA512 fa83abe922076bb251bb8bdb22b01111fe0af40e1427bdf140b343c32379ce6afca63dc2174c6e44ea487168258b5ac3241dbf9f0279efe13b49d64c25b58e68
|
||||
DIST mixxx-manual-2.4-it.pdf 36467229 BLAKE2B dea2f5a5d366f89cf8e23029441443a777396806fe3c26a8eb0398d84f32eb469c3c90222d59fbf3074de1f8337436160d82901ff5717e2b3b0584a2a9ff3445 SHA512 dbec174df509acee3157402dec3fc773605f226010f6badf8bce4f376ae8f89d65ff15be5576e055a700a4da44dc4128646e8f0039fafd7f971ae9d43ae5dab6
|
||||
DIST mixxx-manual-2.4-ja.pdf 29554 BLAKE2B 0d8d82da87d2d4f3535d134466367a30cc5ed627cb6919275436cb248990d54131d391d2513f94883b85e71c98623821d79a4c2b0850fb1ba09d452d39640bc0 SHA512 285f352cca70c666373f5382cf1353f77dcbd67a9155311db4faa1d86c9264bf10441fdc7f8f014e58296101d4524c929bc24bc8309fe024f8e2e3dd9c867b98
|
||||
DIST mixxx-manual-2.4-kn.pdf 34197774 BLAKE2B dbad3f01e9ffe05f347081d67e6d5aa041ba31f120a63439fcbb74a247adaf4e5bee772e1e85bcd3121177f69a55432d3e184ec9783405b6d5b1426041bd6a38 SHA512 8d0755127dc902d6836474f34c823512ec545114ba1cb484cb8cef36b5ec830f1909466c527d60d24350ed71e4289f0a06b107aa1c7536ecca8f42a4f6fa3ece
|
||||
DIST mixxx-manual-2.4-nl.pdf 36518252 BLAKE2B db106c6ebe6fb1124abdaf2b7f1c8db592560e6afccd00a257ee0d085099c5ffb0fbe37cc1144fb0222054755ffe7c985870cbe3fc9b0bcab9c373fbd4a104bf SHA512 879137a0b99651447069090ca77180509de2e67baae371dc2ae1d76f8cdec8fddd61d5e399a276bdc974de70caf161a07b62c845e9a0298bf92d883a7196cddb
|
||||
DIST mixxx-manual-2.4-pl.pdf 36467140 BLAKE2B 0da1dc19e2b043c37b6ffb4a6145c690c0d8311398b0863fc63a41e4a48a5059e86e9e9b7eb24f03f1a78ff0201484bdbffbf9e2d206b5ae43b2df3fe0e4276a SHA512 5ebe2e4613813091ef821383f32b5be31cd79ccd6be32420c62d50b9c4a9ac58a56bc98be60f99bdecc9c7abe787de78263b31b81c0efe656ebd6efe03e955dc
|
||||
DIST mixxx-manual-2.4-pt.pdf 36480659 BLAKE2B 97fcbf41357476cf487e6d0e15aa2fdbead17bd15ff207cdd6dda59e27d355c360d46ae18b1516eef3c2153659d6974c5696be0e31d638b0d752138a9092c646 SHA512 aa82cdd5fd4bac606143b13f41eb673678a73cb19798b623f9ad5bec3e080bd37c8762d3fb5cd824ea3c52e502d0438e2552b7c213a53ca48281a49197edeb74
|
||||
DIST mixxx-manual-2.4-ro.pdf 36469524 BLAKE2B 71ada920ec722f255add2d579da665b13d07033c6cdd19b94b58eda4c236306671bb27e90986f7ce1f8dc0e10c44897ce59526d7028461bb2337fcffea6983bd SHA512 8fea4d9876e6b46299ecd9b335178621af165d84c75450a0dcb0f7f81c80a553cfe32087ba59b72a196d82554241fa5be4c1c79468c1c6a1023663337c2a7006
|
||||
DIST mixxx-manual-2.4-ru.pdf 36408979 BLAKE2B 9fe238038cff83604efeef20ecabe1ac7d460c67287374a5e65e4eb876271af98cf236f41f47712e8d67a1c697ce7d7d028ff48e2b5eed4e276db3c65396759c SHA512 4ff7b2f64778f5d5b6d398cc1290a9c08c5a47941f8e3eebd73849debac757447c98e9feda579165cfd1a79dd205dfe043f3919a0eeced7c81934157de586e1e
|
||||
DIST mixxx-manual-2.4-sl.pdf 36472716 BLAKE2B d9db4ed4853cf7ab9f4ba9b377f3208c42ce3235b3fe0e1830c0159b9322be4e428fea48359537aa2f5cf26e0e8c20c13036fe0ff236b3c26708db8fae02ff49 SHA512 c1ae109b9fe64dbdfd11cb80f96ec08ee78bdca2db66d1c188cd6a8dd5563b70cd365dc5a50a1004d1ba0acd16681300f1841f06dcfd3d0c8235871c7208d7b7
|
||||
DIST mixxx-manual-2.4-sq.pdf 36477833 BLAKE2B 07391af1b3c82f6e42a541987b914f44975530b5b88fdc63fe81e61468def0e58d472b30ac7557d11304745748aba4c865e9f031e85fb3b81194722d0bd09687 SHA512 1f9c9f12233a399a650fdec6ef0e451165c85b596dd66330163e4a58c822df8c12c1e61a264baba7c19852eb4a1b6e30e63e3970817c95a3f077b2b7e2b54ca1
|
||||
DIST mixxx-manual-2.4-sr.pdf 36479581 BLAKE2B d44e54fc8cf0576456e6d1bf6ba7b66cb16f5807717bc21d29774672d83d3e01334c656063d8c7784a2a63e1a446ff18eaa803b9698267ad19a6f5bef2d4e091 SHA512 ded0ce474789962714f114aa3dfcebabc85017285b9ab30190120e74261d987bd6d6d8e5b21fe91300c96dd3fb65618c2afc7b034f208aa20b087f2f7367f6cf
|
||||
DIST mixxx-manual-2.4-tr.pdf 36463885 BLAKE2B 87502fad48bd71312053a02f53cbeace1f8d7d1bc07481a43c14d859811198971fc0a0abbb00150b37f96407a1194cf9bde06dfe1f003a082d3ecec6f3b6d1f1 SHA512 faa8837d1049298d01c3722b924898e11b59e0c29902847432bafaf1da06e81f1cdd0619a798e3d1e52c6605d9992e8522851d89e6816e222ff49881ecc810d3
|
||||
DIST mixxx-manual-2.4-zh_CN.pdf 36572200 BLAKE2B e0b38de3b2df54d86c354a024966ea98cfcf489fed0274ba1f7f97cbcd7b9ef69f56ab37aeaedd861b89c5fcdf4afae94d376e0eaf3898dce07276ea50904560 SHA512 43309203e232cbf600cb7b64510d04f023f9f680b86603e7f37eb60de2c0ec6cac2b908ce54806f20966c354f8d255ec173dbae0dcc45aa6c8917e0b6efb18e2
|
||||
DIST mixxx-manual-2.4-zh_TW.pdf 36566027 BLAKE2B c25a46991ddbdb72b9b1975f861e9d5dabe0b720c0ca07681f56c14c7731b7bd370c980e305f5c1ac580f88f03db7c9626b96d52744e679ec2627d86e6278fe5 SHA512 a6132b9081d6ef80368dccde8eace099daa539a5c640ced650c53cd947819e5391e781d3a2b874863daa50830eb52867303de894a3195b08ce7451105141363a
|
||||
DIST mixxx-2.5.2.tar.gz 40033028 BLAKE2B f9ff48c45af4092ef8fcba5220d31d80b639d06b2803573b433b307d0062d6295337cde490b50ca1d9dfcab91d34ed9a6e299ffc9e84dfa39df3c15cc40006ef SHA512 3ea8faef80c5a8b28ffd1bd6384d2b60b318da6b77dc34d1a68a626e48756e235fe854cb5a7b1bbfab1f8c2b8be2489dd238c11f072b08d0fde86618ddd55c0f
|
||||
DIST mixxx-2.5.3.tar.gz 40055675 BLAKE2B 613d6eb774345eff58525442d4240227fe10910854f20833358640783bf4f7b429cbedded3b644c96dd7a7bdb9ff022458c4b0398a29c8d6723d7faeb7519607 SHA512 3dbb87fdc02e2dc38a370a7c78ce66140d69b6b84f6b5db986da83dc559de0a7ed9b9c72a52e94363eb86b94fee2176718b3d8fbc921fce1741a144bd693ea9d
|
||||
DIST mixxx-manual-2.5-ca.pdf 35924423 BLAKE2B 977bad4c666014c7bf454c66813687da77aecd95e13f60c6d2ca2a9e63468b56297aa0598485a6430531715012c792dffb1c922c5bd3c03f3ddcef78b147c561 SHA512 01e5b29b0952418c9d1d131e149e59587ba83c1144a07e21271ffe8ac5e8c81323cd93037a471d14f352433e4e0aa7289de18e2417d411eda074ea94ffdd4959
|
||||
DIST mixxx-manual-2.5-cs.pdf 8563777 BLAKE2B c2487463f19ab71bd8051f4588ae2c693799c261bf1bb638192bccd320c1c61a263d2888ab98f6f0323128625da6286739f0204dbc24443f37133206e31a2364 SHA512 54f6f3e57779d675c10ff47c18395d62743dd12dae1461d0a80c47bfa89b6d52cd508cd4ac05456e4283a93b23253beec163439b1d01fda50be598243d933251
|
||||
DIST mixxx-manual-2.5-de.pdf 35911021 BLAKE2B d03545288de0b46466bfc69e8e5129291474e3d3f5b386a9585b3694623198844a558f43135f4a516b1deea5d6448715b5d0ff0f8a86c29debb70c6d4aa44c13 SHA512 754bf94a0568301d3a7ff2c6afcc1e1436709d77960b8c60eb385e024b79e7d024a6e775ab099ca1cd33a1201c34b924cf79e49835b032d3f50b3b6ed1642910
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@@ -24,7 +24,7 @@ RDEPEND="
|
||||
dev-libs/glib:2
|
||||
dev-libs/protobuf:=
|
||||
media-libs/chromaprint
|
||||
~media-libs/libdjinterop-0.22.1
|
||||
~media-libs/libdjinterop-0.24.3
|
||||
media-libs/flac:=
|
||||
media-libs/libebur128
|
||||
media-libs/libid3tag:=
|
||||
@@ -35,7 +35,7 @@ RDEPEND="
|
||||
media-libs/portaudio[alsa]
|
||||
media-libs/portmidi
|
||||
media-libs/rubberband:=
|
||||
media-libs/taglib
|
||||
media-libs/taglib:=
|
||||
media-libs/vamp-plugin-sdk
|
||||
media-sound/lame
|
||||
sci-libs/fftw:3.0=
|
||||
@@ -74,6 +74,7 @@ RDEPEND="
|
||||
)
|
||||
qt6? (
|
||||
dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml]
|
||||
dev-qt/qtdeclarative:6
|
||||
dev-qt/qt5compat:6
|
||||
dev-qt/qtshadertools:6
|
||||
dev-qt/qtsvg:6
|
||||
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@@ -14,7 +14,7 @@ LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
|
||||
IUSE="aac ffmpeg hid keyfinder lv2 modplug mp3 mp4 opus qtkeychain shout wavpack"
|
||||
IUSE="aac ffmpeg hid keyfinder lv2 modplug mp3 mp4 opengl opus qt5 +qt6 qtkeychain shout wavpack"
|
||||
|
||||
RDEPEND="
|
||||
dev-cpp/benchmark
|
||||
@@ -23,21 +23,8 @@ RDEPEND="
|
||||
dev-db/sqlite
|
||||
dev-libs/glib:2
|
||||
dev-libs/protobuf:=
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdeclarative:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qtopengl:5
|
||||
dev-qt/qtprintsupport
|
||||
dev-qt/qtscript:5[scripttools]
|
||||
dev-qt/qtsql:5
|
||||
dev-qt/qtsvg:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
dev-qt/qtxml:5
|
||||
media-libs/chromaprint
|
||||
~media-libs/libdjinterop-0.22.1
|
||||
~media-libs/libdjinterop-0.24.3
|
||||
media-libs/flac:=
|
||||
media-libs/libebur128
|
||||
media-libs/libid3tag:=
|
||||
@@ -48,7 +35,7 @@ RDEPEND="
|
||||
media-libs/portaudio[alsa]
|
||||
media-libs/portmidi
|
||||
media-libs/rubberband:=
|
||||
media-libs/taglib
|
||||
media-libs/taglib:=
|
||||
media-libs/vamp-plugin-sdk
|
||||
media-sound/lame
|
||||
sci-libs/fftw:3.0=
|
||||
@@ -70,7 +57,29 @@ RDEPEND="
|
||||
mp3? ( media-libs/libmad )
|
||||
mp4? ( media-libs/libmp4v2:= )
|
||||
opus? ( media-libs/opusfile )
|
||||
qtkeychain? ( dev-libs/qtkeychain:=[qt5(+)] )
|
||||
qt5? (
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdeclarative:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qtopengl:5
|
||||
dev-qt/qtprintsupport
|
||||
dev-qt/qtscript:5[scripttools]
|
||||
dev-qt/qtsql:5
|
||||
dev-qt/qtsvg:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtx11extras:5
|
||||
dev-qt/qtxml:5
|
||||
)
|
||||
qt6? (
|
||||
dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml]
|
||||
dev-qt/qtdeclarative:6
|
||||
dev-qt/qt5compat:6
|
||||
dev-qt/qtshadertools:6
|
||||
dev-qt/qtsvg:6
|
||||
)
|
||||
qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] )
|
||||
wavpack? ( media-sound/wavpack )
|
||||
"
|
||||
# libshout-idjc-2.4.6 is required. Please check and re-add once it's
|
||||
@@ -79,18 +88,23 @@ RDEPEND="
|
||||
#shout? ( >=media-libs/libshout-idjc-2.4.6 )
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
dev-qt/qtconcurrent:5
|
||||
qt5? ( dev-qt/qtconcurrent:5 )
|
||||
|
||||
"
|
||||
BDEPEND="
|
||||
qt5? (
|
||||
dev-qt/qttest:5
|
||||
dev-qt/qtxmlpatterns:5
|
||||
)
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
PLOCALES="
|
||||
ca cs de en es fi fr gl id it ja kn nl pl pt ro ru sl sq sr tr zh-CN zh-TW
|
||||
ca cs de en es fi fr gl id it ja nl pl pt ro ru sl sq sr tr zh-CN zh-TW
|
||||
"
|
||||
|
||||
REQUIRED_USE="^^ ( qt5 qt6 )"
|
||||
|
||||
mixxx_set_globals() {
|
||||
local lang
|
||||
local MANUAL_URI_BASE="https://downloads.mixxx.org/manual/${MY_PV}"
|
||||
@@ -104,8 +118,7 @@ mixxx_set_globals
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
# Not available on Linux yet and requires additional deps
|
||||
-DBATTERY="off"
|
||||
-DBATTERY="on"
|
||||
-DBROADCAST="$(usex shout on off)"
|
||||
-DCCACHE_SUPPORT="off"
|
||||
-DFAAD="$(usex aac on off)"
|
||||
@@ -117,8 +130,11 @@ src_configure() {
|
||||
-DMAD="$(usex mp3 on off)"
|
||||
-DMODPLUG="$(usex modplug on off)"
|
||||
-DOPTIMIZE="off"
|
||||
-DQOPENGL="$(usex opengl on off)"
|
||||
-DOPUS="$(usex opus on off)"
|
||||
-DQT6="off"
|
||||
# Experimental for 2.5 (check for 2.6)
|
||||
-DQML="off"
|
||||
-DQT6="$(usex qt6 on off)"
|
||||
-DQTKEYCHAIN="$(usex qtkeychain on off)"
|
||||
-DVINYLCONTROL="on"
|
||||
-DWAVPACK="$(usex wavpack on off)"
|
||||
@@ -1,2 +1,3 @@
|
||||
DIST bento4-1.6.0.641.tar.gz 5483983 BLAKE2B 8bec91edcba170917de5941d94fecbc2028d4503651e7863b5c6a5d24bbe442b7a5d53644770d3221c28c5a9f2a2620c04e836f748660a808e27e157db93b117 SHA512 ad92c561a16a830ac63b0fbff98bd14f732dd2e38416de937191b14c750e632c793e5256b92361d3ff8867f9fd1cf727756ba78cd0122af1b79d62532d2ca427
|
||||
DIST bento4-1.6.0.641_p20241115.tar.gz 5491985 BLAKE2B 7c7c43bfd70a209e71f8b5950a7cb615f9216067fa7be8ed1db2cde31f415ed91d795a31566514b8d38e47f4ddaee6d39bd74cbd92d0b00884258fd95e694bcd SHA512 992c724627eb4fb03a68039177c5ae153e9c8e3c8e220121f6492a1e8c3bf4ee2caf51e88f8d8f48b1954e428a3b1bc58855dc3e00cc2902d804221cacf9665c
|
||||
DIST bento4-1.6.0.641_p20251125.tar.gz 5493970 BLAKE2B de104e9b4f46659a93373587c7f880ab718d83f1a64e92f8ed6acf407deca3202c4fc0d021cdc5719f12f9a97fe7e4dea6ecf9235e43fb823d2b2fded1f2d0f4 SHA512 dbbb2039feb54c5ca5bc3a685512400ccc71c016bef0faf21bc848feb90490f418f39ee77ead871a76d0553e472538b0031e19d8e8a1922f6da2df401e775d26
|
||||
|
||||
46
media-video/bento4/bento4-1.6.0.641_p20251125.ebuild
Normal file
46
media-video/bento4/bento4-1.6.0.641_p20251125.ebuild
Normal file
@@ -0,0 +1,46 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_PV="$(ver_rs 3 '-')"
|
||||
BENTO4_COMMIT_ID="0010f4fd420ef7d6504d2e401a46c15f4ef3d3ca"
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="Full-featured MP4 format, MPEG DASH, HLS, CMAF SDK and tools"
|
||||
HOMEPAGE="
|
||||
https://www.bento4.com/
|
||||
https://github.com/axiomatic-systems/Bento4
|
||||
"
|
||||
|
||||
SRC_URI="
|
||||
https://github.com/axiomatic-systems/Bento4/archive/${BENTO4_COMMIT_ID}.tar.gz
|
||||
-> ${P}.tar.gz
|
||||
"
|
||||
S="${WORKDIR}/${PN^}-${BENTO4_COMMIT_ID}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
IUSE="+apps"
|
||||
|
||||
src_prepare() {
|
||||
# Avoid conflicts with media-libs/libmp4v2[utils]
|
||||
for app in Mp4Info Mp4Extract; do
|
||||
mv Source/C++/Apps/${app}/${app}.cpp Source/C++/Apps/${app}/${app}-${PN}.cpp || die
|
||||
mv Source/C++/Apps/${app} Source/C++/Apps/${app}-${PN} || die
|
||||
done
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DBUILD_APPS=$(usex apps ON OFF)
|
||||
-DBUILD_SHARED_LIBRARY=ON
|
||||
-DCMAKE_SKIP_BUILD_RPATH=ON
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
1
media-video/clapper/Manifest
Normal file
1
media-video/clapper/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST clapper-0.8.0.tar.gz 370473 BLAKE2B e54f5f590dff25ebaad523bf6236099ce2249463ac556c1e5fe27437a5ebd658a5296315daa60530b53e45cc15caf41b464f58a277ffa604f32eaa3ea6ca3c15 SHA512 2690eb37918a84af0258813e3005ff3b6050e1d9da38ac42036e3e03b5f4807f53fcf9353938aebcc9859dbb00aca12792ad166fdf774787b5d1cc27c6b2ef1e
|
||||
86
media-video/clapper/clapper-0.8.0.ebuild
Normal file
86
media-video/clapper/clapper-0.8.0.ebuild
Normal file
@@ -0,0 +1,86 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
VALA_MIN_API_VERSION="0.56"
|
||||
VALA_USE_DEPEND="vapigen"
|
||||
|
||||
inherit meson vala gnome2-utils
|
||||
|
||||
DESCRIPTION="Modern media player designed for simplicity"
|
||||
HOMEPAGE="https://github.com/Rafostar/clapper"
|
||||
SRC_URI="
|
||||
https://github.com/Rafostar/clapper/archive/${PV}.tar.gz
|
||||
-> ${P}.tar.gz
|
||||
"
|
||||
|
||||
LICENSE="GPL-3 LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="doc gstreamer introspection plugins +server vala"
|
||||
|
||||
REQUIRED_USE="doc? ( introspection )"
|
||||
|
||||
DEPEND="
|
||||
>=dev-libs/glib-2.76.0
|
||||
>=media-libs/gstreamer-1.24.0:=
|
||||
>=gui-libs/gtk-4.10.0
|
||||
>=gui-libs/libadwaita-1.4.0
|
||||
>=media-libs/gst-plugins-base-1.24.0
|
||||
introspection? ( dev-libs/gobject-introspection )
|
||||
plugins? ( dev-libs/libpeas:2 )
|
||||
server? (
|
||||
net-libs/libsoup:3.0
|
||||
net-libs/libmicrodns
|
||||
)
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
dev-libs/appstream-glib
|
||||
vala? ( $(vala_depend) )
|
||||
doc? (
|
||||
dev-util/gi-docgen
|
||||
media-gfx/graphviz
|
||||
)
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
use vala && vala_setup
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
-Dclapper=enabled
|
||||
-Dclapper-gtk=enabled
|
||||
-Dclapper-app=enabled
|
||||
$(meson_feature gstreamer gst-plugin)
|
||||
$(meson_feature introspection)
|
||||
$(meson_feature vala vapi)
|
||||
$(meson_use doc)
|
||||
$(meson_feature plugins enhancers-loader)
|
||||
-Ddiscoverer=enabled
|
||||
-Dmpris=enabled
|
||||
$(meson_feature server)
|
||||
$(meson_feature gstreamer glimporter)
|
||||
$(meson_feature gstreamer gluploader)
|
||||
$(meson_feature gstreamer rawimporter)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_schemas_update
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
gnome2_schemas_update
|
||||
xdg_desktop_database_update
|
||||
xdg_icon_cache_update
|
||||
xdg_mimeinfo_database_update
|
||||
}
|
||||
15
media-video/clapper/metadata.xml
Normal file
15
media-video/clapper/metadata.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="plugins">Ability to load libpeas based plugins</flag>
|
||||
<flag name="server">Clapper Server feature</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="github">Rafostar/clapper</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
2
media-video/ipu7-drivers/Manifest
Normal file
2
media-video/ipu7-drivers/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST ipu7-drivers-0_p20250928.tar.gz 164077 BLAKE2B 9165ea636ce2840634e0c9871a8d4571eb77bd483654ef13fb8e2a7c93463022f590c4e0c593a61a9078789bea17e4ab53fba372a9349f2b7788ca5fc303d357 SHA512 d6efd9068fd7a6cd8092fe7a0c2e75988e07f2465a1a0ca3c06c4d48e44e50088ffdfcff0868ec93fdaf068c13b204625600cce1dd01fae56c2aae6eb2426967
|
||||
DIST ipu7-drivers-0_p20251112.tar.gz 163544 BLAKE2B 2a1a3d2d5a309ff72d9ed2136765187fa206cc01a60cd82b89f23e4f48f2ab90700a47ac92d00b11a323e98438447a9268bc9d1897c79ed902866bda67871130 SHA512 717745eb67660d6d4376cb541d5b3222a7de840329ce93ad6b62dcaeba58733f6851e68a518026aa6d0fd569f8666a1cb81d6497084dd1f34ee8ff840ee1f1d0
|
||||
41
media-video/ipu7-drivers/ipu7-drivers-0_p20250928.ebuild
Normal file
41
media-video/ipu7-drivers/ipu7-drivers-0_p20250928.ebuild
Normal file
@@ -0,0 +1,41 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
IPU7_COMMIT_ID="62a3704433c35d3bdfa679fc4dee74e133ce815c"
|
||||
|
||||
inherit linux-mod-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="Intel IPU7 MIPI camera kernel driver"
|
||||
HOMEPAGE="https://github.com/intel/ipu7-drivers"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${IPU7_COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${IPU7_COMMIT_ID}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
CONFIG_CHECK="
|
||||
IPU_BRIDGE
|
||||
VIDEO_V4L2_I2C
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
linux-mod-r1_pkg_setup
|
||||
export KERNELRELEASE=${KV_FULL}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local modlist=(
|
||||
intel-ipu7=kernel/drivers/media/pci/intel/ipu7::drivers/media/pci/intel/ipu7
|
||||
intel-ipu7-isys=kernel/drivers/media/pci/intel/ipu7::drivers/media/pci/intel/ipu7
|
||||
intel-ipu7-psys=kernel/drivers/media/pci/intel/ipu7/psys::drivers/media/pci/intel/ipu7/psys
|
||||
ipu-acpi=kernel/drivers/media/platform/intel::drivers/media/platform/intel
|
||||
ipu-acpi-common=kernel/drivers/media/platform/intel::drivers/media/platform/intel
|
||||
ipu-acpi-pdata=kernel/drivers/media/platform/intel::drivers/media/platform/intel
|
||||
)
|
||||
|
||||
linux-mod-r1_src_compile
|
||||
}
|
||||
41
media-video/ipu7-drivers/ipu7-drivers-0_p20251112.ebuild
Normal file
41
media-video/ipu7-drivers/ipu7-drivers-0_p20251112.ebuild
Normal file
@@ -0,0 +1,41 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
IPU7_COMMIT_ID="fc335577f95bf6ca3afc706d1ceab8297db4f010"
|
||||
|
||||
inherit linux-mod-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="Intel IPU7 MIPI camera kernel driver"
|
||||
HOMEPAGE="https://github.com/intel/ipu7-drivers"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${IPU7_COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${IPU7_COMMIT_ID}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
CONFIG_CHECK="
|
||||
IPU_BRIDGE
|
||||
VIDEO_V4L2_I2C
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
linux-mod-r1_pkg_setup
|
||||
export KERNELRELEASE=${KV_FULL}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local modlist=(
|
||||
intel-ipu7=kernel/drivers/media/pci/intel/ipu7::drivers/media/pci/intel/ipu7
|
||||
intel-ipu7-isys=kernel/drivers/media/pci/intel/ipu7::drivers/media/pci/intel/ipu7
|
||||
intel-ipu7-psys=kernel/drivers/media/pci/intel/ipu7/psys::drivers/media/pci/intel/ipu7/psys
|
||||
ipu-acpi=kernel/drivers/media/platform/intel::drivers/media/platform/intel
|
||||
ipu-acpi-common=kernel/drivers/media/platform/intel::drivers/media/platform/intel
|
||||
ipu-acpi-pdata=kernel/drivers/media/platform/intel::drivers/media/platform/intel
|
||||
)
|
||||
|
||||
linux-mod-r1_src_compile
|
||||
}
|
||||
11
media-video/ipu7-drivers/metadata.xml
Normal file
11
media-video/ipu7-drivers/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">intel/ipu7-drivers</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
1
media-video/totem-video-thumbnailer/Manifest
Normal file
1
media-video/totem-video-thumbnailer/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST totem-43.2.tar.xz 2552500 BLAKE2B b2bdbbe98abe0e957e260f24c30cb481da7a92ea28edb6619455cd446d28e926f35794652f17fcf51a7d7dc105d12d7cdf42d9fb84fe110a51fa1d1c746baff1 SHA512 4ed3c1a1c5c70279f5f704c98f5cf6903eaacd1fe65c209b5086106a8401d3759ccfd4fa3c43eb542df854076fd08d487e691b7bf5864d5bf6f98c50f21b8dda
|
||||
90
media-video/totem-video-thumbnailer/files/meson.build
Normal file
90
media-video/totem-video-thumbnailer/files/meson.build
Normal file
@@ -0,0 +1,90 @@
|
||||
project(
|
||||
'totem-video-thumbnailer', 'c',
|
||||
version: '1.0',
|
||||
license: 'GPL2+ with exception',
|
||||
default_options: 'buildtype=debugoptimized',
|
||||
meson_version: '>= 0.50.0'
|
||||
)
|
||||
|
||||
totem_prefix = get_option('prefix')
|
||||
totem_bindir = join_paths(totem_prefix, get_option('bindir'))
|
||||
totem_datadir = join_paths(totem_prefix, get_option('datadir'))
|
||||
totem_localedir = join_paths(totem_prefix, get_option('localedir'))
|
||||
|
||||
gst_req_version = '>= 1.6.0'
|
||||
totem_plparser_req_version = '>= 3.10.1'
|
||||
|
||||
gio_dep = dependency('gio-2.0', version: '>= 2.43.4')
|
||||
gdk_pixbuf_dep = dependency('gdk-pixbuf-2.0')
|
||||
gst_dep = dependency('gstreamer-1.0', version: gst_req_version)
|
||||
gst_tag_dep = dependency('gstreamer-tag-1.0', version: '>= 0.11.93')
|
||||
gst_video_dep = dependency('gstreamer-video-1.0')
|
||||
totem_plparser_dep = dependency('totem-plparser', version: totem_plparser_req_version)
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
m_dep = cc.find_library('m', required: true)
|
||||
|
||||
config_h = configuration_data()
|
||||
set_defines = [
|
||||
['GETTEXT_PACKAGE', meson.project_name()],
|
||||
['GNOMELOCALEDIR', totem_localedir],
|
||||
]
|
||||
|
||||
foreach define: set_defines
|
||||
config_h.set_quoted(define[0], define[1])
|
||||
endforeach
|
||||
|
||||
configure_file(
|
||||
output: 'config.h',
|
||||
configuration: config_h
|
||||
)
|
||||
|
||||
totem_video_thumbnailer_sources = files(
|
||||
'submodules/totem/src/totem-resources.c',
|
||||
'submodules/totem/src/totem-video-thumbnailer.c',
|
||||
'submodules/totem/src/gst/totem-gst-helpers.c',
|
||||
'submodules/totem/src/gst/totem-gst-pixbuf-helpers.c'
|
||||
)
|
||||
|
||||
totem_video_thumbnailer_deps = [
|
||||
gio_dep,
|
||||
gdk_pixbuf_dep,
|
||||
totem_plparser_dep,
|
||||
gst_tag_dep,
|
||||
gst_video_dep,
|
||||
m_dep,
|
||||
]
|
||||
|
||||
executable(
|
||||
'totem-video-thumbnailer',
|
||||
totem_video_thumbnailer_sources,
|
||||
include_directories: [
|
||||
include_directories('submodules/totem/src/'),
|
||||
include_directories('submodules/totem/src/gst'),
|
||||
],
|
||||
dependencies: totem_video_thumbnailer_deps,
|
||||
c_args: [
|
||||
'-DG_LOG_DOMAIN="TotemVideoThumbnailer"'
|
||||
],
|
||||
install: true,
|
||||
install_dir: totem_bindir
|
||||
)
|
||||
|
||||
thumbnailer_sh = find_program('submodules/totem/data/thumbnailer.sh')
|
||||
mime_type_list = files('submodules/totem/data/mime-type-list.txt')
|
||||
|
||||
r = run_command([thumbnailer_sh, mime_type_list], check: true)
|
||||
|
||||
thumbnailer_conf = configuration_data()
|
||||
thumbnailer_conf.set('BINDIR', totem_bindir)
|
||||
thumbnailer_conf.set('MIME_TYPE', r.stdout().strip())
|
||||
|
||||
thumbnailer = 'totem.thumbnailer'
|
||||
|
||||
configure_file(
|
||||
input: 'submodules/totem/data/' + thumbnailer + '.in',
|
||||
output: thumbnailer,
|
||||
install: true,
|
||||
install_dir: join_paths(totem_datadir, 'thumbnailers'),
|
||||
configuration: thumbnailer_conf
|
||||
)
|
||||
11
media-video/totem-video-thumbnailer/metadata.xml
Normal file
11
media-video/totem-video-thumbnailer/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="gnome-gitlab">GNOME/totem-video-thumbnailer</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,48 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit meson
|
||||
|
||||
DESCRIPTION="GNOME Video thumbnailer"
|
||||
HOMEPAGE="https://gitlab.gnome.org/GNOME/totem-video-thumbnailer/"
|
||||
|
||||
SRC_URI="https://download.gnome.org/sources/totem/${PV::2}/totem-${PV}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2+"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
|
||||
|
||||
COMMON_DEPEND="
|
||||
!media-video/totem
|
||||
>=dev-libs/glib-2.72.0:2
|
||||
>=media-libs/gstreamer-1.21.1:1.0
|
||||
>=dev-libs/totem-pl-parser-3.26.5
|
||||
x11-libs/gdk-pixbuf:2
|
||||
"
|
||||
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
>=media-plugins/gst-plugins-meta-1.21.1:1.0
|
||||
>=media-plugins/gst-plugins-taglib-1.21.1:1.0
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}"
|
||||
|
||||
BDEPEND="
|
||||
>=sys-devel/gettext-0.19.8
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_unpack() {
|
||||
mkdir -p "${S}"/submodules || die
|
||||
cp "${FILESDIR}"/meson.build "${S}/" || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
ln -s "${WORKDIR}"/totem-${PV} "${S}"/submodules/totem || die
|
||||
|
||||
default
|
||||
}
|
||||
1
media-video/usbio-drivers/Manifest
Normal file
1
media-video/usbio-drivers/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST usbio-drivers-0_p20251030.tar.gz 19923 BLAKE2B 427a45f8a4cae5a8e9a6c27b876d59b279d06d00e0d3d53bafe5ec82d1b416010322d528fe6e355d7bb8e2f5482376458a5f570f65b60fdd94a23232e89c82c0 SHA512 ca8e15d25b5f87a52b24a82ce32cc4485d10cf91eda623d82db24cc8ece134d937be70ed7672d8f476fd3f42fdb47d867ae1fac7e1155bdc61b7c54d69f91002
|
||||
11
media-video/usbio-drivers/metadata.xml
Normal file
11
media-video/usbio-drivers/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">intel/usbio-drivers</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
39
media-video/usbio-drivers/usbio-drivers-0_p20251030.ebuild
Normal file
39
media-video/usbio-drivers/usbio-drivers-0_p20251030.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
COMMIT_ID="ee221ecae757d43ab3fb39433f389373b2026109"
|
||||
|
||||
inherit linux-mod-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="USBIO drivers for Meteor Lake, Arrow Lake, Lunar Lake and Panther Lake platforms"
|
||||
HOMEPAGE="https://github.com/intel/usbio-drivers"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
pkg_setup() {
|
||||
linux-mod-r1_pkg_setup
|
||||
export KERNELRELEASE=${KV_FULL}
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i '/^KERNELRELEASE/s#:=#?=#1' Makefile || die
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local modlist=(
|
||||
usbio=kernel/drivers/misc:::all
|
||||
gpio-usbio=kernel/drivers/misc:::all
|
||||
i2c-usbio=kernel/drivers/misc:::all
|
||||
)
|
||||
|
||||
linux-mod-r1_src_compile
|
||||
}
|
||||
1
media-video/v4l2-relayd/Manifest
Normal file
1
media-video/v4l2-relayd/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST v4l2-relayd-0.1.5.tar.xz 17500 BLAKE2B 15fcd1adfa7d6e550df5df03ea292b58a9376fdf6205e84f074830de1287611f69a69a762462ad5110096b5262edc2068baef0c1e47db39bb70173ff4e796872 SHA512 b7c432b295177d73a640e21056a6d706af51cd525ea07b19f26d1bc79536d43167f8821522f3e8449356ace7b9fab913aeb5081d9d11065cfe6d0c6cb4637b2b
|
||||
14
media-video/v4l2-relayd/metadata.xml
Normal file
14
media-video/v4l2-relayd/metadata.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="icamera">Intel MIPI Camera support</flag>
|
||||
</use>
|
||||
<upstream>
|
||||
<remote-id type="launchpad">v4l2-relayd</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
55
media-video/v4l2-relayd/v4l2-relayd-0.1.5.ebuild
Normal file
55
media-video/v4l2-relayd/v4l2-relayd-0.1.5.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools systemd
|
||||
|
||||
DESCRIPTION="Streaming relay for v4l2loopback using GStreamer"
|
||||
HOMEPAGE="https://git.launchpad.net/v4l2-relayd"
|
||||
SRC_URI="
|
||||
https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/${PN}/${PV}-0ubuntu1/${PN}_${PV}.orig.tar.xz
|
||||
-> ${P}.tar.xz
|
||||
"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="+icamera"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/glib:=
|
||||
media-libs/gstreamer:1.0
|
||||
media-libs/gst-plugins-base:1.0
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
icamera? (
|
||||
media-plugins/gst-plugins-icamera
|
||||
)
|
||||
media-video/v4l2loopback
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
eautoreconf
|
||||
|
||||
if use icamera; then
|
||||
sed -i \
|
||||
-e '/^FORMAT=/s#.*#FORMAT=NV12#g' \
|
||||
-e '/^VIDEOSRC=/s#.*#VIDEOSRC="icamerasrc"#g' \
|
||||
-e '/^CARD_LABEL=/s#.*#CARD_LABEL="Intel MIPI Camera"#g' \
|
||||
data/etc/default/${PN} || die
|
||||
|
||||
sed -i \
|
||||
-e 's#card_label="Virtual Camera"#card_label="Intel MIPI Camera"#g' \
|
||||
data/etc/modprobe.d/${PN}.conf || die
|
||||
fi
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
|
||||
}
|
||||
2
media-video/vision-drivers/Manifest
Normal file
2
media-video/vision-drivers/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST vision-drivers-0_p20250606.tar.gz 20999 BLAKE2B 53670f57433c681d6728819af80e54b95b9a4e9a44af57577e1c3f81295808886cdb75a135447da3da1d4d7e1b07d0d84121b3ba24f16c231ff17e624f47278b SHA512 a50fc6fb29a084aa512cc87c2c074bf82db829db7691d1f30f2902135e22084636055fee0df7930592975a99675a8aadb1f5cbc9ab4d0f261e78c453b4e8e288
|
||||
DIST vision-drivers-0_p20251112.tar.gz 21543 BLAKE2B 40ca38b9f73549a181c9dde034b1a28a5d5f2820f943020ef274e685140c51241c26869c5052447840a78a59c5778978cd91dbc058c9b2f1f6c347d16caf7349 SHA512 a7ec20ddbd3108a24e12f925059f8b92de90ffdcd083b5854b1258dbd86591ec50c4c28dda9761df81bb28e6aed40d4cffcd0ce2de71e1a9ae387b2dc4d63a23
|
||||
11
media-video/vision-drivers/metadata.xml
Normal file
11
media-video/vision-drivers/metadata.xml
Normal 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>david.guglielmi@gmail.com</email>
|
||||
<name>David GUGLIELMI</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">intel/vision-drivers</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
35
media-video/vision-drivers/vision-drivers-0_p20250606.ebuild
Normal file
35
media-video/vision-drivers/vision-drivers-0_p20250606.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
COMMIT_ID="92a717e02ef30f4b5fad99271d0ec77c3364e4ea"
|
||||
|
||||
inherit linux-mod-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="Intel Vision Driver for Intel Lunar Lake (LNL) CVS-enabled Platforms"
|
||||
HOMEPAGE="https://github.com/intel/vision-drivers"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
CONFIG_CHECK="
|
||||
GPIO_LJCA
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
linux-mod-r1_pkg_setup
|
||||
export KERNELRELEASE=${KV_FULL}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local modlist=(
|
||||
intel_cvs=kernel/drivers/misc:::all
|
||||
)
|
||||
|
||||
linux-mod-r1_src_compile
|
||||
}
|
||||
35
media-video/vision-drivers/vision-drivers-0_p20251112.ebuild
Normal file
35
media-video/vision-drivers/vision-drivers-0_p20251112.ebuild
Normal file
@@ -0,0 +1,35 @@
|
||||
# Copyright 2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
COMMIT_ID="a8d772f261bc90376944956b7bfd49b325ffa2f2"
|
||||
|
||||
inherit linux-mod-r1 toolchain-funcs
|
||||
|
||||
DESCRIPTION="Intel Vision Driver for Intel Lunar Lake (LNL) CVS-enabled Platforms"
|
||||
HOMEPAGE="https://github.com/intel/vision-drivers"
|
||||
|
||||
SRC_URI="https://github.com/intel/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT_ID}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
CONFIG_CHECK="
|
||||
GPIO_LJCA
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
linux-mod-r1_pkg_setup
|
||||
export KERNELRELEASE=${KV_FULL}
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
local modlist=(
|
||||
intel_cvs=kernel/drivers/misc:::all
|
||||
)
|
||||
|
||||
linux-mod-r1_src_compile
|
||||
}
|
||||
@@ -1,15 +1,15 @@
|
||||
BDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare setup test
|
||||
DESCRIPTION=A Python Byte-code Disassembler/Decompiler
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/zrax/pycdc
|
||||
INHERIT=cmake python-single-r1
|
||||
IUSE=python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
IUSE=python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
RDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/zrax/pycdc/archive/6467c2cc52aa714876e131a1b6c6cf25f129460f.tar.gz -> decompyle++-0_p20240312.tar.gz
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 dbb8c4d794033ad7e7221eaf567a6c90 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=5028e7c7c87903066d22eef668361c68
|
||||
|
||||
@@ -10,5 +10,5 @@ LICENSE=MIT
|
||||
REQUIRED_USE=^^ ( lua_single_target_lua5-1 )
|
||||
SLOT=5.1
|
||||
SRC_URI=https://github.com/viruscamp/luadec/archive/895d92313fabaee260121c758c8320d1b21dd741.tar.gz -> luadec-0_p20170106.tar.gz https://www.lua.org/ftp/lua-5.1.5.tar.gz
|
||||
_eclasses_=lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536
|
||||
_eclasses_=lua-single 75fe955a36b18e199213c8739eaebdbb lua-utils 7c89927eda6f21c4c48136247077ab37 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=602c347d6e0af5e18a0144e2179aba6e
|
||||
|
||||
@@ -9,5 +9,5 @@ LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/openssl
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mentebinaria/readpe/archive/v0.84.tar.gz -> readpe-0.84.tar.gz
|
||||
_eclasses_=multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536
|
||||
_eclasses_=toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=3c2736af397f3c998949ae757d2e33e7
|
||||
|
||||
13
metadata/md5-cache/app-forensics/readpe-0.85.1
Normal file
13
metadata/md5-cache/app-forensics/readpe-0.85.1
Normal file
@@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=compile prepare
|
||||
DEPEND=dev-libs/openssl
|
||||
DESCRIPTION=Multiplatform command line toolkit to work with PE binaries
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/mentebinaria/readpe
|
||||
INHERIT=toolchain-funcs
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/openssl
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mentebinaria/readpe/archive/v0.85.1.tar.gz -> readpe-0.85.1.tar.gz
|
||||
_eclasses_=toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=5b23963986a043ae293e92ffa6cb157f
|
||||
@@ -7,8 +7,7 @@ INHERIT=golang-build golang-vcs-snapshot
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=sci-mathematics/flint sci-mathematics/gmp-ecm
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/sourcekris/goRsaTool/archive/eb50c9aa5b68419b0cb2f319dfe321ce6a0963cb.tar.gz -> gorsatool-1.0.2_p20231101.tar.gz https://github.com/jbarham/primegen/archive/8ce4838491a0.tar.gz -> github.com-jbarham-primegen-8ce4838491a0.tar.gz https://github.com/kavehmz/prime/archive/v1.0.0.tar.gz -> github.com-kavehmz-prime-v1.0.0.tar.gz https://github.com/sourcekris/goflint/archive/v1.0.0.tar.gz -> github.com-sourcekris-goflint-v1.0.0.tar.gz https://github.com/sourcekris/gogmpecm/archive/8a5f196d84bc.tar.gz -> github.com-sourcekris-gogmpecm-8a5f196d84bc.tar.gz https://github.com/sourcekris/mathparse/archive/232758c46ee7.tar.gz -> github.com-sourcekris-mathparse-232758c46ee7.tar.gz https://github.com/sourcekris/x509big/archive/e8ea46e23d32.tar.gz -> github.com-sourcekris-x509big-e8ea46e23d32.tar.gz
|
||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe go-env 90efbc8636d2f02d9654183330e84cf7 golang-base 33e0f9ff6c6f053a3df2d38992afeb58 golang-build 20e04694f8bbaef2664220cebb994a48 golang-vcs-snapshot dacb23628c2ff18d349878f599c078a5 multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536
|
||||
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 go-env 0e2babf96e7d0b045fc07ad199eb2399 golang-base fef467b1c601a05bbc9550b675b51583 golang-build 20e04694f8bbaef2664220cebb994a48 golang-vcs-snapshot dacb23628c2ff18d349878f599c078a5 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=90205f4d7ea5fb4726c7a15c38254c81
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
BDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_10? ( dev-python/lxml[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/lxml[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/lxml[python_targets_python3_12(-)] ) test? ( dev-libs/appstream python_single_target_python3_10? ( dev-python/flake8[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/flake8[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/flake8[python_targets_python3_12(-)] ) ) virtual/pkgconfig >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup test
|
||||
DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) dev-libs/gobject-introspection >=dev-libs/libratbag-0.14 gnome-base/librsvg[introspection] x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:3[introspection] python_single_target_python3_10? ( dev-python/evdev[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] dev-python/pycairo[python_targets_python3_10(-)] dev-python/pygobject:3[cairo,python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/evdev[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] dev-python/pycairo[python_targets_python3_11(-)] dev-python/pygobject:3[cairo,python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/evdev[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] dev-python/pycairo[python_targets_python3_12(-)] dev-python/pygobject:3[cairo,python_targets_python3_12(-)] ) dev-libs/libevdev virtual/libudev
|
||||
DESCRIPTION=GTK application to configure gaming devices
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/libratbag/piper
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=meson python-single-r1 xdg
|
||||
IUSE=test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) dev-libs/gobject-introspection >=dev-libs/libratbag-0.14 gnome-base/librsvg[introspection] x11-libs/gdk-pixbuf[introspection] x11-libs/gtk+:3[introspection] python_single_target_python3_10? ( dev-python/evdev[python_targets_python3_10(-)] dev-python/lxml[python_targets_python3_10(-)] dev-python/pycairo[python_targets_python3_10(-)] dev-python/pygobject:3[cairo,python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/evdev[python_targets_python3_11(-)] dev-python/lxml[python_targets_python3_11(-)] dev-python/pycairo[python_targets_python3_11(-)] dev-python/pygobject:3[cairo,python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/evdev[python_targets_python3_12(-)] dev-python/lxml[python_targets_python3_12(-)] dev-python/pycairo[python_targets_python3_12(-)] dev-python/pygobject:3[cairo,python_targets_python3_12(-)] )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/libratbag/piper/archive/0.8.tar.gz -> piper-0.8.tar.gz
|
||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=78517f1ef11fa78a0c2dabe7e9b267b0
|
||||
@@ -1,17 +0,0 @@
|
||||
BDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) dev-lang/swig virtual/pkgconfig doc? ( python_single_target_python3_10? ( dev-python/sphinx[python_targets_python3_10(-)] dev-python/sphinx-rtd-theme[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/sphinx[python_targets_python3_11(-)] dev-python/sphinx-rtd-theme[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/sphinx[python_targets_python3_12(-)] dev-python/sphinx-rtd-theme[python_targets_python3_12(-)] ) ) test? ( dev-libs/check dev-libs/gobject-introspection dev-debug/valgrind python_single_target_python3_10? ( dev-python/evdev[python_targets_python3_10(-)] dev-python/pygobject:3[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/evdev[python_targets_python3_11(-)] dev-python/pygobject:3[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/evdev[python_targets_python3_12(-)] dev-python/pygobject:3[python_targets_python3_12(-)] ) ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array virtual/pkgconfig virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install postinst prepare setup test
|
||||
DEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) acct-group/plugdev dev-libs/glib:2 dev-libs/json-glib dev-libs/libevdev dev-libs/libunistring:= virtual/libudev:= python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/evdev[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/evdev[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pygobject:3[python_targets_python3_12(-)] dev-python/evdev[python_targets_python3_12(-)] ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd ) dev-libs/gobject-introspection
|
||||
DESCRIPTION=Library to configure gaming mice
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/libratbag/libratbag
|
||||
INHERIT=meson python-single-r1 systemd udev
|
||||
IUSE=doc elogind systemd test python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=MIT
|
||||
RDEPEND=python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) acct-group/plugdev dev-libs/glib:2 dev-libs/json-glib dev-libs/libevdev dev-libs/libunistring:= virtual/libudev:= python_single_target_python3_10? ( dev-python/pygobject:3[python_targets_python3_10(-)] dev-python/evdev[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/pygobject:3[python_targets_python3_11(-)] dev-python/evdev[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/pygobject:3[python_targets_python3_12(-)] dev-python/evdev[python_targets_python3_12(-)] ) elogind? ( sys-auth/elogind ) systemd? ( sys-apps/systemd )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 ) ^^ ( elogind systemd )
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/libratbag/libratbag/archive/v0.18.tar.gz -> libratbag-0.18.tar.gz
|
||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 systemd 54bd206bb5c4efac6ae28b6b006713b0 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 udev f3d9a4376ebd22131726a68e1a0a058f
|
||||
_md5_=d1960a67dea454f308dbefbc8ba54aee
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=media-libs/libsdl2[haptic] media-libs/sdl2-mixer[wav,midi,fluidsynth] media-sound/fluid-soundfont app-arch/unzip app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=media-libs/libsdl2[haptic] media-libs/sdl2-mixer[wav,midi,fluidsynth] media-sound/fluid-soundfont app-arch/unzip app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install postinst postrm prepare test
|
||||
DEPEND=media-libs/libsdl2[haptic] media-libs/sdl2-mixer[wav,midi,fluidsynth] media-sound/fluid-soundfont
|
||||
DESCRIPTION=Reverse engineering of 3D Pinball Space Cadet
|
||||
@@ -10,5 +10,5 @@ LICENSE=MIT
|
||||
RDEPEND=media-libs/libsdl2[haptic] media-libs/sdl2-mixer[wav,midi,fluidsynth] media-sound/fluid-soundfont
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/k4zmu2a/SpaceCadetPinball/archive/refs/tags/Release_2.1.0.tar.gz -> spacecadetpinball-2.1.0.tar.gz https://davipinheiro.com/wp-content/uploads/2021/02/Full-Tilt-Pinball_Win_EN.zip
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=e05b43951e2bf92883d43007b7fa2046
|
||||
|
||||
@@ -10,5 +10,5 @@ LICENSE=GPL-3+
|
||||
RDEPEND=opengl? ( media-libs/glew ) media-libs/libsdl2 sys-libs/zlib
|
||||
SLOT=0
|
||||
SRC_URI=https://www.retrodev.com/repos/blastem/archive/99e59fdddbc3.tar.bz2 -> blastem-0.6.3_pre20241209.tar.bz2
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed multilib b2a329026f2e404e9e371097dda47f96 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=fbeb9afae6c360713420028b1f09fd12
|
||||
|
||||
13
metadata/md5-cache/media-fonts/twemoji-ttf-16.0.1
Normal file
13
metadata/md5-cache/media-fonts/twemoji-ttf-16.0.1
Normal file
@@ -0,0 +1,13 @@
|
||||
BDEPEND=X? ( >=x11-apps/mkfontscale-1.2.0 media-fonts/encodings )
|
||||
DEFINED_PHASES=install postinst postrm setup unpack
|
||||
DESCRIPTION=Twitter Emoji for everyone
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/jdecked/twemoji/
|
||||
INHERIT=font
|
||||
IUSE=X
|
||||
KEYWORDS=~amd64 ~arm ~arm64 ~x86
|
||||
LICENSE=MIT CC-BY-4.0
|
||||
SLOT=0
|
||||
SRC_URI=https://distfiles.alpinelinux.org/distfiles/edge/Twemoji-16.0.1.ttf
|
||||
_eclasses_=font aa113a3df9cd0a9693a1c1ee7c34a6eb
|
||||
_md5_=b1a2d4f2aa3feada8678930b1255781f
|
||||
@@ -1,16 +0,0 @@
|
||||
BDEPEND=>=gui-libs/gtk-4.13.6:4 >=gui-libs/libadwaita-1.4.0 >=dev-libs/libgweather-4.2.0 >=media-libs/lcms-2.12.0:2 >=sys-libs/libseccomp-2.5.0 || ( dev-lang/rust-bin:1.84.0 dev-lang/rust:1.84.0 dev-lang/rust-bin:1.83.0 dev-lang/rust:1.83.0 dev-lang/rust-bin:1.82.0 dev-lang/rust:1.82.0 dev-lang/rust-bin:1.81.0 dev-lang/rust:1.81.0 dev-lang/rust-bin:1.80.1 dev-lang/rust:1.80.1 dev-lang/rust-bin:1.79.0 dev-lang/rust:1.79.0 dev-lang/rust-bin:1.78.0 dev-lang/rust:1.78.0 dev-lang/rust-bin:1.77.1 dev-lang/rust:1.77.1 dev-lang/rust-bin:1.76.0 dev-lang/rust:1.76.0 dev-lang/rust-bin:1.75.0 dev-lang/rust:1.75.0 dev-lang/rust-bin:1.74.1 dev-lang/rust:1.74.1 dev-lang/rust-bin:1.71.1 dev-lang/rust:1.71.1 ) app-arch/xz-utils >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst setup test unpack
|
||||
DEPEND=>=gui-libs/gtk-4.13.6:4 >=gui-libs/libadwaita-1.4.0 >=dev-libs/libgweather-4.2.0 >=media-libs/lcms-2.12.0:2 >=sys-libs/libseccomp-2.5.0
|
||||
DESCRIPTION=An image viewer application written with GTK 4, Libadwaita and Rust
|
||||
EAPI=8
|
||||
HOMEPAGE=https://apps.gnome.org/Loupe/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=cargo gnome.org gnome2-utils meson xdg
|
||||
IUSE=debug
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3+ Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 MIT Unicode-DFS-2016 || ( LGPL-2.1+ MPL-2.0 )
|
||||
RDEPEND=>=gui-libs/gtk-4.13.6:4 >=gui-libs/libadwaita-1.4.0 >=dev-libs/libgweather-4.2.0 >=media-libs/lcms-2.12.0:2 >=sys-libs/libseccomp-2.5.0 >=media-libs/glycin-loaders-1.1.2
|
||||
SLOT=0
|
||||
SRC_URI=mirror://gnome/sources/loupe/46/loupe-46.2.tar.xz
|
||||
_eclasses_=cargo 5ad34dd14ea52875e865e465e0f6421a flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe gnome.org e1b4f392dbfedfb8974b71b017937f08 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 rust 44c8464f6266787f32aab8b1f056a28b rust-toolchain 3f822985d9297438ed2443aa1fbdf33e toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=c83183d2fd4da0a1cafd654026010f7c
|
||||
File diff suppressed because one or more lines are too long
10
metadata/md5-cache/media-libs/ipu7-camera-bins-0_p20250928
Normal file
10
metadata/md5-cache/media-libs/ipu7-camera-bins-0_p20250928
Normal file
@@ -0,0 +1,10 @@
|
||||
DEFINED_PHASES=install prepare
|
||||
DESCRIPTION=Intel IPU7 MIPI camera proprietary image processing libraries
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/ipu7-camera-bins
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=INTEL-IPU
|
||||
RESTRICT=elibc_musl
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/ipu7-camera-bins/archive/09ccd020d5d1aa34b91e9f30b01a4166dd31f51b.tar.gz -> ipu7-camera-bins-0_p20250928.tar.gz
|
||||
_md5_=8752a7f1cf75cf636f4f92b3e1f35643
|
||||
10
metadata/md5-cache/media-libs/ipu7-camera-bins-0_p20251112
Normal file
10
metadata/md5-cache/media-libs/ipu7-camera-bins-0_p20251112
Normal file
@@ -0,0 +1,10 @@
|
||||
DEFINED_PHASES=install prepare
|
||||
DESCRIPTION=Intel IPU7 MIPI camera proprietary image processing libraries
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/ipu7-camera-bins
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=INTEL-IPU
|
||||
RESTRICT=elibc_musl
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/ipu7-camera-bins/archive/b7ebe7949329d8022e5cec0085f8c183bfdeb501.tar.gz -> ipu7-camera-bins-0_p20251112.tar.gz
|
||||
_md5_=4bb03a377a5ceeebc580be5e661cd5d6
|
||||
14
metadata/md5-cache/media-libs/ipu7-camera-hal-0_p20250929
Normal file
14
metadata/md5-cache/media-libs/ipu7-camera-hal-0_p20250929
Normal file
@@ -0,0 +1,14 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-libs/expat dev-libs/jsoncpp media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/ipu7-camera-bins
|
||||
DESCRIPTION=Intel IPU7 MIPI camera HAL
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/ipu7-camera-hal
|
||||
INHERIT=cmake
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-libs/expat dev-libs/jsoncpp media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/ipu7-camera-bins
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/ipu7-camera-hal/archive/feed9155372c0ba5543ca0c04052bdd71ed8b031.tar.gz -> ipu7-camera-hal-0_p20250929.tar.gz
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=226fc27de4a2cd655be6a88e1ef902db
|
||||
14
metadata/md5-cache/media-libs/ipu7-camera-hal-0_p20251112
Normal file
14
metadata/md5-cache/media-libs/ipu7-camera-hal-0_p20251112
Normal file
@@ -0,0 +1,14 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5 virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install postinst postrm prepare test
|
||||
DEPEND=dev-libs/expat dev-libs/jsoncpp media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/ipu7-camera-bins
|
||||
DESCRIPTION=Intel IPU7 MIPI camera HAL
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/ipu7-camera-hal
|
||||
INHERIT=cmake udev
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=dev-libs/expat dev-libs/jsoncpp media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 media-libs/ipu7-camera-bins
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/ipu7-camera-hal/archive/affeb2200bfa61f98ef4be08ff046767d40fcedf.tar.gz -> ipu7-camera-hal-0_p20251112.tar.gz
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db udev f3d9a4376ebd22131726a68e1a0a058f xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=28c4f44e0540238663458cc6950fb19c
|
||||
@@ -1,16 +1,16 @@
|
||||
BDEPEND=>=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install prepare setup test
|
||||
DEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_10? ( dev-python/jinja2[python_targets_python3_10(-)] dev-python/ply[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= )
|
||||
DEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= )
|
||||
DESCRIPTION=An open source camera stack and framework for Linux, Android, and ChromeOS
|
||||
EAPI=8
|
||||
HOMEPAGE=https://libcamera.org/
|
||||
INHERIT=meson python-single-r1
|
||||
IUSE=+app debug gstreamer python qt6 trace udev unwind v4l python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
IUSE=+app debug gstreamer python qt6 trace udev unwind v4l python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=LGPL-2.1+
|
||||
RDEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_10? ( dev-python/jinja2[python_targets_python3_10(-)] dev-python/ply[python_targets_python3_10(-)] dev-python/pyyaml[python_targets_python3_10(-)] dev-python/pybind11[python_targets_python3_10(-)] ) python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= ) python? ( python_single_target_python3_10? ( dev-lang/python:3.10 ) python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) ) trace? ( dev-util/lttng-tools )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_10 python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
RDEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= ) python? ( python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) ) trace? ( dev-util/lttng-tools )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
SLOT=0
|
||||
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/v0.4.0/libcamera-v0.4.0.tar.bz2
|
||||
_eclasses_=flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe meson 99466844dd8d4fcfb07578a76f5a9922 multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536
|
||||
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 1a27c82364f611e149966d2c47cbb083 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 dbb8c4d794033ad7e7221eaf567a6c90 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=44a8e480f9edec9c1a906d3b17609f4a
|
||||
|
||||
16
metadata/md5-cache/media-libs/libcamera-0.5.0
Normal file
16
metadata/md5-cache/media-libs/libcamera-0.5.0
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=>=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install prepare setup test
|
||||
DEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= )
|
||||
DESCRIPTION=An open source camera stack and framework for Linux, Android, and ChromeOS
|
||||
EAPI=8
|
||||
HOMEPAGE=https://libcamera.org/
|
||||
INHERIT=meson python-single-r1
|
||||
IUSE=+app debug gstreamer python qt6 trace udev unwind v4l python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=LGPL-2.1+
|
||||
RDEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= ) python? ( python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) ) trace? ( dev-util/lttng-tools )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
SLOT=0
|
||||
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/v0.5.0/libcamera-v0.5.0.tar.bz2
|
||||
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 1a27c82364f611e149966d2c47cbb083 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 dbb8c4d794033ad7e7221eaf567a6c90 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=e5b3326e4ddbf0262432998a28ded911
|
||||
16
metadata/md5-cache/media-libs/libcamera-0.5.2
Normal file
16
metadata/md5-cache/media-libs/libcamera-0.5.2
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=>=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install prepare setup test
|
||||
DEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= )
|
||||
DESCRIPTION=An open source camera stack and framework for Linux, Android, and ChromeOS
|
||||
EAPI=8
|
||||
HOMEPAGE=https://libcamera.org/
|
||||
INHERIT=meson python-single-r1
|
||||
IUSE=+app debug gstreamer python qt6 trace udev unwind v4l python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=LGPL-2.1+
|
||||
RDEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-libs/libevent:= x11-libs/libdrm:= media-libs/libjpeg-turbo:= media-libs/libsdl2 ) debug? ( dev-libs/elfutils:= ) gstreamer? ( media-libs/gstreamer:= media-libs/gst-plugins-base ) qt6? ( dev-qt/qtbase[gui,opengl,widgets] media-libs/tiff ) python? ( python_single_target_python3_11? ( dev-python/jinja2[python_targets_python3_11(-)] dev-python/ply[python_targets_python3_11(-)] dev-python/pyyaml[python_targets_python3_11(-)] dev-python/pybind11[python_targets_python3_11(-)] ) python_single_target_python3_12? ( dev-python/jinja2[python_targets_python3_12(-)] dev-python/ply[python_targets_python3_12(-)] dev-python/pyyaml[python_targets_python3_12(-)] dev-python/pybind11[python_targets_python3_12(-)] ) python_single_target_python3_13? ( dev-python/jinja2[python_targets_python3_13(-)] dev-python/ply[python_targets_python3_13(-)] dev-python/pyyaml[python_targets_python3_13(-)] dev-python/pybind11[python_targets_python3_13(-)] ) ) trace? ( dev-util/lttng-ust:= ) udev? ( virtual/libudev ) unwind? ( sys-libs/libunwind:= ) python? ( python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_target_python3_12? ( dev-lang/python:3.12 ) python_single_target_python3_13? ( dev-lang/python:3.13 ) ) trace? ( dev-util/lttng-tools )
|
||||
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
|
||||
SLOT=0
|
||||
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/v0.5.2/libcamera-v0.5.2.tar.bz2
|
||||
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 1a27c82364f611e149966d2c47cbb083 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 dbb8c4d794033ad7e7221eaf567a6c90 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=e5b3326e4ddbf0262432998a28ded911
|
||||
@@ -1,16 +0,0 @@
|
||||
BDEPEND=dev-db/sqlite sys-libs/zlib test? ( dev-libs/boost ) app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-db/sqlite sys-libs/zlib
|
||||
DESCRIPTION=C++ library for DJ record libraries
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/xsco/libdjinterop
|
||||
INHERIT=cmake
|
||||
IUSE=test
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=LGPL-3
|
||||
RDEPEND=dev-db/sqlite sys-libs/zlib
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/xsco/libdjinterop/archive/refs/tags/0.20.2.tar.gz -> libdjinterop-0.20.2.tar.gz
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=9b7d6f7ad7120ffc09b8c1559f8f9ea3
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=dev-db/sqlite sys-libs/zlib test? ( dev-libs/boost ) app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=dev-db/sqlite sys-libs/zlib test? ( dev-libs/boost ) app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-db/sqlite sys-libs/zlib
|
||||
DESCRIPTION=C++ library for DJ record libraries
|
||||
@@ -12,5 +12,5 @@ RDEPEND=dev-db/sqlite sys-libs/zlib
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/xsco/libdjinterop/archive/refs/tags/0.22.1.tar.gz -> libdjinterop-0.22.1.tar.gz
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=9ba2ab15328e125ccaf3246158437e2f
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=dev-db/sqlite sys-libs/zlib test? ( dev-libs/boost ) app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=dev-db/sqlite sys-libs/zlib test? ( dev-libs/boost ) app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=dev-db/sqlite sys-libs/zlib
|
||||
DESCRIPTION=C++ library for DJ record libraries
|
||||
@@ -11,6 +11,6 @@ LICENSE=LGPL-3
|
||||
RDEPEND=dev-db/sqlite sys-libs/zlib
|
||||
RESTRICT=!test? ( test )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/xsco/libdjinterop/archive/refs/tags/0.21.0.tar.gz -> libdjinterop-0.21.0.tar.gz
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
SRC_URI=https://github.com/xsco/libdjinterop/archive/refs/tags/0.24.3.tar.gz -> libdjinterop-0.24.3.tar.gz
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=9ba2ab15328e125ccaf3246158437e2f
|
||||
@@ -0,0 +1,14 @@
|
||||
BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3
|
||||
DEFINED_PHASES=configure install prepare
|
||||
DEPEND=media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/ipu7-camera-bins media-libs/ipu7-camera-hal media-libs/libva x11-libs/libdrm[video_cards_intel]
|
||||
DESCRIPTION=icamera plugin for GStreamer
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/icamerasrc/tree/icamerasrc_slim_api
|
||||
INHERIT=autotools
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=LGPL-2.1
|
||||
RDEPEND=media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/ipu7-camera-bins media-libs/ipu7-camera-hal media-libs/libva x11-libs/libdrm[video_cards_intel]
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/icamerasrc/archive/4fb31db76b618aae72184c59314b839dedb42689.tar.gz -> gst-plugins-icamera-0_p20250926.tar.gz
|
||||
_eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=61ea95e85bed06a09fc7a8afc8b838f7
|
||||
@@ -5,7 +5,6 @@ EAPI=8
|
||||
HOMEPAGE=https://github.com/wastis/MediaPlayerRemoteInterface
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3+
|
||||
RDEPEND=media-tv/kodi
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/wastis/MediaPlayerRemoteInterface/archive/f37a8392b7288a483757994602ac2c88ab3bf938.tar.gz -> kodi-service-mpremote-interface-1.0.7.tar.gz
|
||||
_md5_=a62bb3859704ff5c53ebea3b151f399d
|
||||
_md5_=e994897d18dd5873d5d91f1ecd1e4287
|
||||
|
||||
@@ -5,7 +5,6 @@ EAPI=8
|
||||
HOMEPAGE=https://github.com/im85288/service.upnext
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-3+
|
||||
RDEPEND=media-tv/kodi
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/im85288/service.upnext/archive/6055716267b1780f648df78c78a576d9174bfd9b.tar.gz -> kodi-service-upnext-1.1.9.tar.gz
|
||||
_md5_=45ffbc38343c9f4c22b4dded7adecf88
|
||||
_md5_=e18019a44af2a660081eeb56703d4fc7
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
BDEPEND=dev-qt/qttest:5 dev-qt/qtxmlpatterns:5 virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5 virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
||||
DEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/chromaprint ~media-libs/libdjinterop-0.22.1 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+)] ) wavpack? ( media-sound/wavpack ) dev-qt/qtconcurrent:5
|
||||
DESCRIPTION=Advanced Digital DJ tool based on Qt
|
||||
EAPI=8
|
||||
HOMEPAGE=https://mixxx.org/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=cmake xdg udev
|
||||
IUSE=aac ffmpeg hid keyfinder lv2 modplug mp3 mp4 opus qtkeychain shout wavpack l10n_ca l10n_cs l10n_de l10n_en l10n_es l10n_fi l10n_fr l10n_gl l10n_id l10n_it l10n_ja l10n_kn l10n_nl l10n_pl l10n_pt l10n_ro l10n_ru l10n_sl l10n_sq l10n_sr l10n_tr l10n_zh-CN l10n_zh-TW
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 media-libs/chromaprint ~media-libs/libdjinterop-0.22.1 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+)] ) wavpack? ( media-sound/wavpack )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mixxxdj/mixxx/archive/refs/tags/2.4.2.tar.gz -> mixxx-2.4.2.tar.gz l10n_ca? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-ja.pdf ) l10n_kn? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-kn.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-zh_CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-zh_TW.pdf ) https://downloads.mixxx.org/manual/2.4/mixxx-manual-2.4-en.pdf
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 udev f3d9a4376ebd22131726a68e1a0a058f xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=010232aa1238ffaa1cb1925e819a3fd2
|
||||
@@ -1,6 +1,6 @@
|
||||
BDEPEND=qt5? ( dev-qt/qttest:5 dev-qt/qtxmlpatterns:5 ) virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.20.5 virtual/pkgconfig
|
||||
BDEPEND=qt5? ( dev-qt/qttest:5 dev-qt/qtxmlpatterns:5 ) virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.28.5 virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
||||
DEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= media-libs/chromaprint ~media-libs/libdjinterop-0.22.1 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml] dev-qt/qt5compat:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] ) wavpack? ( media-sound/wavpack ) qt5? ( dev-qt/qtconcurrent:5 )
|
||||
DEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= media-libs/chromaprint ~media-libs/libdjinterop-0.24.3 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib:= media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml] dev-qt/qtdeclarative:6 dev-qt/qt5compat:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] ) wavpack? ( media-sound/wavpack ) qt5? ( dev-qt/qtconcurrent:5 )
|
||||
DESCRIPTION=Advanced Digital DJ tool based on Qt
|
||||
EAPI=8
|
||||
HOMEPAGE=https://mixxx.org/
|
||||
@@ -9,9 +9,9 @@ INHERIT=cmake xdg udev
|
||||
IUSE=aac ffmpeg hid keyfinder lv2 modplug mp3 mp4 opengl opus qt5 +qt6 qtkeychain shout wavpack l10n_ca l10n_cs l10n_de l10n_en l10n_es l10n_fi l10n_fr l10n_gl l10n_id l10n_it l10n_ja l10n_nl l10n_pl l10n_pt l10n_ro l10n_ru l10n_sl l10n_sq l10n_sr l10n_tr l10n_zh-CN l10n_zh-TW
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= media-libs/chromaprint ~media-libs/libdjinterop-0.22.1 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml] dev-qt/qt5compat:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] ) wavpack? ( media-sound/wavpack )
|
||||
RDEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= media-libs/chromaprint ~media-libs/libdjinterop-0.24.3 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib:= media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml] dev-qt/qtdeclarative:6 dev-qt/qt5compat:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] ) wavpack? ( media-sound/wavpack )
|
||||
REQUIRED_USE=^^ ( qt5 qt6 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mixxxdj/mixxx/archive/refs/tags/2.5.0.tar.gz -> mixxx-2.5.0.tar.gz l10n_ca? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ja.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-zh_CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-zh_TW.pdf ) https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-en.pdf
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 udev f3d9a4376ebd22131726a68e1a0a058f xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=5aff759816ed6e9772a32d758a6f3ad9
|
||||
SRC_URI=https://github.com/mixxxdj/mixxx/archive/refs/tags/2.5.2.tar.gz -> mixxx-2.5.2.tar.gz l10n_ca? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ja.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-zh_CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-zh_TW.pdf ) https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-en.pdf
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db udev f3d9a4376ebd22131726a68e1a0a058f xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=510a171dcb288c9707f3252421367ad4
|
||||
17
metadata/md5-cache/media-sound/mixxx-2.5.3
Normal file
17
metadata/md5-cache/media-sound/mixxx-2.5.3
Normal file
@@ -0,0 +1,17 @@
|
||||
BDEPEND=qt5? ( dev-qt/qttest:5 dev-qt/qtxmlpatterns:5 ) virtual/pkgconfig app-alternatives/ninja >=dev-build/cmake-3.28.5 virtual/pkgconfig
|
||||
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
|
||||
DEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= media-libs/chromaprint ~media-libs/libdjinterop-0.24.3 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib:= media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml] dev-qt/qtdeclarative:6 dev-qt/qt5compat:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] ) wavpack? ( media-sound/wavpack ) qt5? ( dev-qt/qtconcurrent:5 )
|
||||
DESCRIPTION=Advanced Digital DJ tool based on Qt
|
||||
EAPI=8
|
||||
HOMEPAGE=https://mixxx.org/
|
||||
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
|
||||
INHERIT=cmake xdg udev
|
||||
IUSE=aac ffmpeg hid keyfinder lv2 modplug mp3 mp4 opengl opus qt5 +qt6 qtkeychain shout wavpack l10n_ca l10n_cs l10n_de l10n_en l10n_es l10n_fi l10n_fr l10n_gl l10n_id l10n_it l10n_ja l10n_nl l10n_pl l10n_pt l10n_ro l10n_ru l10n_sl l10n_sq l10n_sr l10n_tr l10n_zh-CN l10n_zh-TW
|
||||
KEYWORDS=~amd64 ~arm64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-cpp/benchmark dev-cpp/gtest dev-cpp/ms-gsl dev-db/sqlite dev-libs/glib:2 dev-libs/protobuf:= media-libs/chromaprint ~media-libs/libdjinterop-0.24.3 media-libs/flac:= media-libs/libebur128 media-libs/libid3tag:= media-libs/libogg media-libs/libsndfile media-libs/libsoundtouch media-libs/libvorbis media-libs/portaudio[alsa] media-libs/portmidi media-libs/rubberband:= media-libs/taglib:= media-libs/vamp-plugin-sdk media-sound/lame sci-libs/fftw:3.0= sys-power/upower virtual/glu virtual/libusb:1 virtual/opengl virtual/udev x11-libs/libX11 aac? ( media-libs/faad2 media-libs/libmp4v2 ) ffmpeg? ( media-video/ffmpeg:= ) hid? ( dev-libs/hidapi ) keyfinder? ( media-libs/libkeyfinder ) lv2? ( media-libs/lilv ) modplug? ( media-libs/libmodplug ) mp3? ( media-libs/libmad ) mp4? ( media-libs/libmp4v2:= ) opus? ( media-libs/opusfile ) qt5? ( dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport dev-qt/qtscript:5[scripttools] dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 dev-qt/qtxml:5 ) qt6? ( dev-qt/qtbase[concurrent,cups,dbus,gui,network,opengl,sql,widgets,xml] dev-qt/qtdeclarative:6 dev-qt/qt5compat:6 dev-qt/qtshadertools:6 dev-qt/qtsvg:6 ) qtkeychain? ( dev-libs/qtkeychain:=[qt5(+),qt6?] ) wavpack? ( media-sound/wavpack )
|
||||
REQUIRED_USE=^^ ( qt5 qt6 )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/mixxxdj/mixxx/archive/refs/tags/2.5.3.tar.gz -> mixxx-2.5.3.tar.gz l10n_ca? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ca.pdf ) l10n_cs? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-cs.pdf ) l10n_de? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-de.pdf ) l10n_en? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-en.pdf ) l10n_es? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-es.pdf ) l10n_fi? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-fi.pdf ) l10n_fr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-fr.pdf ) l10n_gl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-gl.pdf ) l10n_id? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-id.pdf ) l10n_it? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-it.pdf ) l10n_ja? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ja.pdf ) l10n_nl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-nl.pdf ) l10n_pl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-pl.pdf ) l10n_pt? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-pt.pdf ) l10n_ro? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ro.pdf ) l10n_ru? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-ru.pdf ) l10n_sl? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sl.pdf ) l10n_sq? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sq.pdf ) l10n_sr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-sr.pdf ) l10n_tr? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-tr.pdf ) l10n_zh-CN? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-zh_CN.pdf ) l10n_zh-TW? ( https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-zh_TW.pdf ) https://downloads.mixxx.org/manual/2.5/mixxx-manual-2.5-en.pdf
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db udev f3d9a4376ebd22131726a68e1a0a058f xdg 3ef49a87c52c8b77c476351195dfe575 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=510a171dcb288c9707f3252421367ad4
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Full-featured MP4 format, MPEG DASH, HLS, CMAF SDK and tools
|
||||
EAPI=8
|
||||
@@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/axiomatic-systems/Bento4/archive/refs/tags/v1.6.0-641.tar.gz -> bento4-1.6.0.641.tar.gz
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=ce8ffbe1f5d2f78353405f2251a1c2b3
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Full-featured MP4 format, MPEG DASH, HLS, CMAF SDK and tools
|
||||
EAPI=8
|
||||
@@ -9,5 +9,5 @@ KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/axiomatic-systems/Bento4/archive/3bdc891602d19789b8e8626e4a3e613a937b4d35.tar.gz -> bento4-1.6.0.641_p20241115.tar.gz
|
||||
_eclasses_=cmake 10a50dfaf728b802fcfd37f8d0da9056 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multilib b2a329026f2e404e9e371097dda47f96 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=7ae93baa39fe4b8dce1e95130989779f
|
||||
|
||||
13
metadata/md5-cache/media-video/bento4-1.6.0.641_p20251125
Normal file
13
metadata/md5-cache/media-video/bento4-1.6.0.641_p20251125
Normal file
@@ -0,0 +1,13 @@
|
||||
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.28.5
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DESCRIPTION=Full-featured MP4 format, MPEG DASH, HLS, CMAF SDK and tools
|
||||
EAPI=8
|
||||
HOMEPAGE=https://www.bento4.com/ https://github.com/axiomatic-systems/Bento4
|
||||
INHERIT=cmake
|
||||
IUSE=+apps
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/axiomatic-systems/Bento4/archive/0010f4fd420ef7d6504d2e401a46c15f4ef3d3ca.tar.gz -> bento4-1.6.0.641_p20251125.tar.gz
|
||||
_eclasses_=cmake 22e4e58d68692975dc74424dc9b12fb7 flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=9202d542198c4628bebd15dd2dd32d71
|
||||
16
metadata/md5-cache/media-video/clapper-0.8.0
Normal file
16
metadata/md5-cache/media-video/clapper-0.8.0
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-libs/appstream-glib vala? ( || ( dev-lang/vala:0.56[vapigen(+)] ) ) doc? ( dev-util/gi-docgen media-gfx/graphviz ) >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install postinst postrm prepare test
|
||||
DEPEND=>=dev-libs/glib-2.76.0 >=media-libs/gstreamer-1.24.0:= >=gui-libs/gtk-4.10.0 >=gui-libs/libadwaita-1.4.0 >=media-libs/gst-plugins-base-1.24.0 introspection? ( dev-libs/gobject-introspection ) plugins? ( dev-libs/libpeas:2 ) server? ( net-libs/libsoup:3.0 net-libs/libmicrodns )
|
||||
DESCRIPTION=Modern media player designed for simplicity
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/Rafostar/clapper
|
||||
INHERIT=meson vala gnome2-utils
|
||||
IUSE=doc gstreamer introspection plugins +server vala
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-3 LGPL-2.1
|
||||
RDEPEND=>=dev-libs/glib-2.76.0 >=media-libs/gstreamer-1.24.0:= >=gui-libs/gtk-4.10.0 >=gui-libs/libadwaita-1.4.0 >=media-libs/gst-plugins-base-1.24.0 introspection? ( dev-libs/gobject-introspection ) plugins? ( dev-libs/libpeas:2 ) server? ( net-libs/libsoup:3.0 net-libs/libmicrodns )
|
||||
REQUIRED_USE=doc? ( introspection )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/Rafostar/clapper/archive/0.8.0.tar.gz -> clapper-0.8.0.tar.gz
|
||||
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 1a27c82364f611e149966d2c47cbb083 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-utils-r1 dbb8c4d794033ad7e7221eaf567a6c90 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
|
||||
_md5_=14121bd26a7df99057bfdab0edb349d6
|
||||
16
metadata/md5-cache/media-video/ipu7-drivers-0_p20250928
Normal file
16
metadata/md5-cache/media-video/ipu7-drivers-0_p20250928
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig )
|
||||
DEFINED_PHASES=compile install postinst setup
|
||||
DEPEND=virtual/linux-sources
|
||||
DESCRIPTION=Intel IPU7 MIPI camera kernel driver
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/ipu7-drivers
|
||||
IDEPEND=sys-apps/kmod[tools]
|
||||
INHERIT=linux-mod-r1 toolchain-funcs
|
||||
IUSE=dist-kernel modules-compress modules-sign +strip
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/ipu7-drivers/archive/62a3704433c35d3bdfa679fc4dee74e133ce815c.tar.gz -> ipu7-drivers-0_p20250928.tar.gz
|
||||
_eclasses_=dist-kernel-utils a40de3638d3f7a89f4c45d1a62b90e20 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 2b1749a4ea9e1aea780b1b54dd2f65f1 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=b03390275620b01e8b7e1548645a0f46
|
||||
16
metadata/md5-cache/media-video/ipu7-drivers-0_p20251112
Normal file
16
metadata/md5-cache/media-video/ipu7-drivers-0_p20251112
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig )
|
||||
DEFINED_PHASES=compile install postinst setup
|
||||
DEPEND=virtual/linux-sources
|
||||
DESCRIPTION=Intel IPU7 MIPI camera kernel driver
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/ipu7-drivers
|
||||
IDEPEND=sys-apps/kmod[tools]
|
||||
INHERIT=linux-mod-r1 toolchain-funcs
|
||||
IUSE=dist-kernel modules-compress modules-sign +strip
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/ipu7-drivers/archive/fc335577f95bf6ca3afc706d1ceab8297db4f010.tar.gz -> ipu7-drivers-0_p20251112.tar.gz
|
||||
_eclasses_=dist-kernel-utils a40de3638d3f7a89f4c45d1a62b90e20 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 2b1749a4ea9e1aea780b1b54dd2f65f1 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=98532b9e46c1969361fbc259483141a0
|
||||
14
metadata/md5-cache/media-video/totem-video-thumbnailer-43.2
Normal file
14
metadata/md5-cache/media-video/totem-video-thumbnailer-43.2
Normal file
@@ -0,0 +1,14 @@
|
||||
BDEPEND=>=sys-devel/gettext-0.19.8 virtual/pkgconfig >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
|
||||
DEFINED_PHASES=compile configure install prepare test unpack
|
||||
DEPEND=!media-video/totem >=dev-libs/glib-2.72.0:2 >=media-libs/gstreamer-1.21.1:1.0 >=dev-libs/totem-pl-parser-3.26.5 x11-libs/gdk-pixbuf:2
|
||||
DESCRIPTION=GNOME Video thumbnailer
|
||||
EAPI=8
|
||||
HOMEPAGE=https://gitlab.gnome.org/GNOME/totem-video-thumbnailer/
|
||||
INHERIT=meson
|
||||
KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86
|
||||
LICENSE=GPL-2+
|
||||
RDEPEND=!media-video/totem >=dev-libs/glib-2.72.0:2 >=media-libs/gstreamer-1.21.1:1.0 >=dev-libs/totem-pl-parser-3.26.5 x11-libs/gdk-pixbuf:2 >=media-plugins/gst-plugins-meta-1.21.1:1.0 >=media-plugins/gst-plugins-taglib-1.21.1:1.0
|
||||
SLOT=0
|
||||
SRC_URI=https://download.gnome.org/sources/totem/43/totem-43.2.tar.xz
|
||||
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 1a27c82364f611e149966d2c47cbb083 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 3a59a39e97af0f7c03f49cf3c22f262b python-utils-r1 dbb8c4d794033ad7e7221eaf567a6c90 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=bad4b3533d0d8e5a1620762a9cf11ffa
|
||||
16
metadata/md5-cache/media-video/usbio-drivers-0_p20251030
Normal file
16
metadata/md5-cache/media-video/usbio-drivers-0_p20251030
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig )
|
||||
DEFINED_PHASES=compile install postinst prepare setup
|
||||
DEPEND=virtual/linux-sources
|
||||
DESCRIPTION=USBIO drivers for Meteor Lake, Arrow Lake, Lunar Lake and Panther Lake platforms
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/usbio-drivers
|
||||
IDEPEND=sys-apps/kmod[tools]
|
||||
INHERIT=linux-mod-r1 toolchain-funcs
|
||||
IUSE=dist-kernel modules-compress modules-sign +strip
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/usbio-drivers/archive/ee221ecae757d43ab3fb39433f389373b2026109.tar.gz -> usbio-drivers-0_p20251030.tar.gz
|
||||
_eclasses_=dist-kernel-utils a40de3638d3f7a89f4c45d1a62b90e20 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 2b1749a4ea9e1aea780b1b54dd2f65f1 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=762b772b61fe0f40dbdae365fb0c3db9
|
||||
15
metadata/md5-cache/media-video/v4l2-relayd-0.1.5
Normal file
15
metadata/md5-cache/media-video/v4l2-relayd-0.1.5
Normal file
@@ -0,0 +1,15 @@
|
||||
BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20250306 || ( >=dev-build/automake-1.18:1.18 >=dev-build/automake-1.17-r1:1.17 ) || ( >=dev-build/autoconf-2.72-r1:2.72 ) >=dev-build/libtool-2.4.7-r3 virtual/pkgconfig
|
||||
DEFINED_PHASES=configure prepare
|
||||
DEPEND=dev-libs/glib:= media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0
|
||||
DESCRIPTION=Streaming relay for v4l2loopback using GStreamer
|
||||
EAPI=8
|
||||
HOMEPAGE=https://git.launchpad.net/v4l2-relayd
|
||||
INHERIT=autotools systemd
|
||||
IUSE=+icamera
|
||||
KEYWORDS=~amd64
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=dev-libs/glib:= media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 icamera? ( media-plugins/gst-plugins-icamera ) media-video/v4l2loopback
|
||||
SLOT=0
|
||||
SRC_URI=https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/v4l2-relayd/0.1.5-0ubuntu1/v4l2-relayd_0.1.5.orig.tar.xz -> v4l2-relayd-0.1.5.tar.xz
|
||||
_eclasses_=autotools 955b29ccd82c1df4755e5f37748d2fa6 gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 libtool c81bd096be5f4c82f4e8f156ef112402 systemd a964c0cbe818b5729da1dbfcee5be861 toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=13558ff95707f5290c704dab72cac60b
|
||||
16
metadata/md5-cache/media-video/vision-drivers-0_p20250606
Normal file
16
metadata/md5-cache/media-video/vision-drivers-0_p20250606
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig )
|
||||
DEFINED_PHASES=compile install postinst setup
|
||||
DEPEND=virtual/linux-sources
|
||||
DESCRIPTION=Intel Vision Driver for Intel Lunar Lake (LNL) CVS-enabled Platforms
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/vision-drivers
|
||||
IDEPEND=sys-apps/kmod[tools]
|
||||
INHERIT=linux-mod-r1 toolchain-funcs
|
||||
IUSE=dist-kernel modules-compress modules-sign +strip
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/vision-drivers/archive/92a717e02ef30f4b5fad99271d0ec77c3364e4ea.tar.gz -> vision-drivers-0_p20250606.tar.gz
|
||||
_eclasses_=dist-kernel-utils a40de3638d3f7a89f4c45d1a62b90e20 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 2b1749a4ea9e1aea780b1b54dd2f65f1 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=bce8eaec74031f233a51792a3eeb8062
|
||||
16
metadata/md5-cache/media-video/vision-drivers-0_p20251112
Normal file
16
metadata/md5-cache/media-video/vision-drivers-0_p20251112
Normal file
@@ -0,0 +1,16 @@
|
||||
BDEPEND=dev-util/pahole sys-apps/kmod[tools] modules-sign? ( dev-libs/openssl virtual/pkgconfig )
|
||||
DEFINED_PHASES=compile install postinst setup
|
||||
DEPEND=virtual/linux-sources
|
||||
DESCRIPTION=Intel Vision Driver for Intel Lunar Lake (LNL) CVS-enabled Platforms
|
||||
EAPI=8
|
||||
HOMEPAGE=https://github.com/intel/vision-drivers
|
||||
IDEPEND=sys-apps/kmod[tools]
|
||||
INHERIT=linux-mod-r1 toolchain-funcs
|
||||
IUSE=dist-kernel modules-compress modules-sign +strip
|
||||
KEYWORDS=~amd64 ~x86
|
||||
LICENSE=GPL-2
|
||||
RDEPEND=sys-apps/kmod[tools] dist-kernel? ( virtual/dist-kernel:= )
|
||||
SLOT=0
|
||||
SRC_URI=https://github.com/intel/vision-drivers/archive/a8d772f261bc90376944956b7bfd49b325ffa2f2.tar.gz -> vision-drivers-0_p20251112.tar.gz
|
||||
_eclasses_=dist-kernel-utils a40de3638d3f7a89f4c45d1a62b90e20 edo a5e294016aa84979fcb2459749eb80b2 linux-info efd923656513c879204fec6638eadee5 linux-mod-r1 2b1749a4ea9e1aea780b1b54dd2f65f1 mount-boot-utils 2551bac1a772f4b6beacb494a750ae92 multiprocessing 1e32df7deee68372153dca65f4a7c21f toolchain-funcs 98d9f464d912ae6b7316fb8a3721f5db
|
||||
_md5_=aa47a25b54d39c9f3bf3af1438c89209
|
||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user