summaryrefslogtreecommitdiff
path: root/www-misc/mergelog/mergelog-4.5.ebuild
blob: e3c14e7b4cc763d7dcf31bd3243b6cd6d18ad2b8 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils autotools

DESCRIPTION="A utility to merge apache logs in chronological order"
SRC_URI="mirror://sourceforge/mergelog/${P}.tar.gz"
HOMEPAGE="http://mergelog.sourceforge.net"

IUSE="splitlog"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ppc ~amd64"

DEPEND="
	virtual/libc
	splitlog? ( sys-devel/autoconf )
"

src_unpack() {
	unpack $A
	cd $S
	if use splitlog ; then
		epatch ${FILESDIR}/${PN}-split.patch
		eautoreconf
	fi
}

src_compile() {
	econf || die "configure failed"
	emake  || die "make failed"
}

src_install() {
	einstall
	dobin src/mergelog src/zmergelog

	doman man/*.1
	dodoc AUTHORS COPYING README
}