summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-11-28 05:51:33 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-11-28 05:51:33 +0000
commit9ec14e94daa8dd69eaf6f68198e3b0308f4ad613 (patch)
tree467dd56da2d8f9bf320397c5b89695fbb31bd321 /dev-libs/log4cpp
parentremoving obsolete x11-themes entries (diff)
downloadgentoo-2-9ec14e94daa8dd69eaf6f68198e3b0308f4ad613.tar.gz
gentoo-2-9ec14e94daa8dd69eaf6f68198e3b0308f4ad613.tar.bz2
gentoo-2-9ec14e94daa8dd69eaf6f68198e3b0308f4ad613.zip
new package: logging library for c++
Diffstat (limited to 'dev-libs/log4cpp')
-rw-r--r--dev-libs/log4cpp/ChangeLog13
-rw-r--r--dev-libs/log4cpp/files/digest-log4cpp-0.3.4b1
-rw-r--r--dev-libs/log4cpp/log4cpp-0.3.4b.ebuild27
3 files changed, 41 insertions, 0 deletions
diff --git a/dev-libs/log4cpp/ChangeLog b/dev-libs/log4cpp/ChangeLog
new file mode 100644
index 000000000000..76009711c169
--- /dev/null
+++ b/dev-libs/log4cpp/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for dev-libs/log4cpp
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cpp/ChangeLog,v 1.1 2002/11/28 05:51:33 george Exp $
+
+*log4cpp-0.3.4b (27 Nov 2002)
+
+ 27 Nov 2002; George Shapovalov <george@gentoo.org> log4cpp-0.3.4b.ebuild, files/digest-log4cpp-0.3.4b :
+
+ New ebuild.
+ 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.
+
+ ebuild submitted by Michael Labhard <ince@pacifier.com>
diff --git a/dev-libs/log4cpp/files/digest-log4cpp-0.3.4b b/dev-libs/log4cpp/files/digest-log4cpp-0.3.4b
new file mode 100644
index 000000000000..84ecb22c0a22
--- /dev/null
+++ b/dev-libs/log4cpp/files/digest-log4cpp-0.3.4b
@@ -0,0 +1 @@
+MD5 8051f012fcc58173e8015710d449457a log4cpp-0.3.4b.tar.gz 323195
diff --git a/dev-libs/log4cpp/log4cpp-0.3.4b.ebuild b/dev-libs/log4cpp/log4cpp-0.3.4b.ebuild
new file mode 100644
index 000000000000..c3da9d44ac59
--- /dev/null
+++ b/dev-libs/log4cpp/log4cpp-0.3.4b.ebuild
@@ -0,0 +1,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
+}