blob: dae7b8bc74c59d3f1a1108dbb24e5b9f959aec05 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4c/log4c-1.0.6.ebuild,v 1.5 2002/08/14 11:52:27 murphy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Log4c is a library of C for flexible logging to files, syslog and other destinations. It is modeled after the Log for Java library (http://jakarta.apache.org/log4j/), staying as close to their API as is reasonable."
SRC_URI="mirror://sourceforge/log4c/${P}.tar.gz"
HOMEPAGE="http://www.cimai.com/opensource/log4c/index.html"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="x86 sparc sparc64"
DEPEND=">=dev-libs/expat-1.95.2
>=app-doc/doxygen-1.2.15
>=media-gfx/graphviz-1.7.15-r2
>=app-text/tetex-1.0.7-r9"
src_compile() {
econf || die
# temporary location for font generation (possibly requiring
# "texconfig font options varfonts" first)
export VARTEXFONTS=/tmp
emake || die
}
src_install () {
make prefix=${D}/usr mandir=${D}/usr/share/man install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
}
|