diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-06-15 20:43:50 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-06-15 20:43:50 +0000 |
commit | f3db21214c6c5c3d8c5973deb8332bd1be0aff96 (patch) | |
tree | 324695feeca00b4ae2674b22017d54da20f9a2ec /dev-vcs/tig | |
parent | Mask some packages for removal (diff) | |
download | gentoo-2-f3db21214c6c5c3d8c5973deb8332bd1be0aff96.tar.gz gentoo-2-f3db21214c6c5c3d8c5973deb8332bd1be0aff96.tar.bz2 gentoo-2-f3db21214c6c5c3d8c5973deb8332bd1be0aff96.zip |
dev-vcs/tig: Build correctly with ncurses[tinfo]
(Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'dev-vcs/tig')
-rw-r--r-- | dev-vcs/tig/ChangeLog | 5 | ||||
-rw-r--r-- | dev-vcs/tig/metadata.xml | 16 | ||||
-rw-r--r-- | dev-vcs/tig/tig-1.1.ebuild | 9 |
3 files changed, 19 insertions, 11 deletions
diff --git a/dev-vcs/tig/ChangeLog b/dev-vcs/tig/ChangeLog index 3d70287e2649..0e1ab4251602 100644 --- a/dev-vcs/tig/ChangeLog +++ b/dev-vcs/tig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-vcs/tig # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.20 2013/01/11 11:16:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/ChangeLog,v 1.21 2013/06/15 20:43:50 jlec Exp $ + + 15 Jun 2013; Justin Lecher <jlec@gentoo.org> tig-1.1.ebuild, metadata.xml: + Build correctly with ncurses[tinfo] 11 Jan 2013; Agostino Sarubbo <ago@gentoo.org> tig-1.1.ebuild: Stable for x86, wrt bug #450958 diff --git a/dev-vcs/tig/metadata.xml b/dev-vcs/tig/metadata.xml index f5df012249fb..c02930d812ce 100644 --- a/dev-vcs/tig/metadata.xml +++ b/dev-vcs/tig/metadata.xml @@ -1,12 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<maintainer> - <email>gregkh@gentoo.org</email> - <name>Greg Kroah-Hartman</name> -</maintainer> -<maintainer> - <email>radhermit@gentoo.org</email> - <name>Tim Harder</name> -</maintainer> + <maintainer> + <email>gregkh@gentoo.org</email> + <name>Greg Kroah-Hartman</name> + </maintainer> + <maintainer> + <email>radhermit@gentoo.org</email> + <name>Tim Harder</name> + </maintainer> </pkgmetadata> diff --git a/dev-vcs/tig/tig-1.1.ebuild b/dev-vcs/tig/tig-1.1.ebuild index 7a5b0ed3ddf3..867626fdef6c 100644 --- a/dev-vcs/tig/tig-1.1.ebuild +++ b/dev-vcs/tig/tig-1.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-1.1.ebuild,v 1.3 2013/01/11 11:16:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/tig/tig-1.1.ebuild,v 1.4 2013/06/15 20:43:50 jlec Exp $ EAPI=4 -inherit bash-completion-r1 +inherit bash-completion-r1 toolchain-funcs DESCRIPTION="Tig: text mode interface for git" HOMEPAGE="http://jonas.nitro.dk/tig/" @@ -17,8 +17,13 @@ IUSE="" DEPEND="sys-libs/ncurses" RDEPEND="${DEPEND} + virtual/pkgconfig dev-vcs/git" +src_configure() { + econf CURSES_LIB="$($(tc-getPKG_CONFIG) --libs ncursesw)" +} + src_install() { emake DESTDIR="${D}" install install-doc-man dodoc BUGS NEWS |