games-arcade/nibbles: Fixed build with sys-libs/ncurses[tinfo]

Closes: https://bugs.gentoo.org/690104
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
Lars Wendler
2019-07-18 16:45:39 +02:00
parent 434491ce34
commit 8d2041da5a
2 changed files with 26 additions and 15 deletions

View File

@@ -1,12 +1,12 @@
--- Makefile.old 2009-02-02 12:40:36.000000000 +0100
+++ Makefile 2009-02-02 12:41:22.000000000 +0100
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,14 @@
-CC = gcc -Wall -g
-
SRCS = player.c main.c loadMap.c cmdline.c ncdrawlib.c scoring.c
OBJS = $(SRCS:.c=.o)
-LIBS = -lncurses
+LDLIBS = -lncurses
+LDLIBS = $(shell $(PKGCONFIG) --libs ncurses)
INSTALL=/usr/bin/install -c
INSTALL_FOLDER=/usr/games

View File

@@ -1,10 +1,11 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils games
EAPI=7
MY_P=${PN}-v${PV}
inherit toolchain-funcs
MY_P="${PN}-v${PV}"
DESCRIPTION="An ncurses-based Nibbles clone"
HOMEPAGE="http://www.earth.li/projectpurple/progs/nibbles.html"
SRC_URI="http://www.earth.li/projectpurple/files/${MY_P}.tar.gz"
@@ -14,12 +15,22 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~x86-linux ~ppc-macos"
IUSE=""
DEPEND="sys-libs/ncurses:0"
RDEPEND=${DEPEND}
DEPEND="sys-libs/ncurses:0="
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
GAMES_DATADIR="/usr/share"
GAMES_STATEDIR="/var/games/${PN}"
PATCHES=(
"${FILESDIR}"/${P}-as-needed.patch
)
S="${WORKDIR}/${MY_P}"
src_prepare() {
default
sed -i \
-e "s#/usr/local/games/nibbles.levels#${GAMES_DATADIR}/${PN}#" \
nibbles.h || die
@@ -27,22 +38,22 @@ src_prepare() {
sed -i \
-e "s#/var/lib/games/nibbles.score#${GAMES_STATEDIR}/nibbles.scores#" \
scoring.h || die
}
epatch "${FILESDIR}"/${P}-as-needed.patch
src_compile() {
PKGCONFIG="$(tc-getPKG_CONFIG)" emake
}
src_install() {
dogamesbin nibbles
dobin nibbles
insinto "${GAMES_DATADIR}/${PN}"
doins nibbles.levels/*
dodir "${GAMES_STATEDIR}"
touch "${D}${GAMES_STATEDIR}/nibbles.scores"
touch "${ED}${GAMES_STATEDIR}/nibbles.scores"
dodoc HISTORY CREDITS TODO README
prepgamesdirs
fperms 664 "${GAMES_STATEDIR}/nibbles.scores"
}