jer 14/10/28 00:04:35 Modified: ChangeLog urlview-0.9.ebuild Log: Fix building against sys-libs/ncurses[tinfo] (bug #526332). (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Revision Changes Path 1.24 net-misc/urlview/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/ChangeLog?rev=1.24&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/ChangeLog?rev=1.24&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/ChangeLog?r1=1.23&r2=1.24 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/urlview/ChangeLog,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- ChangeLog 5 Apr 2012 18:21:59 -0000 1.23 +++ ChangeLog 28 Oct 2014 00:04:35 -0000 1.24 @@ -1,6 +1,11 @@ # ChangeLog for net-misc/urlview -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/ChangeLog,v 1.23 2012/04/05 18:21:59 nimiux Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/ChangeLog,v 1.24 2014/10/28 00:04:35 jer Exp $ + + 28 Oct 2014; Jeroen Roovers <[email protected]> urlview-0.9.ebuild, + files/urlview-0.9-DESTDIR.patch, +files/urlview-0.9-tinfo.patch, + files/include-fix.patch, files/no-trailing-newline.patch: + Fix building against sys-libs/ncurses[tinfo] (bug #526332). 05 Apr 2012; Chema Alonso <[email protected]> metadata.xml: Added myself as maintainer 1.28 net-misc/urlview/urlview-0.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild?rev=1.28&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild?rev=1.28&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild?r1=1.27&r2=1.28 Index: urlview-0.9.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- urlview-0.9.ebuild 3 Feb 2008 15:43:44 -0000 1.27 +++ urlview-0.9.ebuild 28 Oct 2014 00:04:35 -0000 1.28 @@ -1,8 +1,9 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v 1.27 2008/02/03 15:43:44 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v 1.28 2014/10/28 00:04:35 jer Exp $ -inherit eutils +EAPI=5 +inherit autotools eutils DESCRIPTION="extracts urls from text and will send them to another app" HOMEPAGE="http://www.mutt.org" @@ -11,20 +12,27 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm ia64 ppc ppc64 s390 sh sparc x86" -IUSE="" -DEPEND=">=sys-libs/ncurses-5.2" +RDEPEND=" + >=sys-libs/ncurses-5.2 +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig +" + +src_prepare() { + epatch \ + "${FILESDIR}"/no-trailing-newline.patch \ + "${FILESDIR}"/include-fix.patch \ + "${FILESDIR}"/${P}-DESTDIR.patch \ + "${FILESDIR}"/${P}-tinfo.patch -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/no-trailing-newline.patch - epatch "${FILESDIR}"/include-fix.patch - epatch "${FILESDIR}"/${P}-DESTDIR.patch + eautoreconf } src_install() { - emake install DESTDIR="${D}" || die + default dodoc README INSTALL ChangeLog AUTHORS sample.urlview dobin url_handler.sh }
