mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-10 23:30:03 +02: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>
73 lines
1.5 KiB
Bash
73 lines
1.5 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop flag-o-matic toolchain-funcs
|
|
|
|
DESCRIPTION="Multi-player 2D client/server space game"
|
|
HOMEPAGE="http://www.xpilot.org/"
|
|
SRC_URI="
|
|
https://dev.gentoo.org/~ionen/distfiles/${PN}.png
|
|
https://downloads.sourceforge.net/xpilotgame/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
x11-libs/libX11
|
|
x11-libs/libXext"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
x11-base/xorg-proto"
|
|
BDEPEND="
|
|
app-text/rman
|
|
sys-devel/gcc
|
|
x11-misc/gccmakedep
|
|
>=x11-misc/imake-1.0.8-r1"
|
|
|
|
DOCS=(
|
|
README.txt
|
|
doc/{ChangeLog,CREDITS,FAQ,TODO}
|
|
doc/README.{MAPS,MAPS2,SHIPS,sounds,talkmacros}
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i \
|
|
-e "/^INSTMAN/s|=.*|=${EPREFIX}/usr/share/man/man6|" \
|
|
-e "/^INSTLIB/s|=.*|=${EPREFIX}/usr/share/${PN}|" \
|
|
-e "/^INSTBIN/s|=.*|=${EPREFIX}/usr/bin|" \
|
|
Local.config || die
|
|
|
|
# work with glibc-2.20
|
|
sed -i \
|
|
-e 's/getline/lgetline/' \
|
|
src/client/textinterface.c || die
|
|
}
|
|
|
|
src_configure() {
|
|
append-cflags -std=gnu89 # old codebase, incompatible with c2x
|
|
|
|
CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
|
|
IMAKECPP="${IMAKECPP:-${CHOST}-gcc -E}" xmkmf -a || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake \
|
|
AR="$(tc-getAR) cq" \
|
|
CC="$(tc-getCC)" \
|
|
RANLIB="$(tc-getRANLIB)" \
|
|
CDEBUGFLAGS="${CFLAGS}" \
|
|
LOCAL_LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
emake DESTDIR="${D}" install.man
|
|
|
|
doicon "${DISTDIR}"/${PN}.png
|
|
make_desktop_entry ${PN} XPilot
|
|
}
|