Compare commits

...

33 Commits

Author SHA1 Message Date
3d662c4840 updated tarball 2025-03-15 15:49:28 -07:00
acd73eb6c5 86Box 4.2.2 unofficial rc1 ebuild 2025-03-15 15:45:24 -07:00
9c80566fe2 readme update 2025-02-05 12:53:38 -08:00
635b0a5b17 woof ebuild manifest 2025-02-03 19:38:40 -08:00
9297633628 adding use flags to crispy doom 2025-02-02 14:42:43 -08:00
049ab070ca crispy doom version bump 2025-02-02 14:35:27 -08:00
d12c2d99c1 cellar 0.4 ebuild should actually work now 2025-02-02 14:23:51 -08:00
15f53393db forgotten manifest 2024-11-16 19:07:10 -08:00
6ad6ca8e14 gzdoom 4.13.2: zmusic version bump 2024-11-16 19:06:05 -08:00
bbd6902e21 forgot metadata cache 2024-11-09 18:43:43 -08:00
a59e47716b games-fps/gzdoom: version bump 2024-11-09 18:43:18 -08:00
fbbc79fb22 games-fps/crispy-doom-6.0: new package 2024-04-20 11:55:16 -07:00
5b27d31623 change upstream to correct ZDoom source 2024-04-05 16:04:35 -07:00
efb9e571d7 games-fps/gzdoom: remove also headers patch 2024-04-05 15:56:53 -07:00
4c7d1b9613 games-fps/gzdoom: remove gcc 13 patch 2024-04-05 15:55:17 -07:00
bf0eda0c4e hashfix 2024-04-05 11:29:43 -07:00
2860d205cb games-fps/gzdoom: fix patches 2024-04-04 12:38:25 -07:00
4226b69b0c games-fps/gzdoom: new package, add 4.11.3 2024-04-04 10:57:28 -07:00
c86accf588 net-misc/yt-dlp: treeclean 2024-03-21 17:17:13 -07:00
d96987fe58 app-emulation/cellar-0.4 2024-03-18 17:53:05 -07:00
1d5b2870a7 =net-misc/yt-dlp-2024.03.10 2024-03-18 14:58:36 -07:00
e5dbbe7832 added missing md5-cache updates 2024-03-18 14:54:00 -07:00
d8622c573e slightly edit repositories.xml desc 2024-03-18 14:53:33 -07:00
2cdf6e3081 games-fps/gzdoom: treeclean 2023-07-05 19:37:50 -07:00
ea3b35cb21 games-fps/gzdoom: update Manifest 2023-06-14 17:06:35 -07:00
208ddac3b4 games-fps/gzdoom: included a file from base gentoo repo because i forgot
those weren't automatically included
2023-06-14 17:04:54 -07:00
556b633aa5 games-fps/gzdoom: new package, add 4.10.0-r1 2023-06-14 16:55:47 -07:00
f95a6c8e4c profiles: fixed incorrect repo name filename 2023-05-14 12:41:24 -07:00
1614cbc676 games-util/zdbsp: update Manifest 2023-05-13 21:41:04 -07:00
e0fc79d4e7 games-util/zdbsp: update LICENSE 2023-05-13 21:39:57 -07:00
99a1d845ed repositories.xml 2023-05-13 21:37:20 -07:00
4a1db616a5 games-util/zdbsp: new package, add 1.19 2023-05-13 21:22:06 -07:00
a86a1a9c72 base gentoo overlay files 2023-05-13 18:58:11 -07:00
36 changed files with 908 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
# overlaytopleft # overlaytopleft
A Portage overlay, for whatever the kids use instead of layman nowadays A Portage overlay
## Quick Setup
as root:
```
emerge -n eselect-repository
# i'm not currently in the public listings
eselect repository add overlaytopleft git https://vcs.otl-hga.net/nicole/overlaytopleft.git
eselect repository enable overlaytopleft
```

View File

@@ -0,0 +1,75 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake flag-o-matic
DESCRIPTION="Emulator of x86-based machines based on PCem"
HOMEPAGE="https://github.com/86Box/86Box"
SRC_URI="https://heap.otl-hga.net/file/Bc5K7eghZCw3zhrR/L70T8Gt4jTgHU1G0/86Box-4.2.2_rc1.tar.gz?dl=1 -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
#KEYWORDS="~amd64"
IUSE="experimental +fluidsynth +munt new-dynarec +openal +qt6 +threads vde"
DEPEND="
app-emulation/faudio
dev-libs/libevdev
media-libs/freetype:2=
media-libs/libpng:=
media-libs/libsdl2
media-libs/openal
media-libs/rtmidi
net-libs/libslirp
sys-libs/zlib
qt6? ( x11-libs/libXi )
vde? ( net-misc/vde )
"
RDEPEND="
${DEPEND}
fluidsynth? ( media-sound/fluidsynth )
munt? ( media-libs/munt-mt32emu )
openal? ( media-libs/openal )
qt6? (
dev-qt/qtbase:6[gui,network,opengl,widgets]
dev-qt/qttranslations:6
kde-frameworks/extra-cmake-modules
)
"
BDEPEND="virtual/pkgconfig"
src_configure() {
# LTO needs to be filtered
# See https://bugs.gentoo.org/854507
filter-lto
append-flags -fno-strict-aliasing
local mycmakeargs=(
-DCPPTHREADS="$(usex threads)"
-DDEV_BRANCH="$(usex experimental)"
-DDYNAREC="ON"
-DMUNT_EXTERNAL="$(usex munt)"
-DFLUIDSYNTH="$(usex fluidsynth)"
-DMINITRACE="OFF"
-DMUNT="$(usex munt)"
-DNEW_DYNAREC="$(usex new-dynarec)"
-DOPENAL="$(usex openal)"
-DPREFER_STATIC="OFF"
-DRTMIDI="ON"
-DQT="$(usex qt6)"
-DRELEASE="ON"
$(usex qt6 '-DUSE_QT6=ON' '')
-DHAS_VDE="$(usex vde "${EPREFIX}/usr/$(get_libdir)/libvdeplug.so" "HAS_VDE-NOTFOUND")"
)
cmake_src_configure
}
pkg_postinst() {
elog "In order to use 86Box, you will need some roms for various emulated systems."
elog "See https://github.com/86Box/roms for more information."
}

View File

