mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
79 lines
1.6 KiB
Bash
79 lines
1.6 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="GPL Arcade Volleyball"
|
|
HOMEPAGE="https://gav.sourceforge.net/"
|
|
# the themes are behind a lame php-counter script.
|
|
SRC_URI="
|
|
https://downloads.sourceforge.net/gav/${P}.tar.gz
|
|
mirror://gentoo/fabeach.tgz
|
|
mirror://gentoo/florindo.tgz
|
|
mirror://gentoo/inverted.tgz
|
|
mirror://gentoo/naive.tgz
|
|
mirror://gentoo/unnamed.tgz
|
|
mirror://gentoo/yisus.tgz
|
|
mirror://gentoo/yisus2.tgz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
media-libs/sdl-image[jpeg,png]
|
|
media-libs/sdl-net
|
|
media-libs/libsdl[joystick,video]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-ldflags.patch
|
|
"${FILESDIR}"/${P}-gcc43.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
local d
|
|
for d in . automa menu net; do
|
|
cp ${d}/Makefile.Linux ${d}/Makefile || die "cp ${d}/Makefile failed"
|
|
done
|
|
|
|
# Now, move the additional themes in the proper directory
|
|
mv ../{fabeach,florindo,inverted,naive,unnamed,yisus,yisus2} themes || die
|
|
|
|
# No reason to have executable bit set on themes
|
|
find themes -type f -exec chmod a-x '{}' \; || die
|
|
|
|
# Respect LD, bug #779976
|
|
sed -i -e 's/LD = ld/LD ?= ld/' CommonHeader || die
|
|
sed -i -e 's/$(LD)/& $(LDFLAGS)/' */Makefile || die
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CXX
|
|
|
|
# Nobody _really_ sets LD. Tell the compiler what to do instead.
|
|
export LD="${CXX}"
|
|
}
|
|
|
|
src_compile() {
|
|
# bug #41530 - doesn't like the hot parallel make action.
|
|
emake -C automa
|
|
emake -C menu
|
|
emake -C net
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
dodir /usr/bin
|
|
emake ROOT="${D}" install
|
|
|
|
insinto /usr/share/${PN}
|
|
doins -r sounds
|
|
|
|
einstalldocs
|
|
}
|