diff options
author | Ulrich Müller <ulm@gentoo.org> | 2013-02-28 07:12:41 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2013-02-28 07:12:41 +0000 |
commit | 33318b6f0f81d2b6fc67c3c9cd1e5f9f9fa1de58 (patch) | |
tree | d3b30e662a6d5f75cad9b554e53a452e073e3f93 /app-editors/jove | |
parent | Version bump, using autotools-utils. Remove old. (diff) | |
download | gentoo-2-33318b6f0f81d2b6fc67c3c9cd1e5f9f9fa1de58.tar.gz gentoo-2-33318b6f0f81d2b6fc67c3c9cd1e5f9f9fa1de58.tar.bz2 gentoo-2-33318b6f0f81d2b6fc67c3c9cd1e5f9f9fa1de58.zip |
Fix build failure with separate tinfo library, bug 459486.
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-editors/jove')
-rw-r--r-- | app-editors/jove/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/jove/jove-4.16.0.73.ebuild | 11 |
2 files changed, 12 insertions, 6 deletions
diff --git a/app-editors/jove/ChangeLog b/app-editors/jove/ChangeLog index 4a65bc126946..d826a6660593 100644 --- a/app-editors/jove/ChangeLog +++ b/app-editors/jove/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/jove -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.34 2012/09/26 04:49:12 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.35 2013/02/28 07:12:41 ulm Exp $ + + 28 Feb 2013; Ulrich Müller <ulm@gentoo.org> jove-4.16.0.73.ebuild: + Fix build failure with separate tinfo library, bug 459486. 26 Sep 2012; Ulrich Müller <ulm@gentoo.org> jove-4.16.0.73.ebuild: Specify LICENSE more precisely. Bump ebuild to EAPI 4. diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild index c254e3a074bc..f63787160b69 100644 --- a/app-editors/jove/jove-4.16.0.73.ebuild +++ b/app-editors/jove/jove-4.16.0.73.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.73.ebuild,v 1.6 2012/09/26 04:49:12 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.73.ebuild,v 1.7 2013/02/28 07:12:41 ulm Exp $ EAPI=4 @@ -16,7 +16,8 @@ KEYWORDS="amd64 ppc x86" IUSE="doc" RDEPEND="sys-libs/ncurses" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + virtual/pkgconfig" S="${WORKDIR}/${PN}${PV}" @@ -30,7 +31,9 @@ src_prepare() { src_compile() { tc-export CC - emake OPTFLAGS="${CFLAGS}" SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" + emake OPTFLAGS="${CFLAGS}" \ + SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \ + TERMCAPLIB="$(pkg-config --libs ncurses)" if use doc; then # Full manual (*not* man page) |