@@ -0,0 +1,2 @@
DIST 86Box-4.2.2_rc1.tar.gz 5811618 BLAKE2B c3cf12ca5c3386c29c7f15f93df0de4478788cb33547655f66df9d36260f8bf64e88cb01e2e8e9b6424ca1f545896c9e3cb10f8673f282fb90f4b51176711dc5 SHA512 149cd09372880995fde81601fe943e26d3837a630051f2638e0cc4d67886d6cab070ac4c9aae4b73cdb2b9bd0d8def2d3f662e54bbcd3ff39d5fc800cf704a6f
EBUILD 86Box-4.2.2_rc1.ebuild 1815 BLAKE2B ea0f0aec28751a3eb9d632a0801b2c38342cc511fecd933a50807aa930a60c3114aa2e9b428a1f53fcbcc3d6013acd1546ecb53edea272bd26f8bd56ad622b17 SHA512 8ae632508d9616ac3b93adbf99bda138c1cdfd6c04f09b133fcb7fec6af071258c6f936d7d0899e1ca4a7256bea56b1e81bec8031824409ba37e9547f645ff57

View File

@@ -0,0 +1,2 @@
DIST cellar-0.4.tar.gz 130770 BLAKE2B 53cd4656071ce354899b3c21aeaa73e57d1d0c5d80718c52043240ea3446a3d69f959dd32e80c8c5c38f3d0f5f70d15aa8864dfa4c0cd6b18f472b1a82fc94b2 SHA512 fd9bd65fcd1e163ce9f428f67dc4c40eaf60dbcc5bf28eb5a1d2dd7a1886095117d1721cef9304b56a9373fd10d6cc40fa501764773e4134f518950959e0c398
EBUILD cellar-0.4.ebuild 430 BLAKE2B 3ce735dfd9b90621ff3d952e86a6e269021521a75517c4b7e4cc9cad76e660bdc44323e6a1c5abc0a301dae0193cf38ed9dbe431e45318cdd20dce996c444ef4 SHA512 b579d7e2db3288fe231d9ff5aaddf934802258607ec99e1eae2def6080304793fdbf07668d9347a9245983069f7fab6d244844be175ca7e7b46b48f891570783

View File

@@ -0,0 +1,39 @@
EAPI=8
inherit cmake
DESCRIPTION="WINE bottle management tool"
HOMEPAGE="https://vcs.otl-hga.net/nicole/cellar/"
SRC_URI="https://vcs.otl-hga.net/nicole/cellar/archive/v${PV}.tar.gz -> cellar-${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"
DEPEND="
app-arch/gzip
dev-libs/crypto++
>=dev-lang/python-3.7
"
RDEPEND="${DEPEND}"
BDEPEND="
app-text/ronn-ng
doc? ( dev-python/sphinx )
"
src_prepare() {
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
)
cmake_src_configure
}
src_install() {
cmake_src_install
}

View File

@@ -0,0 +1,5 @@
DIST crispy-doom-6.0.tar.gz 2499918 BLAKE2B fc864ae55100db0d074d14eae795bd603b355fba8eaa783b564b167cf1bf65ff1e97f4640d2b0d56f8c4ec076125fd0f0e2a95bc5eac7251997e9f7757f4d295 SHA512 44ab9ffea1febe7eaab0c28d5dd178df821c200354aa9aeecd0b84dbe98419a037416f8d8e6176611dbd1a2dba8ec050d9e7267c61dcf8640c08c422765b270f
DIST crispy-doom-7.0.tar.gz 2583285 BLAKE2B 307a2f98e37ac902e938433d9ee660e301ea38f1f0404354e1c0e3cb7d7c06c576da6711465f050ab7a25e2417edc8845db3ffb018b5eec588799d08084ff578 SHA512 d2e182f8a81b164d09ff0ed2bb7f507349f9edf55b3d1a62b54a0cc76dd3b407722704dd3e58d5736018807c8c39147401972e05f0d6ebb8606d016e2b68b37f
EBUILD crispy-doom-6.0.ebuild 1235 BLAKE2B 80ce432db5b8f118f6c9082f9b59d826fced7018b7a081f8cda2bfb16409784d0a94cfc31014558fb7d085e70b9dd1279ab85ebbb9033d8ad723625b7840b3e8 SHA512 f9f8580ed5bf3c3ff35ef886be2e0523c2bd3f59c35d1a27b391c5e0205d0f48263bd41bc6abfd05652f6d8d832679e370ff6e250c973107e144df0438a6edfd
EBUILD crispy-doom-7.0.ebuild 1375 BLAKE2B 540b955f57ff1eedfcc8000b6b66679d0dcb1ac7b581baba55fe7eb3203de5abacbd268923e3085990aa9b7586c97cb730544f9653fd2109ec2029d5c5449c56 SHA512 dec140e413e9335df1046e2892cb69e0d88aa5046d511fb157e1e5852f56efdef5742bee2a719f37baf1a624816d0bc5f055ec7b9006aa252ae084c0275b5eb3
MISC metadata.xml 244 BLAKE2B c868d151b81a299adb629476d8a1cf4aef25f0bfe22a0d3d1d0522dda5b9f18b7b6628655a1cea8a0ecf22c1284230b7fda98ee78eec53338d73e93d4df232d3 SHA512 e8dd6eabe095c2a205abbec715ce1d5ac0bd4209a78189b0141d2472165ca7dbee91cd49555f6861efa7a437ba621ae421308522b4dea9b5c6299721819fdafa

View File

@@ -0,0 +1,66 @@
EAPI=7
PYTHON_COMPAT=( python3_{9..11} )
inherit autotools prefix python-any-r1 xdg
DESCRIPTION="Fork of Chocolatey Doom with visual crispness enhancements"
HOMEPAGE="https://github.com/fabiangreffrath/crispy-doom"
SRC_URI="https://github.com/fabiangreffrath/crispy-doom/archive/refs/tags/crispy-doom-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc libsamplerate +midi png vorbis"
DEPEND="
media-libs/libsdl2[video]
media-libs/sdl2-mixer[midi?,vorbis?]
media-libs/sdl2-net
media-sound/fluidsynth
sys-libs/zlib
libsamplerate? ( media-libs/libsamplerate )
png? ( media-libs/libpng:= )
"
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/${PN}-${P}"
DOCS=(
"AUTHORS"
"ChangeLog"
"NEWS.md"
"NOT-BUGS.md"
"PHILOSOPHY.md"
"README.md"
"README.Music.md"
"README.Strife.md"
)
src_prepare() {
default
hprefixify src/d_iwad.c
eautoreconf
}
src_configure() {
econf \
--enable-bash-completion \
$(use_enable doc) \
--disable-fonts \
--disable-icons \
$(use_with libsamplerate) \
$(use_with png libpng)
}
src_install() {
emake DESTDIR="${D}" install
# Remove redundant documentation files
rm -r "${ED}/usr/share/doc/"* || die
einstalldocs
}

