35 lines
772 B
Bash
35 lines
772 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/www-client/vimprobable2/vimprobable2-1.2.1.ebuild,v 1.1 2013/02/16 05:17:23 radhermit Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="A minimal web browser that behaves like the Vimperator plugin for Firefox"
|
|
HOMEPAGE="http://www.vimprobable.org/"
|
|
SRC_URI="mirror://sourceforge/vimprobable/${PN}_${PV}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="net-libs/libsoup:2.4
|
|
net-libs/webkit-gtk:2
|
|
x11-libs/gtk+:2
|
|
x11-libs/libX11"
|
|
DEPEND="${RDEPEND}
|
|
dev-lang/perl
|
|
virtual/pkgconfig"
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
src_prepare() {
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
doman ${PN}.1 vimprobablerc.5
|
|
}
|