mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-14 09:02:26 +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>
42 lines
778 B
Bash
42 lines
778 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
MY_P="${PN^}-XXII"
|
|
|
|
DESCRIPTION="Chess engine suitable for beginner and intermediate players"
|
|
HOMEPAGE="https://phalanx.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/phalanx/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
src_compile() {
|
|
local defines=(
|
|
-DGNUFUN
|
|
-D{PBOOK,SBOOK,LEARN}_DIR="'\"${EPREFIX}/usr/share/${PN}\"'"
|
|
)
|
|
|
|
local emakeargs=(
|
|
DEFINES="${defines[*]}"
|
|
CC="$(tc-getCC)"
|
|
CFLAGS="${CFLAGS}"
|
|
LDFLAGS="${LDFLAGS}"
|
|
)
|
|
|
|
emake "${emakeargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin phalanx
|
|
|
|
insinto /usr/share/${PN}
|
|
doins {pbook,sbook,learn}.phalanx
|
|
|
|
einstalldocs
|
|
}
|