teiresias 14/09/29 10:20:27
Modified: ChangeLog
Added: edbrowse-3.5.1.ebuild
Removed: edbrowse-3.4.8.ebuild edbrowse-3.4.9.ebuild
edbrowse-3.4.7.ebuild
Log:
New upstream version, 3.5.1. Also, remove old versions.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key
0x6521e06d)
Revision Changes Path
1.12 app-accessibility/edbrowse/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/ChangeLog?rev=1.12&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/ChangeLog?rev=1.12&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 11 Aug 2013 01:31:58 -0000 1.11
+++ ChangeLog 29 Sep 2014 10:20:27 -0000 1.12
@@ -1,6 +1,14 @@
# ChangeLog for app-accessibility/edbrowse
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v 1.11
2013/08/11 01:31:58 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v 1.12
2014/09/29 10:20:27 teiresias Exp $
+
+*edbrowse-3.5.1 (29 Sep 2014)
+
+ 29 Sep 2014; Christopher Brannon <[email protected]>
+ -edbrowse-3.4.7.ebuild, -edbrowse-3.4.8.ebuild, -edbrowse-3.4.9.ebuild,
+ +edbrowse-3.5.1.ebuild, -files/edbrowse-3.4.7-fix-makefile.patch,
+ +files/edbrowse-3.5.1-implicit-decl.patch:
+ New upstream version, 3.5.1. Also, remove old versions.
*edbrowse-3.4.9 (11 Aug 2013)
1.1 app-accessibility/edbrowse/edbrowse-3.5.1.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild?rev=1.1&content-type=text/plain
Index: edbrowse-3.5.1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.5.1.ebuild,v 1.1
2014/09/29 10:20:27 teiresias Exp $
EAPI="4"
inherit eutils
DESCRIPTION="editor, browser, and mail client using the /bin/ed interface"
HOMEPAGE="http://the-brannons.com/edbrowse/"
SRC_URI="http://the-brannons.com/${PN}/${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="linguas_fr odbc"
COMMON_DEPEND=">=dev-lang/spidermonkey-24.0:24
>=sys-libs/readline-6.0
>=net-misc/curl-7.36.0
>=dev-libs/libpcre-7.8
>=dev-libs/openssl-0.9.8j
odbc? ( dev-db/unixODBC )"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
app-arch/unzip"
RDEPEND="${COMMON_DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${P}-implicit-decl.patch"
}
src_compile() {
jscppflags=$(pkg-config --cflags mozjs-24)
jslib=$(pkg-config --libs mozjs-24)
emake prefix=/usr JSLIB="${jslib}" JS_CXXFLAGS="${jscppflags}" STRIP=''
if use odbc; then
# Top-level makefile doesn't have this target.
cd src
emake prefix=/usr JSLIB="${jslib}" JS_CXXFLAGS="${jscppflags}" STRIP=''
cd ..
fi
}
src_install() {
cd src
emake prefix=/usr DESTDIR="${D}" install
if use odbc; then
dobin edbrowseodbc
fi
cd ..
dodoc CHANGES README todo
cd doc
dobin setup.ebrc
dohtml usersguide.html philosophy.html
dodoc sample.ebrc
if use linguas_fr; then
dohtml usersguide_fr.html philosophy_fr.html
dodoc sample_fr.ebrc
fi
}