blob: c3bc9a1f139fe45abddaa77da5c3597f9f103f4e (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="a simple web browser based on WebKit/GTK+"
HOMEPAGE="https://surf.suckless.org/"
SRC_URI="http://git.cynerd.cz/surf/snapshot/surf-${PV}.tar.gz"
S="${WORKDIR}/surf-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
COMMON_DEPEND="
dev-libs/glib:2
net-libs/libsoup
net-libs/webkit-gtk:4
x11-libs/gtk+:3
x11-libs/libX11
app-crypt/gcr
"
DEPEND="
${COMMON_DEPEND}
virtual/pkgconfig
"
RDEPEND="
!sci-chemistry/surf
!www-client/surf
${COMMON_DEPEND}
x11-apps/xprop
x11-misc/dmenu
net-misc/curl
"
src_prepare() {
default
tc-export CC PKG_CONFIG
}
|