blob: 8e6d4551748ebe78bcc4f420d1b4dc224787fe2c [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001DESCRIPTION = "A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations."
2HOMEPAGE = "http://sourceforge.net/projects/log4cpp/"
Andrew Geissler9aee5002022-03-30 16:27:02 +00003LICENSE = "LGPL-2.1-only"
Andrew Geissler82c905d2020-04-13 13:39:40 -05004LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
5
6SRC_URI = "http://downloads.sourceforge.net/${BPN}/${BP}.tar.gz \
7 file://fix-pc.patch;striplevel=2 \
8 "
9SRC_URI[md5sum] = "b9e2cee932da987212f2c74b767b4d8b"
10SRC_URI[sha256sum] = "2cbbea55a5d6895c9f0116a9a9ce3afb86df383cd05c9d6c1a4238e5e5c8f51d"
11
12S = "${WORKDIR}/${BPN}"
13
14inherit autotools pkgconfig
15
16EXTRA_OECONF = "\
17 --enable-doxygen=no \
18 --enable-dot=no \
19 --enable-html-docs=no \
20 --enable-latex-docs=no \
21"
Andrew Geisslerc5535c92023-01-27 16:10:19 -060022
23CXXFLAGS += "-std=c++14"