You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-arcade/xscavenger/xscavenger-1.4.5.ebuild

53 lines
1.1 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop flag-o-matic toolchain-funcs
DESCRIPTION="Lode-Runner-like arcade game"
HOMEPAGE="https://www.linuxmotors.com/linux/scavenger/index.html"
SRC_URI="https://www.linuxmotors.com/linux/scavenger/downloads/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
media-libs/alsa-lib
x11-libs/libX11"
DEPEND="
${RDEPEND}
x11-base/xorg-proto"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-misc-fixes.patch
)
src_compile() {
tc-export CC
# skip using imake for simplicity
local cppargs=(
-DLIBNAME="'\"${EPREFIX}/usr/share/${PN}\"'"
$($(tc-getPKG_CONFIG) --cflags alsa x11)
)
append-cppflags "${cppargs[@]}"
LDLIBS="$($(tc-getPKG_CONFIG) --libs alsa x11)" \
emake -C src -E "scav: anim.o edit.o x.o sound.o"
}
src_install() {
newbin src/scav scavenger
doman src/scavenger.6
dodoc CREDITS DOC README TODO changelog
insinto /usr/share/${PN}
doins -r data/.
make_desktop_entry scavenger XScavenger applications-games
}