Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/urlview: ChangeLog urlview-0.9.ebuild
Date: Tue, 28 Oct 2014 00:04:40
Message-Id: 20141028000435.4F7568E3F@oystercatcher.gentoo.org
1 jer 14/10/28 00:04:35
2
3 Modified: ChangeLog urlview-0.9.ebuild
4 Log:
5 Fix building against sys-libs/ncurses[tinfo] (bug #526332).
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.24 net-misc/urlview/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/urlview/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 5 Apr 2012 18:21:59 -0000 1.23
23 +++ ChangeLog 28 Oct 2014 00:04:35 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/urlview
26 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/ChangeLog,v 1.23 2012/04/05 18:21:59 nimiux Exp $
28 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/ChangeLog,v 1.24 2014/10/28 00:04:35 jer Exp $
30 +
31 + 28 Oct 2014; Jeroen Roovers <jer@g.o> urlview-0.9.ebuild,
32 + files/urlview-0.9-DESTDIR.patch, +files/urlview-0.9-tinfo.patch,
33 + files/include-fix.patch, files/no-trailing-newline.patch:
34 + Fix building against sys-libs/ncurses[tinfo] (bug #526332).
35
36 05 Apr 2012; Chema Alonso <nimiux@g.o> metadata.xml:
37 Added myself as maintainer
38
39
40
41 1.28 net-misc/urlview/urlview-0.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild?rev=1.28&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild?rev=1.28&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild?r1=1.27&r2=1.28
46
47 Index: urlview-0.9.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v
50 retrieving revision 1.27
51 retrieving revision 1.28
52 diff -u -r1.27 -r1.28
53 --- urlview-0.9.ebuild 3 Feb 2008 15:43:44 -0000 1.27
54 +++ urlview-0.9.ebuild 28 Oct 2014 00:04:35 -0000 1.28
55 @@ -1,8 +1,9 @@
56 -# Copyright 1999-2008 Gentoo Foundation
57 +# Copyright 1999-2014 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v 1.27 2008/02/03 15:43:44 grobian Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/net-misc/urlview/urlview-0.9.ebuild,v 1.28 2014/10/28 00:04:35 jer Exp $
61
62 -inherit eutils
63 +EAPI=5
64 +inherit autotools eutils
65
66 DESCRIPTION="extracts urls from text and will send them to another app"
67 HOMEPAGE="http://www.mutt.org"
68 @@ -11,20 +12,27 @@
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="alpha amd64 arm ia64 ppc ppc64 s390 sh sparc x86"
72 -IUSE=""
73
74 -DEPEND=">=sys-libs/ncurses-5.2"
75 +RDEPEND="
76 + >=sys-libs/ncurses-5.2
77 +"
78 +DEPEND="
79 + ${RDEPEND}
80 + virtual/pkgconfig
81 +"
82 +
83 +src_prepare() {
84 + epatch \
85 + "${FILESDIR}"/no-trailing-newline.patch \
86 + "${FILESDIR}"/include-fix.patch \
87 + "${FILESDIR}"/${P}-DESTDIR.patch \
88 + "${FILESDIR}"/${P}-tinfo.patch
89
90 -src_unpack() {
91 - unpack ${A}
92 - cd "${S}"
93 - epatch "${FILESDIR}"/no-trailing-newline.patch
94 - epatch "${FILESDIR}"/include-fix.patch
95 - epatch "${FILESDIR}"/${P}-DESTDIR.patch
96 + eautoreconf
97 }
98
99 src_install() {
100 - emake install DESTDIR="${D}" || die
101 + default
102 dodoc README INSTALL ChangeLog AUTHORS sample.urlview
103 dobin url_handler.sh
104 }