View File

@@ -0,0 +1,72 @@
EAPI=7
PYTHON_COMPAT=( python3_{9..11} )
inherit autotools prefix python-any-r1 xdg
DESCRIPTION="Fork of Chocolatey Doom with visual crispness enhancements"
HOMEPAGE="https://github.com/fabiangreffrath/crispy-doom"
SRC_URI="https://github.com/fabiangreffrath/crispy-doom/archive/refs/tags/crispy-doom-${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc fluidsynth libsamplerate +midi png truecolor vorbis zlib"
DEPEND="
media-libs/libsdl2[video]
media-libs/sdl2-mixer[midi?,vorbis?]
media-libs/sdl2-net
media-sound/fluidsynth
sys-libs/zlib
libsamplerate? ( media-libs/libsamplerate )
png? ( media-libs/libpng:= )
"
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/${PN}-${P}"
DOCS=(
"AUTHORS"
"CHANGELOG.md"
"HACKING.md"
"NEWS.md"
"NOT-BUGS.md"
"PHILOSOPHY.md"
"README.md"
"README.Music.md"
"README.Strife.md"
"RELEASE_NOTES.md"
)
src_prepare() {
default
hprefixify src/d_iwad.c
eautoreconf
}
src_configure() {
econf \
--enable-bash-completion \
$(use_enable doc) \
$(use_enable truecolor) \
--disable-fonts \
--disable-icons \
$(use_with libsamplerate) \
$(use_with png libpng) \
$(use_with fluidsynth) \
$(use_with zlib)
}
src_install() {
emake DESTDIR="${D}" install
# Remove redundant documentation files
rm -r "${ED}/usr/share/doc/"* || die
einstalldocs
}

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>nicole@otl-hga.net</email>
<name>Nicole O'Connor</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,6 @@
AUX gzdoom-4.7.1-Introduce-the-BUILD_NONFREE-option.patch 1209 BLAKE2B b3cf80ab4d6328dbcb14ceb9514883ed58b8086dab02182f4cf8964140095dd8d6ac0503c68a4c7442c0f9cc92b4bb6b3e084eee026be52842413e15118a13be SHA512 a08c29fe6b867dbbe60035c99c31d1bce73c1ff37ca2c15f659e060b77366f6fcdc11d2319dee3331d9874115e92566b9c0a6364604869f3815fbb0ee7179ef6
DIST gzdoom-4.11.3.tar.gz 24354699 BLAKE2B 3ff436ad477a379f4ebeb68c211a85f77b446130687f754f5835a3e82044dd641d0301fda4d5e2fcf35d8eeb4cf511147ea8842ec377576b5ed840a6c59ec4aa SHA512 0abe69f85e2f0946e92d6ae2bbc4710c1e184a6748d4ef8a5f0c0daf31b67779b9085154877467144da650314e6c8dcde429cd47db06b17ec1ea66c63759568d
DIST gzdoom-4.13.2.tar.gz 25950370 BLAKE2B f9f04076b06cef6c9f0277dade1d51a67f220e1118c5f701889f5201e6987d6d3f10a3fa6108d88665b1052e8118ed21b23917e708531bc40e049029da2d5561 SHA512 4d22c9298a6bb69ebbf55cb52137b2c3d34c1e5e77409e5f271ddcf31fce60d93a41701803771018dc479a43b5de7252bb83b60a3592bdce263b757541206026
EBUILD gzdoom-4.11.3.ebuild 2304 BLAKE2B 9e4acf494f257f47348bfcf94d10005b966fc367c3a151f3ace71e0a04fcc45264e650f6e07f790c62a7affe119b522d2718e9ba7cc70d90c63ca0ab9c70975e SHA512 833ead6d3e102383869217d8a2e49fb9d0b6ca15543102a41676e36996aff88d25ec142d4a1535fb85df407d67f558efb9b172cb1ce38c47484a99e96a429f17
EBUILD gzdoom-4.13.2.ebuild 2618 BLAKE2B 0e5386af260881f69543ddc6001059326cde6b9f03ee714e721d48fe3429a4ead6626ae9ce37e8461efac3436282b0d12b99c06756c2c6f1125053ba6212d714 SHA512 5bec3284385bb35f830cf4c04ffdc8425ee9e72decff818f43e208757391a7b23ada524cbb8d217293d6298e9e603165e435961f856ce3cbd42bebabb0272ff3
MISC metadata.xml 244 BLAKE2B c868d151b81a299adb629476d8a1cf4aef25f0bfe22a0d3d1d0522dda5b9f18b7b6628655a1cea8a0ecf22c1284230b7fda98ee78eec53338d73e93d4df232d3 SHA512 e8dd6eabe095c2a205abbec715ce1d5ac0bd4209a78189b0141d2472165ca7dbee91cd49555f6861efa7a437ba621ae421308522b4dea9b5c6299721819fdafa

View File

@@ -0,0 +1,36 @@
From d164cfcde29980c23ece15f0be1b09dac5853843 Mon Sep 17 00:00:00 2001
From: William Breathitt Gray <vilhelm.gray@gmail.com>
Date: Sat, 31 Aug 2019 21:23:23 +0900
Subject: [PATCH] Introduce the BUILD_NONFREE option
This allow users to disable building nonfree components (brightmaps.pk3,
game_support.pk3, and game_widescreen_gfx.pk3) if they so desire.
---
CMakeLists.txt | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9013d8921..77bd703b1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -411,11 +411,14 @@ add_subdirectory( libraries/lzma )
add_subdirectory( tools )
add_subdirectory( libraries/gdtoa )
add_subdirectory( wadsrc )
-add_subdirectory( wadsrc_bm )
add_subdirectory( wadsrc_lights )
-add_subdirectory( wadsrc_extra )
-add_subdirectory( wadsrc_widepix )
add_subdirectory( src )
+option (BUILD_NONFREE "Build nonfree components" ON)
+if( BUILD_NONFREE )
+ add_subdirectory( wadsrc_bm )
+ add_subdirectory( wadsrc_extra )
+ add_subdirectory( wadsrc_widepix )
+endif()
if( NOT CMAKE_CROSSCOMPILING )
export(TARGETS ${CROSS_EXPORTS} FILE "${CMAKE_BINARY_DIR}/ImportExecutables.cmake" )
--
2.33.1

View File

