Compare commits
7 Commits
15f53393db
...
trunk
Author | SHA1 | Date | |
---|---|---|---|
3d662c4840 | |||
acd73eb6c5 | |||
9c80566fe2 | |||
635b0a5b17 | |||
9297633628 | |||
049ab070ca | |||
d12c2d99c1 |
11
README.md
11
README.md
@@ -1,3 +1,12 @@
|
||||
# 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
|
||||
```
|
75
app-emulation/86Box/86Box-4.2.2_rc1.ebuild
Normal file
75
app-emulation/86Box/86Box-4.2.2_rc1.ebuild
Normal 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."
|
||||
}
|
2
app-emulation/86Box/Manifest
Normal file
2
app-emulation/86Box/Manifest
Normal 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
|
@@ -21,3 +21,19 @@ 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
|
||||
}
|
@@ -1,3 +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
|
||||
|
72
games-fps/crispy-doom/crispy-doom-7.0.ebuild
Normal file
72
games-fps/crispy-doom/crispy-doom-7.0.ebuild
Normal 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
|
||||
}
|
4
games-fps/woof/Manifest
Normal file
4
games-fps/woof/Manifest
Normal 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
|
48
games-fps/woof/woof-15.1.0.ebuild
Normal file
48
games-fps/woof/woof-15.1.0.ebuild
Normal 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
|
||||
}
|
48
games-fps/woof/woof-15.2.0.ebuild
Normal file
48
games-fps/woof/woof-15.2.0.ebuild
Normal 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
|
||||
}
|
@@ -11,5 +11,5 @@ 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 e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 flag-o-matic 288c54efeb5e2aa70775e39032695ad4 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils baea6080dd821f5562d715887954c9d3 cmake c7c9a62d6232cac66d4ea32d575c3e7c
|
||||
_md5_=da4050c7358fdabdd5127cd09a42031d
|
||||
_eclasses_=toolchain-funcs 14648d8795f7779e11e1bc7cf08b7536 multilib b2a329026f2e404e9e371097dda47f96 flag-o-matic f14aba975c94ccaa9f357a27e3b17ffe multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 xdg-utils 42869b3c8d86a70ef3cf75165a395e09 cmake 10a50dfaf728b802fcfd37f8d0da9056
|
||||
_md5_=b82bec61370fecb6d52f0d3c252eba95
|
||||
|
@@ -1,4 +1,4 @@
|
||||
BDEPEND=sys-devel/gnuconfig >=app-portage/elt-patches-20240116 || ( >=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
|
||||
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
|
||||
@@ -11,5 +11,5 @@ 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 b6b3e92f8b8c996400074b5f61a59256 toolchain-funcs e56c7649b804f051623c8bc1a1c44084 multilib c19072c3cd7ac5cb21de013f7e9832e0 libtool 5f49a16f67f81bdf873e3d1f10b10001 autotools 3af8f60c4bdb23e738db506a630898ee prefix eab3c99d77fe00506c109c8a736186f7 eapi8-dosym 5ac4857ad078256d939c44f7c64197a9 multiprocessing 30ead54fa2e2b5f9cd4e612ffc34d0fe python-utils-r1 a1229a86bd0db058e474a2d7d9191cca python-any-r1 f5169813d1619761b459800587005fd2 xdg-utils baea6080dd821f5562d715887954c9d3 xdg 4a14c5c24f121e7da66e5aab4a168c6e
|
||||
_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
|
||||
|
15
metadata/md5-cache/games-fps/crispy-doom-7.0
Normal file
15
metadata/md5-cache/games-fps/crispy-doom-7.0
Normal 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
|
16
metadata/md5-cache/games-fps/woof-15.1.0
Normal file
16
metadata/md5-cache/games-fps/woof-15.1.0
Normal 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
|
16
metadata/md5-cache/games-fps/woof-15.2.0
Normal file
16
metadata/md5-cache/games-fps/woof-15.2.0
Normal 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
|
Reference in New Issue
Block a user