Skip to content

Commit

Permalink
games-board/phalanx: tidy ebuild a bit more
Browse files Browse the repository at this point in the history
Signed-off-by: Ionen Wolkens <[email protected]>
  • Loading branch information
ionenwks committed Sep 24, 2021
1 parent d5a9e8f commit 279979d
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions games-board/phalanx/phalanx-22-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,26 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"

src_compile() {
# configure is not used in the project; confs are in Makefile,
# and here we override them:
local define="-DGNUFUN" myvar
for myvar in "PBOOK" "SBOOK" "LEARN" ; do
define="${define} -D${myvar}_DIR=\"\\\"${EPREFIX}/usr/share/${PN}\\\"\""
done
emake \
DEFINES="${define}" \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
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.phalanx sbook.phalanx learn.phalanx
doins {pbook,sbook,learn}.phalanx

einstalldocs
}

0 comments on commit 279979d

Please sign in to comment.