@@ -0,0 +1,90 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake desktop xdg flag-o-matic
DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine"
HOMEPAGE="https://zdoom.org"
SRC_URI="https://github.com/ZDoom/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT
non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"
IUSE="debug gles2 gtk +non-free openmp +swr telemetry vulkan"
DEPEND="
app-arch/bzip2
media-libs/libjpeg-turbo:0=
media-libs/libsdl2[gles2?,opengl,vulkan?]
media-libs/libvpx:=
media-libs/openal
media-libs/zmusic
sys-libs/zlib
media-libs/libwebp
gtk? ( x11-libs/gtk+:3 )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-g${PV}"
PATCHES=(
"${FILESDIR}"/${PN}-4.7.1-Introduce-the-BUILD_NONFREE-option.patch
)
src_prepare() {
rm -rf docs/licenses || die
rm -rf libraries/{bzip2,jpeg,zlib} || die
if ! use non-free ; then
rm -rf wadsrc_bm wadsrc_extra wadsrc_widepix || die
fi
cmake_src_prepare
}
src_configure() {
# https://bugs.gentoo.org/858749
filter-lto
append-flags -fno-strict-aliasing
local mycmakeargs=(
-DBUILD_SHARED_LIBS=OFF
-DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${PF}"
-DINSTALL_PK3_PATH="${EPREFIX}/usr/share/doom"
-DINSTALL_SOUNDFONT_PATH="${EPREFIX}/usr/share/doom"
-DDYN_OPENAL=OFF
-DNO_GTK="$(usex !gtk)"
-DNO_OPENAL=OFF
-DHAVE_VULKAN="$(usex vulkan)"
-DHAVE_GLES2="$(usex gles2)"
-DNO_OPENMP="$(usex !openmp)"
-DZDOOM_ENABLE_SWR="$(usex swr)"
-DBUILD_NONFREE="$(usex non-free)"
)
use debug || append-cppflags -DNDEBUG
use telemetry || append-cppflags -DNO_SEND_STATS
cmake_src_configure
}
src_install() {
newicon src/posix/zdoom.xpm "${PN}.xpm"
make_desktop_entry "${PN}" "GZDoom" "${PN}" "Game;ActionGame"
cmake_src_install
}
pkg_postinst() {
xdg_pkg_postinst
if ! use non-free ; then
ewarn
ewarn "GZDoom installed without non-free components."
ewarn "Note: The non-free game_support.pk3 file is needed to play"
ewarn " games natively supported by GZDoom."
ewarn "A list of games natively supported by GZDoom is available"
ewarn "on the ZDoom wiki: https://zdoom.org/wiki/IWAD"
ewarn
fi
}

View File

@@ -0,0 +1,99 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake desktop xdg flag-o-matic
DESCRIPTION="A modder-friendly OpenGL source port based on the DOOM engine"
HOMEPAGE="https://zdoom.org"
SRC_URI="https://github.com/ZDoom/${PN}/archive/g${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT
non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"
IUSE="debug gles2 gtk +non-free openmp +swr telemetry vulkan"
DEPEND="
app-arch/bzip2
media-libs/libjpeg-turbo:0=
media-libs/libsdl2[gles2?,opengl,vulkan?]
media-libs/libvpx:=
media-libs/openal
>=media-libs/zmusic-1.1.14
sys-libs/zlib
media-libs/libwebp
gtk? ( x11-libs/gtk+:3 )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-g${PV}"
PATCHES=(
"${FILESDIR}"/${PN}-4.7.1-Introduce-the-BUILD_NONFREE-option.patch
)
src_prepare() {
rm -rf docs/licenses || die
rm -rf libraries/{bzip2,jpeg,zlib} || die
if ! use non-free ; then
rm -rf wadsrc_bm wadsrc_extra wadsrc_widepix || die
fi
{
echo "// 0"
echo "// The above line prevents UpdateRevision.cmake from replacing this file."
echo "// This file was generated by the Gentoo ebuild."
echo
echo "#define GIT_DESCRIPTION \"g${PV}\""
echo "#define GIT_HASH \"0\""
echo "#define GIT_TIME \"\""
} > "${S}/src/gitinfo.h" || die
cmake_src_prepare
}
src_configure() {
# https://bugs.gentoo.org/858749
filter-lto
append-flags -fno-strict-aliasing
local mycmakeargs=(
-DBUILD_SHARED_LIBS=OFF
-DINSTALL_DOCS_PATH="${EPREFIX}/usr/share/doc/${PF}"
-DINSTALL_PK3_PATH="${EPREFIX}/usr/share/doom"
-DINSTALL_SOUNDFONT_PATH="${EPREFIX}/usr/share/doom"
-DDYN_OPENAL=OFF
-DNO_GTK="$(usex !gtk)"
-DNO_OPENAL=OFF
-DHAVE_VULKAN="$(usex vulkan)"
-DHAVE_GLES2="$(usex gles2)"
-DNO_OPENMP="$(usex !openmp)"
-DZDOOM_ENABLE_SWR="$(usex swr)"
-DBUILD_NONFREE="$(usex non-free)"
)
use debug || append-cppflags -DNDEBUG
use telemetry || append-cppflags -DNO_SEND_STATS
cmake_src_configure
}
src_install() {
newicon src/posix/zdoom.xpm "${PN}.xpm"
make_desktop_entry "${PN}" "GZDoom" "${PN}" "Game;ActionGame"
cmake_src_install
}
pkg_postinst() {
xdg_pkg_postinst
if ! use non-free ; then
ewarn
ewarn "GZDoom installed without non-free components."
ewarn "Note: The non-free game_support.pk3 file is needed to play"
ewarn " games natively supported by GZDoom."
ewarn "A list of games natively supported by GZDoom is available"
ewarn "on the ZDoom wiki: https://zdoom.org/wiki/IWAD"
ewarn
fi
}

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>nicole@otl-hga.net</email>
<name>Nicole O'Connor</name>
</maintainer>
</pkgmetadata>

4
games-fps/woof/Manifest Normal file
View File

