commit: a652b0ad3bdc29210b8302ac5b882888daf1b625 Author: Stefan Strogin <steils <AT> gentoo <DOT> org> AuthorDate: Sat Aug 17 04:40:25 2019 +0000 Commit: Stefan Strogin <steils <AT> gentoo <DOT> org> CommitDate: Sat Aug 17 04:42:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a652b0ad
games-strategy/dopewars: fix building with ncurses[tinfo] Closes: https://bugs.gentoo.org/690782 Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Stefan Strogin <steils <AT> gentoo.org> games-strategy/dopewars/dopewars-1.5.12-r3.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/games-strategy/dopewars/dopewars-1.5.12-r3.ebuild b/games-strategy/dopewars/dopewars-1.5.12-r3.ebuild index 4d1c3843761..7da82083239 100644 --- a/games-strategy/dopewars/dopewars-1.5.12-r3.ebuild +++ b/games-strategy/dopewars/dopewars-1.5.12-r3.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit desktop + +inherit desktop toolchain-funcs DESCRIPTION="Re-Write of the game Drug Wars" HOMEPAGE="http://dopewars.sourceforge.net/" @@ -36,6 +37,8 @@ src_prepare() { -e "/\/doc\// s:DPDATADIR:\"/usr/share\":" \ -e 's:index.html:html/index.html:' \ src/dopewars.c || die + sed -i -e "s/\-lncurses/$($(tc-getPKG_CONFIG) --libs ncurses)/g" \ + configure || die } src_configure() {
