diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2011-11-15 16:35:58 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2011-11-15 16:35:58 +0000 |
commit | 0fbb5795d31f61b1e287049a7f5235c1bd7643ed (patch) | |
tree | 120a5c8945ac57741041edd20b8eda2f4a5c3349 /app-accessibility | |
parent | added mask for app-accessibility/edbrowse-3.4.8 (needs currently-masked spide... (diff) | |
download | gentoo-2-0fbb5795d31f61b1e287049a7f5235c1bd7643ed.tar.gz gentoo-2-0fbb5795d31f61b1e287049a7f5235c1bd7643ed.tar.bz2 gentoo-2-0fbb5795d31f61b1e287049a7f5235c1bd7643ed.zip |
adding new version that supports spidermonkey-1.8.5 and fixing deps of current version
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/edbrowse/ChangeLog | 9 | ||||
-rw-r--r-- | app-accessibility/edbrowse/edbrowse-3.4.7.ebuild | 6 | ||||
-rw-r--r-- | app-accessibility/edbrowse/edbrowse-3.4.8.ebuild | 51 |
3 files changed, 62 insertions, 4 deletions
diff --git a/app-accessibility/edbrowse/ChangeLog b/app-accessibility/edbrowse/ChangeLog index 34cdcdd2b845..336a4fb3ecbb 100644 --- a/app-accessibility/edbrowse/ChangeLog +++ b/app-accessibility/edbrowse/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-accessibility/edbrowse # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v 1.6 2011/09/13 19:21:01 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/ChangeLog,v 1.7 2011/11/15 16:35:58 axs Exp $ + +*edbrowse-3.4.8 (15 Nov 2011) + + 15 Nov 2011; Ian Stakenvicius <axs@gentoo.org> edbrowse-3.4.7.ebuild, + +edbrowse-3.4.8.ebuild: + adding new version that supports spidermonkey-1.8.5 and fixing deps of + current version 13 Sep 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, bug #353756 diff --git a/app-accessibility/edbrowse/edbrowse-3.4.7.ebuild b/app-accessibility/edbrowse/edbrowse-3.4.7.ebuild index dd1f3fb19ed5..62e0d323f95b 100644 --- a/app-accessibility/edbrowse/edbrowse-3.4.7.ebuild +++ b/app-accessibility/edbrowse/edbrowse-3.4.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.4.7.ebuild,v 1.2 2011/05/16 12:23:15 cbrannon Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.4.7.ebuild,v 1.3 2011/11/15 16:35:58 axs Exp $ EAPI="4" inherit eutils @@ -12,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="linguas_fr odbc" -COMMON_DEPEND="dev-lang/spidermonkey +COMMON_DEPEND="<dev-lang/spidermonkey-1.8.5 >=sys-libs/readline-6.0 >=net-misc/curl-7.17.0 >=dev-libs/libpcre-7.8 @@ -29,7 +29,7 @@ src_prepare() { src_compile() { local JSLIB=-ljs - if has_version ">=dev-lang/spidermonkey-1.9"; then + if has_version "=dev-lang/spidermonkey-1.8.2*"; then JSLIB=-lmozjs fi diff --git a/app-accessibility/edbrowse/edbrowse-3.4.8.ebuild b/app-accessibility/edbrowse/edbrowse-3.4.8.ebuild new file mode 100644 index 000000000000..cff30ab7b4ff --- /dev/null +++ b/app-accessibility/edbrowse/edbrowse-3.4.8.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/edbrowse/edbrowse-3.4.8.ebuild,v 1.1 2011/11/15 16:35:58 axs 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-1.8.5 + >=sys-libs/readline-6.0 + >=net-misc/curl-7.17.0 + >=dev-libs/libpcre-7.8 + >=dev-libs/openssl-0.9.8j + odbc? ( dev-db/unixODBC )" +DEPEND="${COMMON_DEPEND} + app-arch/unzip" +RDEPEND="${COMMON_DEPEND}" + +src_compile() { + emake -j1 prefix=/usr STRIP='' + if use odbc; then + # Top-level makefile doesn't have this target. + cd src + emake -j1 prefix=/usr STRIP='' edbrowseodbc + cd .. + fi +} + +src_install() { + cd src + emake -j1 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 +} |