@@ -0,0 +1,4 @@
DIST woof-15.1.0.tar.gz 7572341 BLAKE2B 9904231eab203312bab0d722673ac12c6c655d08e232d973f85d4c5c93c2c7111c5defdcacb3ef493318fd681a2bc500b8fdb10f6f32117abd0a1022796d5234 SHA512 7bb88ebc173847632ebdd9f0b1b2cb86c870bec0dd0c8fad4d7da08e08134e77ca621bd09ce906f4d57525e3a8860301fc1991f458fc8cfa680a94b55a04bb66
DIST woof-15.2.0.tar.gz 7569940 BLAKE2B e18a6e5cb66b90dc8d99e8b73cb8e6a22db450438c5ebf2362f029dd542206cd916531ef0c073dabb038e837df4edac297e10064192faf88aaf51c004150e322 SHA512 30b7723bf0ba8f381ed3b3e63282acf57cb00a4f8c616dacee37549ec4ee09e4e487028657f4bf20d3c150f860805be79e10b61f1757a192292db1febb4b4045
EBUILD woof-15.1.0.ebuild 992 BLAKE2B ac4dd6a5fe42f50b8b0d5475d6b55a6ed5a3a9c0f526e317b16805ad391703c63282b72389aff84fae272aea75b73d146597073b5ce8629b64a1e3a676267d64 SHA512 d5bd22d244a6af62f34e022fac4f4841fe8c3196900dbfd3c7fd36153cc0e07c5891765426b1a1dc7dea6065c84efd071ca345dda7f369a96c3ec97d1fabc674
EBUILD woof-15.2.0.ebuild 991 BLAKE2B e24bb3598dd74796fc88d1af44c2de7014394d83ec227858ef540e2cccc9e1e654a7ec9deeeed36c11dfdfdcd5f504bfeed557033fec345e88080c3b04509af4 SHA512 673fdcf2cf1e3319756658c5865dcfc34d1a54df7fc1ed1f6fc8ae562cace3b18d7b7cac8eae1dfe0599356bbcbb6c043965ae7d8919b9daa203cac78de926ef

View File

@@ -0,0 +1,48 @@
EAPI=8
inherit cmake desktop xdg flag-o-matic
DESCRIPTION="Woof! is a continuation of the Boom/MBF bloodline of Doom source ports"
HOMEPAGE="https://github.com/fabiangreffrath/woof"
SRC_URI="https://github.com/fabiangreffrath/${PN}/archive/refs/tags/woof_${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="fluidsynth json lto strict xmp"
DEPEND="
>=dev-build/cmake-3.15
>=media-libs/libsdl2-2.0.18
media-libs/sdl2-net
>=media-libs/openal-1.22.0
>=media-libs/libsndfile-1.1.0
>=media-libs/libebur128-1.2.0
fluidsynth? ( >=media-sound/fluidsynth-2.2.0 )
json? ( >=dev-libs/yyjson-0.10.0 )
xmp? ( media-libs/libxmp )
"
BDEPEND="$DEPEND"
RDEPEND="$DEPEND"
src_unpack() {
unpack ${A}
mv woof-woof_${PV} ${P}
}
src_prepare() {
cmake_src_prepare
}
src_configure() {
filter-lto
local mycmakeargs=(
-DWOOF_STRICT=$(usex strict)
)
cmake_src_configure
}
src_install() {
cmake_src_install
}

View File

@@ -0,0 +1,48 @@
EAPI=8
inherit cmake desktop xdg flag-o-matic
DESCRIPTION="Woof! is a continuation of the Boom/MBF bloodline of Doom source ports"
HOMEPAGE="https://github.com/fabiangreffrath/woof"
SRC_URI="https://github.com/fabiangreffrath/${PN}/archive/refs/tags/woof_${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="fluidsynth json lto strict xmp"
DEPEND="
>=dev-build/cmake-3.15
>=media-libs/libsdl2-2.0.18
media-libs/sdl2-net
>=media-libs/openal-1.22.0
>=media-libs/libsndfile-1.1.0
>=media-libs/libebur128-1.2.0
fluidsynth? ( >=media-sound/fluidsynth-2.2.0 )
json? ( >=dev-libs/yyjson-0.10.0 )
xmp? ( media-libs/libxmp )
"
BDEPEND="$DEPEND"
RDEPEND="$DEPEND"
src_unpack() {
unpack ${A}
mv woof-woof_${PV} ${P}
}
src_prepare() {
cmake_src_prepare
}
src_configure() {
filter-lto
local mycmakeargs=(
-DWOOF_STRICT=$(usex strict)
)
cmake_src_configure
}
src_install() {
cmake_src_install
}

View File

@@ -0,0 +1,16 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Driver and support software for Saitek X52 HOTAS"
HOMEPAGE="https://github.com/nirenjan/libx52"
SRC_URI="https://github.com/nirenjan/libx52/releases/download/v${PV}/libx52_${PV}.orig.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""

View File

@@ -0,0 +1,3 @@
DIST v1.19.zip 239993 BLAKE2B e3aad80f9fd163c418b7a41c54e40fe74dc63325e11b99093cefd30e8a411c80e39c5eb8eedef93c0b53f05109112adb753450d0aeb17dd3846f31c69e3037e6 SHA512 ff4b257eae3b1b2c25309d3f27a3ea0273c631494de02218a85e2347efb8daf21d767cf17a32c30ed2f24e7536ac4df550231e168986e442b53a65d1a6b4b3bb
EBUILD zdbsp-1.19.ebuild 520 BLAKE2B ea2c590286224c6a0f1cf30a2c7aaf86f2e324485ca54239a2f95cc3426c00f3dd7af4187a79803b3272adc94f3ae5584c94f5fd093bf69deaaa5426c4c95357 SHA512 eef954befba59e325fcf8fad4f7416a7c4467e825f45ae5e5eb56cd05bb1e6a135f8b00e87a1c79b8e9e4dccab2b712fbf1776720d1baadf7a42ca25ceaa66e8
MISC metadata.xml 404 BLAKE2B a266a6dafa13976bb7276ca6e35b603b3b0069f00fa33e3b2ee1e45b2a01a1bc1370148d66a3d6eb21c8121e2e28f6ee60fee5ec26eb43796b7929888213e7c1 SHA512 c1fa97dd03b6cbd3381a102e20dd4e480e6bb34d71d8ae3dde8a09b7bd02bf66b28b0fbce7c56c74f8f79a40d62b73b94f86845c0a4a7ec191f137f1c37f0cb4

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>nicole@otl-hga.net</email>
<name>Nicole O'Connor</name>
</maintainer>
<longdescription lang="en">ZDoom's internal node builder.M</longdescription>
<upstream>
<remote-id type="github">rheit/zdbsp</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="ZDoom's internal node builder"
HOMEPAGE="https://zdoom.org"
SRC_URI="https://github.com/rheit/${PN}/archive/refs/tags/v${PV}.zip -> v${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="system-zlib"
DEPEND="system-zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
dobin "${BUILD_DIR}"/${PN}
dodoc ${PN}.html
insinto /usr/share/${PN}
doins *.png
}

View File

