blob: 477b938374a9b16f8d69a37e8592de524cefd1a5 (
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 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
AUTOTOOLS_AUTORECONF=1
inherit autotools-utils
DESCRIPTION="A real-time Apache log analyzer and interactive viewer that runs in a terminal"
HOMEPAGE="http://goaccess.prosoftcorp.com"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
IUSE="geoip unicode"
RDEPEND="
dev-libs/glib:2
sys-libs/ncurses:0=[unicode?]
geoip? ( dev-libs/geoip )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${P}-CFLAGS.patch
"${FILESDIR}"/${P}-tinfo.patch
)
src_configure() {
# configure does not properly recognise '--disable-something'
local myeconfargs=(
$(usex geoip '--enable-geoip' '' '' '')
$(usex unicode '--enable-utf8' '' '' '')
)
autotools-utils_src_configure
}
src_compile() {
autotools-utils_src_compile CFLAGS="${CFLAGS}"
}
|