blob: 813d487b324e1b600f96eebaa4f12da064a1cff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit savedconfig
DESCRIPTION="a fast, lightweight, vim-like browser based on webkit"
HOMEPAGE="https://fanglingsu.github.io/vimb/"
KEYWORDS="~amd64"
SRC_URI="https://github.com/fanglingsu/vimb/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
IUSE="savedconfig"
DEPEND="
virtual/pkgconfig
"
RDEPEND="
x11-libs/gtk+:3
>=net-libs/webkit-gtk-2.20.0:4
"
src_prepare() {
default
restore_config config.def.h
}
src_compile() {
emake V=1 PREFIX="/usr"
}
src_install() {
emake V=1 PREFIX="/usr" DESTDIR="${D}" install
save_config src/config.def.h
}
pkg_postinst() {
elog "For media decoding to work properly, you need to install:"
elog "media-plugins/gst-plugins-libav"
elog "media-libs/gst-plugins-good"
}
|