69 lines
1.5 KiB
Bash
69 lines
1.5 KiB
Bash
|
# Copyright 1999-2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
inherit cmake-utils systemd
|
||
|
|
||
|
if [[ ${PV} == "9999" ]]; then
|
||
|
EGIT_REPO_URI="https://github.com/volkszaehler/${PN}"
|
||
|
inherit git-r3
|
||
|
KEYWORDS=""
|
||
|
else
|
||
|
SRC_URI=""
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
fi
|
||
|
|
||
|
DESCRIPTION="A tool to read and log measurements of a wide variety of smart meters and sensors to the volkszaehler.org middleware"
|
||
|
HOMEPAGE="https://github.com/volkszaehler/vzlogger"
|
||
|
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
IUSE="+logrotate +microhttpd ocr oms +sml systemd"
|
||
|
|
||
|
RDEPEND="dev-libs/json-c
|
||
|
logrotate? ( app-admin/logrotate )
|
||
|
microhttpd? ( net-libs/libmicrohttpd )
|
||
|
ocr? ( media-libs/leptonica app-text/tesseract )
|
||
|
oms? ( sci-libs/libmbus )
|
||
|
sml? ( sci-libs/libsml )
|
||
|
"
|
||
|
DEPEND="${RDEPEND}
|
||
|
virtual/pkgconfig"
|
||
|
|
||
|
src_prepare() {
|
||
|
default
|
||
|
|
||
|
cmake-utils_src_prepare
|
||
|
|
||
|
sed -e "s@ExecStart=/usr/local/bin/vzlogger@ExecStart=/usr/bin/vzlogger@" \
|
||
|
-i ${S}/etc/vzlogger.service \
|
||
|
|| die "sed failed"
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
local mycmakeargs=(
|
||
|
-DBUILD_TEST=off
|
||
|
-DENABLE_LOCAL=$(usex microhttpd)
|
||
|
-DENABLE_OCR=$(usex ocr)
|
||
|
-DENABLE_OCR_TESSERACT=$(usex ocr)
|
||
|
-DENABLE_OMS=$(usex oms)
|
||
|
-DENABLE_SML=$(usex sml)
|
||
|
)
|
||
|
cmake-utils_src_configure
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
cmake-utils_src_install
|
||
|
|
||
|
insinto /etc
|
||
|
doins ${S}/etc/vzlogger.conf
|
||
|
|
||
|
if use logrotate; then
|
||
|
insinto /etc/logrotate.d
|
||
|
newins ${FILESDIR}/vzlogger.logrotate vzlogger
|
||
|
fi
|
||
|
|
||
|
use systemd && systemd_dounit ${S}/etc/vzlogger.service
|
||
|
}
|