Gentoo Archives: gentoo-commits

From: "Christopher Brannon (teiresias)" <teiresias@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/edbrowse: edbrowse-3.5.1.ebuild ChangeLog edbrowse-3.4.8.ebuild edbrowse-3.4.9.ebuild edbrowse-3.4.7.ebuild
Date: Mon, 29 Sep 2014 10:20:31
Message-Id: 20140929102027.CE912430@oystercatcher.gentoo.org
1 teiresias 14/09/29 10:20:27
2
3 Modified: ChangeLog
4 Added: edbrowse-3.5.1.ebuild
5 Removed: edbrowse-3.4.8.ebuild edbrowse-3.4.9.ebuild
6 edbrowse-3.4.7.ebuild
7 Log:
8 New upstream version, 3.5.1. Also, remove old versions.
9
10 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x6521e06d)
11
12 Revision Changes Path
13 1.12 app-accessibility/edbrowse/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/ChangeLog?rev=1.12&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/ChangeLog?rev=1.12&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/ChangeLog?r1=1.11&r2=1.12
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v
22 retrieving revision 1.11
23 retrieving revision 1.12
24 diff -u -r1.11 -r1.12
25 --- ChangeLog 11 Aug 2013 01:31:58 -0000 1.11
26 +++ ChangeLog 29 Sep 2014 10:20:27 -0000 1.12
27 @@ -1,6 +1,14 @@
28 # ChangeLog for app-accessibility/edbrowse
29 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v 1.11 2013/08/11 01:31:58 patrick Exp $
31 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v 1.12 2014/09/29 10:20:27 teiresias Exp $
33 +
34 +*edbrowse-3.5.1 (29 Sep 2014)
35 +
36 + 29 Sep 2014; Christopher Brannon <teiresias@g.o>
37 + -edbrowse-3.4.7.ebuild, -edbrowse-3.4.8.ebuild, -edbrowse-3.4.9.ebuild,
38 + +edbrowse-3.5.1.ebuild, -files/edbrowse-3.4.7-fix-makefile.patch,
39 + +files/edbrowse-3.5.1-implicit-decl.patch:
40 + New upstream version, 3.5.1. Also, remove old versions.
41
42 *edbrowse-3.4.9 (11 Aug 2013)
43
44
45
46
47 1.1 app-accessibility/edbrowse/edbrowse-3.5.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: edbrowse-3.5.1.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild,v 1.1 2014/09/29 10:20:27 teiresias Exp $
57
58 EAPI="4"
59 inherit eutils
60
61 DESCRIPTION="editor, browser, and mail client using the /bin/ed interface"
62 HOMEPAGE="http://the-brannons.com/edbrowse/"
63 SRC_URI="http://the-brannons.com/${PN}/${P}.zip"
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="linguas_fr odbc"
68 COMMON_DEPEND=">=dev-lang/spidermonkey-24.0:24
69 >=sys-libs/readline-6.0
70 >=net-misc/curl-7.36.0
71 >=dev-libs/libpcre-7.8
72 >=dev-libs/openssl-0.9.8j
73 odbc? ( dev-db/unixODBC )"
74 DEPEND="${COMMON_DEPEND}
75 virtual/pkgconfig
76 app-arch/unzip"
77 RDEPEND="${COMMON_DEPEND}"
78
79 src_prepare() {
80 epatch "${FILESDIR}/${P}-implicit-decl.patch"
81 }
82
83 src_compile() {
84 jscppflags=$(pkg-config --cflags mozjs-24)
85 jslib=$(pkg-config --libs mozjs-24)
86 emake prefix=/usr JSLIB="${jslib}" JS_CXXFLAGS="${jscppflags}" STRIP=''
87 if use odbc; then
88 # Top-level makefile doesn't have this target.
89 cd src
90 emake prefix=/usr JSLIB="${jslib}" JS_CXXFLAGS="${jscppflags}" STRIP=''
91 cd ..
92 fi
93 }
94
95 src_install() {
96 cd src
97 emake prefix=/usr DESTDIR="${D}" install
98 if use odbc; then
99 dobin edbrowseodbc
100 fi
101 cd ..
102 dodoc CHANGES README todo
103 cd doc
104 dobin setup.ebrc
105 dohtml usersguide.html philosophy.html
106 dodoc sample.ebrc
107 if use linguas_fr; then
108 dohtml usersguide_fr.html philosophy_fr.html
109 dodoc sample_fr.ebrc
110 fi
111 }