@@ -0,0 +1,2 @@
DIST zmusic-1.1.14.zip 3071871 BLAKE2B 7313c3b59313c3444d6fe4b0e3fb960d09527d28a896f63a607d3e8ccbd318cc85b6cb53c3bd4be2d51d6edda69645a2b722341dfb013a1a25322c71e579448a SHA512 23722b5a5f4c526dc72dcc731cae7db298505e47d33104d94fa26879813069f16e0d7cb1f43ced169555bb2fb735d07b99fcc6ea8f85c5635bc38fa354e6c982
EBUILD zmusic-1.1.14.ebuild 1346 BLAKE2B 741e03d3b56bc2ab5f7a33118aa42759955b207c15c66d849adb795bec4ce53b021c68801c53e2c45ccc79aefd1d3c0a9176a1e3ebf7ba5de943f63eb6f15c68 SHA512 52c1b2e9d5f8bebe5222b118e08707e7bdc020df4619f6e57284ddc4b2a14dbd74820dc1e9eb4de8e1149e199c9e7d442edfe2ec45cba684dd8f0116043097e9

View File

@@ -0,0 +1,56 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake flag-o-matic
MY_PN="ZMusic"
DESCRIPTION="GZDoom's music system as a standalone library"
HOMEPAGE="https://github.com/ZDoom/ZMusic"
SRC_URI="https://github.com/ZDoom/ZMusic/archive/refs/tags/${PV}.zip -> ${P}.zip"
LICENSE="BSD DUMB-0.9.3 GPL-3 LGPL-2.1+ LGPL-3 MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="alsa fluidsynth mpg123 +sndfile"
DEPEND="
sys-libs/zlib
alsa? ( media-libs/alsa-lib )
fluidsynth? ( media-sound/fluidsynth:= )
mpg123? ( media-sound/mpg123 )
sndfile? ( media-libs/libsndfile )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PN}-${PV}"
src_prepare() {
rm -rf licenses || die
cmake_src_prepare
}
src_configure() {
# -Werror=odr
# https://bugs.gentoo.org/860117
# https://github.com/ZDoom/ZMusic/issues/56
filter-lto
local mycmakeargs=(
-DFORCE_INTERNAL_ZLIB=OFF
-DFORCE_INTERNAL_GME=ON
-DDYN_FLUIDSYNTH=OFF
-DDYN_SNDFILE=OFF
-DDYN_MPG123=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_ALSA="$(usex !alsa)"
-DCMAKE_DISABLE_FIND_PACKAGE_FluidSynth="$(usex !fluidsynth)"
-DCMAKE_DISABLE_FIND_PACKAGE_MPG123="$(usex !mpg123)"
-DCMAKE_DISABLE_FIND_PACKAGE_SndFile="$(usex !sndfile)"
-DBUILD_SHARED_LIBS=ON
)
cmake_src_configure
}
src_install() {
cmake_src_install
}

3
metadata/layout.conf Normal file
View File

@@ -0,0 +1,3 @@
masters = gentoo
sign-commits = false
sign-manifests = false

View File

@@ -0,0 +1,15 @@
BDEPEND=app-text/ronn-ng doc? ( dev-python/sphinx ) app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=app-arch/gzip dev-libs/crypto++ >=dev-lang/python-3.7
DESCRIPTION=WINE bottle management tool
EAPI=8
HOMEPAGE=https://vcs.otl-hga.net/nicole/cellar/
INHERIT=cmake
IUSE=doc
KEYWORDS=~amd64
LICENSE=Apache-2.0
RDEPEND=app-arch/gzip dev-libs/crypto++ >=dev-lang/python-3.7
SLOT=0
SRC_URI=https://vcs.otl-hga.net/nicole/cellar/archive/v0.4.tar.gz -> cellar-0.4.tar.gz
_eclasses_=toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
_md5_=b82bec61370fecb6d52f0d3c252eba95

View File

@@ -0,0 +1,15 @@
BDEPEND=>=app-portage/elt-patches-20240116 sys-devel/gnuconfig || ( >=dev-build/automake-1.17-r1:1.17 >=dev-build/automake-1.16.5:1.16 ) || ( >=dev-build/autoconf-2.72-r1:2.72 >=dev-build/autoconf-2.71-r6:2.71 ) >=dev-build/libtool-2.4.7-r3
DEFINED_PHASES=configure install postinst postrm preinst prepare setup
DEPEND=media-libs/libsdl2[video] media-libs/sdl2-mixer[midi?,vorbis?] media-libs/sdl2-net media-sound/fluidsynth sys-libs/zlib libsamplerate? ( media-libs/libsamplerate ) png? ( media-libs/libpng:= ) dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Fork of Chocolatey Doom with visual crispness enhancements
EAPI=7
HOMEPAGE=https://github.com/fabiangreffrath/crispy-doom
INHERIT=autotools prefix python-any-r1 xdg
IUSE=doc libsamplerate +midi png vorbis
KEYWORDS=~amd64 ~x86
LICENSE=BSD GPL-2+
RDEPEND=media-libs/libsdl2[video] media-libs/sdl2-mixer[midi?,vorbis?] media-libs/sdl2-net media-sound/fluidsynth sys-libs/zlib libsamplerate? ( media-libs/libsamplerate ) png? ( media-libs/libpng:= )
SLOT=0
SRC_URI=https://github.com/fabiangreffrath/crispy-doom/archive/refs/tags/crispy-doom-6.0.tar.gz -> crispy-doom-6.0.tar.gz
_eclasses_=gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 multilib b2a329026f2e404e9e371097dda47f96 libtool 6b28392a775f807c8be5fc7ec9a605b9 autotools 7d91cc798a8afd8f4e0c6e9587296ebe prefix c3c4c93ebda319c0fa7ed6f942ba1010 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 python-any-r1 6ddb5e75c10db046f89ebe39c85e1d82 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=cd74b97c93142890b45dbb11f4448964

View File

