blob: 729857eb62cd972aa232e4b3d3fc99035beaae63 [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 "
Andrew Geissler3eeda902023-05-19 10:14:02 -05009SRC_URI[sha256sum] = "696113659e426540625274a8b251052cc04306d8ee5c42a0c7639f39ca90c9d6"
Andrew Geissler82c905d2020-04-13 13:39:40 -050010
11S = "${WORKDIR}/${BPN}"
12
13inherit autotools pkgconfig
14
15EXTRA_OECONF = "\
16 --enable-doxygen=no \
17 --enable-dot=no \
18 --enable-html-docs=no \
19 --enable-latex-docs=no \
20"
Andrew Geisslerc5535c92023-01-27 16:10:19 -060021
22CXXFLAGS += "-std=c++14"