blob: af2b9221be4a1f1ec16e358525bcfe2c2668189c (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cxx/log4cxx-0.9.5.ebuild,v 1.2 2004/06/03 18:57:53 zul Exp $
DESCRIPTION="Library of C++ classes for flexible logging to files, syslog and other destinations"
HOMEPAGE="http://log4cxx.sourceforge.net/"
SRC_URI="mirror://sourceforge/log4cxx/${P}.tar.gz"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/glibc
dev-libs/libxml2"
RDEPEND=""
S="${WORKDIR}/${P}"
src_compile() {
./autogen.sh
econf || die "./configure failed"
make || die
}
src_install () {
make prefix=${D}/usr \
datadir=${D}/usr/share \
mandir=${D}/usr/share/man \
docdir=${D}/usr/share/doc/${PF}/html \
sysconfdir=${D}/etc install || die
dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS TODO
}
|