@@ -0,0 +1,15 @@
BDEPEND=>=app-portage/elt-patches-20240116 sys-devel/gnuconfig || ( >=dev-build/automake-1.17-r1:1.17 >=dev-build/automake-1.16.5:1.16 ) || ( >=dev-build/autoconf-2.72-r1:2.72 >=dev-build/autoconf-2.71-r6:2.71 ) >=dev-build/libtool-2.4.7-r3
DEFINED_PHASES=configure install postinst postrm preinst prepare setup
DEPEND=media-libs/libsdl2[video] media-libs/sdl2-mixer[midi?,vorbis?] media-libs/sdl2-net media-sound/fluidsynth sys-libs/zlib libsamplerate? ( media-libs/libsamplerate ) png? ( media-libs/libpng:= ) dev-util/desktop-file-utils x11-misc/shared-mime-info
DESCRIPTION=Fork of Chocolatey Doom with visual crispness enhancements
EAPI=7
HOMEPAGE=https://github.com/fabiangreffrath/crispy-doom
INHERIT=autotools prefix python-any-r1 xdg
IUSE=doc fluidsynth libsamplerate +midi png truecolor vorbis zlib
KEYWORDS=~amd64 ~x86
LICENSE=BSD GPL-2+
RDEPEND=media-libs/libsdl2[video] media-libs/sdl2-mixer[midi?,vorbis?] media-libs/sdl2-net media-sound/fluidsynth sys-libs/zlib libsamplerate? ( media-libs/libsamplerate ) png? ( media-libs/libpng:= )
SLOT=0
SRC_URI=https://github.com/fabiangreffrath/crispy-doom/archive/refs/tags/crispy-doom-7.0.tar.gz -> crispy-doom-7.0.tar.gz
_eclasses_=gnuconfig ddeb9f8caff1b5f71a09c75b7534df79 toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 multilib b2a329026f2e404e9e371097dda47f96 libtool 6b28392a775f807c8be5fc7ec9a605b9 autotools 7d91cc798a8afd8f4e0c6e9587296ebe prefix c3c4c93ebda319c0fa7ed6f942ba1010 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 1e32df7deee68372153dca65f4a7c21f python-utils-r1 42c5abe4a656a4993a06a4fc61dbdd12 python-any-r1 6ddb5e75c10db046f89ebe39c85e1d82 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=583a1f0892bbd175a8be5b3b88980e34

View File

@@ -0,0 +1,16 @@
BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
DEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib gtk? ( x11-libs/gtk+:3 )
DESCRIPTION=A modder-friendly OpenGL source port based on the DOOM engine
EAPI=8
HOMEPAGE=https://zdoom.org
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
INHERIT=cmake desktop xdg flag-o-matic
IUSE=debug gles2 gtk +non-free openmp +swr telemetry vulkan
KEYWORDS=~amd64 ~arm64
LICENSE=Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )
RDEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib gtk? ( x11-libs/gtk+:3 )
SLOT=0
SRC_URI=https://github.com/coelckers/gzdoom/archive/g4.10.0.tar.gz -> gzdoom-4.10.0.tar.gz
_eclasses_=toolchain-funcs 14a8ae365191b518fad51caad7a08f3e multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic 16483e58fadb0d47b4528f0aa7e171f6 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 7fb5980de96325cbab639f5b2187357c desktop 021728fdc1b03b36357dbc89489e0f0d xdg 4a14c5c24f121e7da66e5aab4a168c6e
_md5_=734a7b4241d3e2b84f523240acec90aa

View File

@@ -0,0 +1,16 @@
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
DEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib media-libs/libwebp gtk? ( x11-libs/gtk+:3 )
DESCRIPTION=A modder-friendly OpenGL source port based on the DOOM engine
EAPI=8
HOMEPAGE=https://zdoom.org
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
INHERIT=cmake desktop xdg flag-o-matic
IUSE=debug gles2 gtk +non-free openmp +swr telemetry vulkan
KEYWORDS=~amd64 ~arm64 ~ppc64
LICENSE=Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )
RDEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib media-libs/libwebp gtk? ( x11-libs/gtk+:3 )
SLOT=0
SRC_URI=https://github.com/ZDoom/gzdoom/archive/g4.11.3.tar.gz -> gzdoom-4.11.3.tar.gz
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=8d13885a5b5231365bdc611a3be0b304

View File

@@ -0,0 +1,16 @@
BDEPEND=app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test
DEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib media-libs/libwebp gtk? ( x11-libs/gtk+:3 )
DESCRIPTION=A modder-friendly OpenGL source port based on the DOOM engine
EAPI=8
HOMEPAGE=https://zdoom.org
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
INHERIT=cmake desktop xdg flag-o-matic
IUSE=debug gles2 gtk +non-free openmp +swr telemetry vulkan
KEYWORDS=~amd64 ~arm64 ~ppc64
LICENSE=Apache-2.0 BSD BZIP2 GPL-3 LGPL-2.1+ LGPL-3 MIT non-free? ( Activision ChexQuest3 DOOM-COLLECTORS-EDITION freedist WidePix )
RDEPEND=app-arch/bzip2 media-libs/libjpeg-turbo:0= media-libs/libsdl2[gles2?,opengl,vulkan?] media-libs/libvpx:= media-libs/openal media-libs/zmusic sys-libs/zlib media-libs/libwebp gtk? ( x11-libs/gtk+:3 )
SLOT=0
SRC_URI=https://github.com/ZDoom/gzdoom/archive/g4.13.2.tar.gz -> gzdoom-4.13.2.tar.gz
_eclasses_=toolchain-funcs d3d42b22a610ce81c267b644bcec9b87 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=8d13885a5b5231365bdc611a3be0b304

View File

@@ -0,0 +1,16 @@
BDEPEND=>=dev-build/cmake-3.15 >=media-libs/libsdl2-2.0.18 media-libs/sdl2-net >=media-libs/openal-1.22.0 >=media-libs/libsndfile-1.1.0 >=media-libs/libebur128-1.2.0 fluidsynth? ( >=media-sound/fluidsynth-2.2.0 ) json? ( >=dev-libs/yyjson-0.10.0 ) xmp? ( media-libs/libxmp ) app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack
DEPEND=>=dev-build/cmake-3.15 >=media-libs/libsdl2-2.0.18 media-libs/sdl2-net >=media-libs/openal-1.22.0 >=media-libs/libsndfile-1.1.0 >=media-libs/libebur128-1.2.0 fluidsynth? ( >=media-sound/fluidsynth-2.2.0 ) json? ( >=dev-libs/yyjson-0.10.0 ) xmp? ( media-libs/libxmp )
DESCRIPTION=Woof! is a continuation of the Boom/MBF bloodline of Doom source ports
EAPI=8
HOMEPAGE=https://github.com/fabiangreffrath/woof
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
INHERIT=cmake desktop xdg flag-o-matic
IUSE=fluidsynth json lto strict xmp
KEYWORDS=~amd64 ~arm64
LICENSE=GPL-2
RDEPEND=>=dev-build/cmake-3.15 >=media-libs/libsdl2-2.0.18 media-libs/sdl2-net >=media-libs/openal-1.22.0 >=media-libs/libsndfile-1.1.0 >=media-libs/libebur128-1.2.0 fluidsynth? ( >=media-sound/fluidsynth-2.2.0 ) json? ( >=dev-libs/yyjson-0.10.0 ) xmp? ( media-libs/libxmp )
SLOT=0
SRC_URI=https://github.com/fabiangreffrath/woof/archive/refs/tags/woof_15.1.0.tar.gz -> woof-15.1.0.tar.gz
_eclasses_=toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=a5653424bb07a0b22e3abf2cb783ef54

