gentoo/games-util/eureka/eureka-1.27b-r1.ebuild
Michał Górny 6a3644bf2f
*/*: Add := to virtual/zlib deps, part 1
Done via:

```
git grep -l virtual/zlib$ | xargs sed -i -e 's@virtual/zlib$@&:=@'
```

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 10:36:27 +01:00

55 lines
888 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop toolchain-funcs xdg
DESCRIPTION="Graphical map editor for games using the DOOM engine"
HOMEPAGE="https://eureka-editor.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}-editor/Eureka/${PV%[a-z]}/${P}-source.tar.gz"
S="${WORKDIR}/${P}-source"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+opengl"
DEPEND="
virtual/zlib:=
x11-libs/fltk:1=[opengl?]
opengl? (
media-libs/glu
virtual/opengl
)
"
RDEPEND="
${DEPEND}
"
PATCHES=(
"${FILESDIR}"/${PN}-Makefile.patch
)
DOCS=(
AUTHORS.txt
CHANGES.txt
README.txt
TODO.txt
)
src_compile() {
emake \
CXX="$(tc-getCXX)" \
OPENGL="$(usex opengl 1 0)"
}
src_install() {
emake install PREFIX="${ED}/usr"
einstalldocs
doicon -s 32 misc/${PN}.xpm
domenu misc/${PN}.desktop
}