blob: b5263e6958561418152581995f9e10a9b840add5 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/goaccess/goaccess-0.5.ebuild,v 1.1 2012/07/27 05:24:20 yngwin Exp $
EAPI=4
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[unicode?]
geoip? ( dev-libs/geoip )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
src_configure() {
econf $(use_enable geoip) $(use_enable unicode utf8)
}
|