diff options
author | 2014-10-23 03:16:43 +0000 | |
---|---|---|
committer | 2014-10-23 03:16:43 +0000 | |
commit | 7662fa69e2c8bab56bf863ca5cc2e10d8fa99656 (patch) | |
tree | 3fdbb558cc1a1d0d0e78c78fe282a3b1693c66ce /www-client | |
parent | Version bump. (diff) | |
download | gentoo-2-7662fa69e2c8bab56bf863ca5cc2e10d8fa99656.tar.gz gentoo-2-7662fa69e2c8bab56bf863ca5cc2e10d8fa99656.tar.bz2 gentoo-2-7662fa69e2c8bab56bf863ca5cc2e10d8fa99656.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'www-client')
-rw-r--r-- | www-client/vimb/ChangeLog | 7 | ||||
-rw-r--r-- | www-client/vimb/vimb-2.8.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/www-client/vimb/ChangeLog b/www-client/vimb/ChangeLog index 9392c4aee431..5afcb61b76b7 100644 --- a/www-client/vimb/ChangeLog +++ b/www-client/vimb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-client/vimb # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/vimb/ChangeLog,v 1.2 2014/10/08 01:32:46 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/vimb/ChangeLog,v 1.3 2014/10/23 03:16:43 radhermit Exp $ + +*vimb-2.8 (23 Oct 2014) + + 23 Oct 2014; Tim Harder <radhermit@gentoo.org> +vimb-2.8.ebuild: + Version bump. *vimb-2.7 (08 Oct 2014) diff --git a/www-client/vimb/vimb-2.8.ebuild b/www-client/vimb/vimb-2.8.ebuild new file mode 100644 index 000000000000..bcfebde3f84b --- /dev/null +++ b/www-client/vimb/vimb-2.8.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/vimb/vimb-2.8.ebuild,v 1.1 2014/10/23 03:16:43 radhermit Exp $ + +EAPI=5 + +inherit toolchain-funcs eutils + +DESCRIPTION="a fast, lightweight, vim-like browser based on webkit" +HOMEPAGE="http://fanglingsu.github.io/vimb/" +SRC_URI="https://github.com/fanglingsu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gtk3" + +RDEPEND=" + >=net-libs/libsoup-2.38:2.4 + !gtk3? ( + >=net-libs/webkit-gtk-1.5.0:2 + x11-libs/gtk+:2 + ) + gtk3? ( + >=net-libs/webkit-gtk-1.5.0:3 + x11-libs/gtk+:3 + ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + # force verbose build + sed -e '/@echo "\($(CC)\|${CC}\) $@"/d' \ + -e 's/@$(CC)/$(CC)/' \ + -i Makefile || die + + epatch_user +} + +src_compile() { + local myconf + use gtk3 && myconf+=" GTK=3" + + emake CC="$(tc-getCC)" ${myconf} +} + +src_install() { + emake PREFIX=/usr DESTDIR="${D}" install +} |