diff --git a/app-misc/omencore-bin/Manifest b/app-misc/omencore-bin/Manifest new file mode 100644 index 0000000000..90bbc98a60 --- /dev/null +++ b/app-misc/omencore-bin/Manifest @@ -0,0 +1 @@ +DIST OmenCore-3.8.0-linux-x64.zip 45691645 BLAKE2B a1ef9c8104318f15fb7417daeaecb781f50695c1adea2ad85dfc3fc7412797fd6aa051ef9dab4b0ee595bbecf0ad91f215b2d98c3a2e4db5a80fe40d09d3a353 SHA512 961fe4946f2366440ff66580e63044282ab8a582a2a7869d1193f881bc0d2f1fda156c4e2f67aaf3e209d837fab0c89bd0352d8552478becfc68ced33544f98f diff --git a/app-misc/omencore-bin/files/omencore-gui.desktop b/app-misc/omencore-bin/files/omencore-gui.desktop new file mode 100644 index 0000000000..7e4101b73c --- /dev/null +++ b/app-misc/omencore-bin/files/omencore-gui.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Name=OmenCore +Comment=Advanced Performance Control for HP Omen Laptops +Exec=omencore-gui +Icon=preferences-system +Terminal=false +Categories=System;HardwareSettings; \ No newline at end of file diff --git a/app-misc/omencore-bin/metadata.xml b/app-misc/omencore-bin/metadata.xml new file mode 100644 index 0000000000..ab8e527276 --- /dev/null +++ b/app-misc/omencore-bin/metadata.xml @@ -0,0 +1,17 @@ + + + + + samuel@hurtadom.dev + Samuel Hurtado Marin + + + theantipopau/omencore + https://github.com/theantipopau/omencore/issues + + + OmenCore is an independent control center for HP OMEN and Victus systems. + It replaces OMEN Gaming Hub with local-first fan control, performance + profiles, keyboard lighting, hardware monitoring, OSD, and diagnostics. + + \ No newline at end of file diff --git a/app-misc/omencore-bin/omencore-bin-3.8.0.ebuild b/app-misc/omencore-bin/omencore-bin-3.8.0.ebuild new file mode 100644 index 0000000000..345f1ea6f5 --- /dev/null +++ b/app-misc/omencore-bin/omencore-bin-3.8.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit desktop +DESCRIPTION="OmenCore is an Advanced Performance Control for HP Omen Laptops" +HOMEPAGE="https://omencore.info/" +SRC_URI="https://github.com/theantipopau/omencore/releases/download/v${PV}/OmenCore-${PV}-linux-x64.zip" +S="${WORKDIR}" #src unzip /work directory +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +RESTRICT="mirror strip" +QA_PREBUILT="*" +BDEPEND="app-arch/unzip" +src_install() { + insinto /opt/omencore-bin + doins -r * + fperms 755 /opt/omencore-bin/omencore-cli + fperms 755 /opt/omencore-bin/omencore-gui + dosym -r /opt/omencore-bin/omencore-cli /usr/bin/omencore-cli + dosym -r /opt/omencore-bin/omencore-gui /usr/bin/omencore-gui + domenu "${FILESDIR}"/omencore-gui.desktop +} +pkg_postinst() { + einfo "omencore-gui: launch as normal user for monitoring (it's in the app menu)" + einfo "omencore-cli: use 'omencore-cli' as root for fan/thermal/RGB control" +}