summaryrefslogtreecommitdiff
blob: c3da9d44ac59a83262c45b017d51e714b95fcc38 (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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cpp/log4cpp-0.3.4b.ebuild,v 1.1 2002/11/28 05:51:33 george Exp $

IUSE=""

S="${WORKDIR}/${P}"

DESCRIPTION="Log4cpp is library of C++ classes for flexible logging to files, syslog, IDSA and other destinations. It is modeled after the Log4j Java library, staying as close to their API as is reasonable."
SRC_URI="http://easynews.dl.sourceforge.net/sourceforge/log4cpp/${PN}-0.3.4b.tar.gz"
HOMEPAGE="http://log4cpp.sourcforge.net"

LICENSE="LGPL-2.1"
KEYWORDS="~x86"
SLOT="0"

DEPEND="virtual/glibc"

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

src_install () {
	make DESTDIR=${D} install || die
	dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS TODO
}