games-arcade/nibbles: Fixed build with sys-libs/ncurses[tinfo]
authorLars Wendler <polynomial-c@gentoo.org>
Thu, 18 Jul 2019 14:45:39 +0000 (16:45 +0200)
committerLars Wendler <polynomial-c@gentoo.org>
Thu, 18 Jul 2019 14:46:27 +0000 (16:46 +0200)
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>
games-arcade/nibbles/files/nibbles-0.0.4-as-needed.patch
games-arcade/nibbles/nibbles-0.0.4-r1.ebuild [moved from games-arcade/nibbles/nibbles-0.0.4.ebuild with 63% similarity]

index 7e27d1fb9caccfc50fddc1429015b648abb97f6b..0f1a587a41db3ceb8d02f089553f1cfd9f7c33f4 100644 (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
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 fe523f359b3d87e43e00bca2b0278a8837e185c7..419c9d24ae6f8cfcf06ef6e7f52025ba06fe76dc 100644 (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"
+
+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"
 }