diff options
author | 2015-06-08 05:02:13 +0000 | |
---|---|---|
committer | 2015-06-08 05:02:13 +0000 | |
commit | 30244ab23094900a3d335bf4d56deed424ff67bc (patch) | |
tree | dbb9f7adb77ff54fe8159c74de3cbd5d6326609c /games-emulation/zsnes/zsnes-1.51-r4.ebuild | |
parent | Stable for HPPA (bug #550514). (diff) | |
download | gentoo-2-30244ab23094900a3d335bf4d56deed424ff67bc.tar.gz gentoo-2-30244ab23094900a3d335bf4d56deed424ff67bc.tar.bz2 gentoo-2-30244ab23094900a3d335bf4d56deed424ff67bc.zip |
build with ncurses[tinfo] (bug #551406)
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-emulation/zsnes/zsnes-1.51-r4.ebuild')
-rw-r--r-- | games-emulation/zsnes/zsnes-1.51-r4.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games-emulation/zsnes/zsnes-1.51-r4.ebuild b/games-emulation/zsnes/zsnes-1.51-r4.ebuild index f0a89df8383b..06cef2cdffd2 100644 --- a/games-emulation/zsnes/zsnes-1.51-r4.ebuild +++ b/games-emulation/zsnes/zsnes-1.51-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v 1.11 2015/06/02 04:40:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r4.ebuild,v 1.12 2015/06/08 05:02:13 mr_bones_ Exp $ EAPI=5 inherit eutils autotools flag-o-matic toolchain-funcs multilib pax-utils games @@ -23,6 +23,7 @@ RDEPEND=" png? ( media-libs/libpng:0[abi_x86_32(-)] )" DEPEND="${RDEPEND} dev-lang/nasm + debug? ( virtual/pkgconfig ) amd64? ( >=sys-apps/portage-2.1 )" S=${WORKDIR}/${PN}_${PV//./_}/src @@ -62,7 +63,12 @@ src_prepare() { -e '/^CFLAGS=.*local/s:-pipe.*:-Wall -I.":' \ -e '/^LDFLAGS=.*local/d' \ -e '/\w*CFLAGS=.*fomit/s:-O3.*$STRIP::' \ + -e '/lncurses/s:-lncurses:`pkg-config ncurses --libs`:' \ configure.in || die + sed -i \ + -e 's/configure.in/configure.ac/' \ + Makefile.in || die + mv configure.in configure.ac || die eautoreconf } |