View File

@@ -0,0 +1,16 @@
BDEPEND=>=dev-build/cmake-3.15 >=media-libs/libsdl2-2.0.18 media-libs/sdl2-net >=media-libs/openal-1.22.0 >=media-libs/libsndfile-1.1.0 >=media-libs/libebur128-1.2.0 fluidsynth? ( >=media-sound/fluidsynth-2.2.0 ) json? ( >=dev-libs/yyjson-0.10.0 ) xmp? ( media-libs/libxmp ) app-alternatives/ninja >=dev-build/cmake-3.20.5
DEFINED_PHASES=compile configure install postinst postrm preinst prepare test unpack
DEPEND=>=dev-build/cmake-3.15 >=media-libs/libsdl2-2.0.18 media-libs/sdl2-net >=media-libs/openal-1.22.0 >=media-libs/libsndfile-1.1.0 >=media-libs/libebur128-1.2.0 fluidsynth? ( >=media-sound/fluidsynth-2.2.0 ) json? ( >=dev-libs/yyjson-0.10.0 ) xmp? ( media-libs/libxmp )
DESCRIPTION=Woof! is a continuation of the Boom/MBF bloodline of Doom source ports
EAPI=8
HOMEPAGE=https://github.com/fabiangreffrath/woof
IDEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info
INHERIT=cmake desktop xdg flag-o-matic
IUSE=fluidsynth json lto strict xmp
KEYWORDS=~amd64 ~arm64
LICENSE=GPL-2
RDEPEND=>=dev-build/cmake-3.15 >=media-libs/libsdl2-2.0.18 media-libs/sdl2-net >=media-libs/openal-1.22.0 >=media-libs/libsndfile-1.1.0 >=media-libs/libebur128-1.2.0 fluidsynth? ( >=media-sound/fluidsynth-2.2.0 ) json? ( >=dev-libs/yyjson-0.10.0 ) xmp? ( media-libs/libxmp )
SLOT=0
SRC_URI=https://github.com/fabiangreffrath/woof/archive/refs/tags/woof_15.2.0.tar.gz -> woof-15.2.0.tar.gz
_eclasses_=toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic 357f1a896fbedcd06e5ce55419c49eb9 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056 desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed xdg 3ef49a87c52c8b77c476351195dfe575
_md5_=8e2288085cbba94a77daa3519309a24c

View File

@@ -0,0 +1,15 @@
BDEPEND=>=dev-util/ninja-1.8.2 >=dev-util/cmake-3.20.5
DEFINED_PHASES=compile configure install prepare test
DEPEND=system-zlib? ( sys-libs/zlib )
DESCRIPTION=ZDoom's internal node builder
EAPI=8
HOMEPAGE=https://zdoom.org
INHERIT=cmake
IUSE=system-zlib
KEYWORDS=~amd64
LICENSE=GPL-2
RDEPEND=system-zlib? ( sys-libs/zlib )
SLOT=0
SRC_URI=https://github.com/rheit/zdbsp/archive/refs/tags/v1.19.zip -> v1.19.zip
_eclasses_=toolchain-funcs 14a8ae365191b518fad51caad7a08f3e multilib 104e1332efb829e2f7cbf89307a474f1 flag-o-matic 16483e58fadb0d47b4528f0aa7e171f6 multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 xdg-utils baea6080dd821f5562d715887954c9d3 cmake 7fb5980de96325cbab639f5b2187357c
_md5_=d0ead5406e1c4d633aa955aae8d2f803

View File

@@ -0,0 +1,16 @@
BDEPEND=test? ( dev-python/pycryptodome[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] !net-misc/youtube-dl[-yt-dlp(-)] >=dev-python/pytest-7.3.1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 ) >=dev-python/gpep517-15[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/setuptools-67.8.0-r1[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?]
DEFINED_PHASES=compile configure install postinst prepare test
DESCRIPTION=youtube-dl fork with additional features and fixes
EAPI=8
HOMEPAGE=https://github.com/yt-dlp/yt-dlp/
INHERIT=bash-completion-r1 distutils-r1 optfeature wrapper
IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
KEYWORDS=amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86 ~arm64-macos ~x64-macos
LICENSE=Unlicense
RDEPEND=dev-python/pycryptodome[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] !net-misc/youtube-dl[-yt-dlp(-)] python_targets_python3_10? ( dev-lang/python:3.10 ) python_targets_python3_11? ( dev-lang/python:3.11 ) python_targets_python3_12? ( dev-lang/python:3.12 )
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=https://github.com/yt-dlp/yt-dlp/releases/download/2024.03.10/yt-dlp.tar.gz -> yt-dlp-2024.03.10.tar.gz
_eclasses_=toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 bash-completion-r1 f5e7a020fd9c741740756aac61bf75ff flag-o-matic 24c947ff5f858625cf0b33c15eed4425 out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild d67e78a235f541871c7dfe4cf7931489 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 042f4cc53680245bf99a84669b94155a python-r1 8a28fa6d3e3bc96ff8a7eff2badbe71f distutils-r1 b9318b5e40104e608d7e4582121fb561 optfeature 222cb475c5a4f7ae7cfb0bf510a6fe54 wrapper 4a1902f969e5718126434fc35f3a0d9c
_md5_=015d3f2ac3a7d96eac3f2a70f1e97247

1
profiles/repo_name Normal file
View File

@@ -0,0 +1 @@
overlaytopleft

14
repositories.xml Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<repositories version="1.0">
<repo quality="experimental" status="unofficial">
<name>overlaytopleft</name>
<description lang="en">Odds and ends. Usually version bumps.</description>
<homepage>https://vcs.otl-hga.net/nicole/overlaytopleft</homepage>
<owner type="person">
<name>Nicole O'Connor</name>
<email>nicole@otl-hga.net</email>
</owner>
<source type="git">https://vcs.otl-hga.net/nicole/overlaytopleft.git</source>
<feed>https://vcs.otl-hga.net/nicole/overlaytopleft.rss</feed>
</repo>
</repositories>