blob: cb50a54fb74ff4f5b76d5215ee18c47081a2ad41 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/tinystats/tinystats-1.1.ebuild,v 1.3 2010/03/23 12:54:58 bangert Exp $
inherit toolchain-funcs
DESCRIPTION="A tinydns logging helper app."
HOMEPAGE="http://www.morettoni.net/tinystats.en.html"
SRC_URI="http://www.morettoni.net/bsd/${P}.tar.gz"
IUSE="ipv6"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~x86"
RDEPEND="net-dns/djbdns"
S=${WORKDIR}/${PN}
src_compile() {
use ipv6 && IPV6="-D WITH_IPV6"
$(tc-getCC) ${CFLAGS} ${IPV6} -o tinystats ${LDFLAGS} tinystats.c || \
die "compile failed"
}
src_install() {
dobin tinystats || die 'dobin failed'
dodoc README
docinto sample
dodoc start_slave.sh.sample update_slave.sh.sample \
tinydns.log.run.sample tinydns.sh.sample
}
|