From 8d2041da5a9efea1e9b2a4e9d741cb8d30082df6 Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Thu, 18 Jul 2019 16:45:39 +0200 Subject: [PATCH] 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 --- .../files/nibbles-0.0.4-as-needed.patch | 6 ++-- ...s-0.0.4.ebuild => nibbles-0.0.4-r1.ebuild} | 35 ++++++++++++------- 2 files changed, 26 insertions(+), 15 deletions(-) rename games-arcade/nibbles/{nibbles-0.0.4.ebuild => nibbles-0.0.4-r1.ebuild} (63%) diff --git a/games-arcade/nibbles/files/nibbles-0.0.4-as-needed.patch b/games-arcade/nibbles/files/nibbles-0.0.4-as-needed.patch index 7e27d1fb9cac..0f1a587a41db 100644 --- a/games-arcade/nibbles/files/nibbles-0.0.4-as-needed.patch +++ b/games-arcade/nibbles/files/nibbles-0.0.4-as-needed.patch @@ -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 diff --git a/games-arcade/nibbles/nibbles-0.0.4.ebuild b/games-arcade/nibbles/nibbles-0.0.4-r1.ebuild similarity index 63% rename from games-arcade/nibbles/nibbles-0.0.4.ebuild rename to games-arcade/nibbles/nibbles-0.0.4-r1.ebuild index fe523f359b3d..419c9d24ae6f 100644 --- a/games-arcade/nibbles/nibbles-0.0.4.ebuild +++ b/games-arcade/nibbles/nibbles-0.0.4-r1.ebuild @@ -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" + +GAMES_DATADIR="/usr/share" +GAMES_STATEDIR="/var/games/${PN}" + +PATCHES=( + "${FILESDIR}"/${P}-as-needed.patch +) -S=${WORKDIR}/${MY_P} +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" } -- 2.26.2