blob: 5184196d2abdc9ff16b6f3b7c1ad79eb8db1f52f [file] [log] [blame]
# Copyright 2012 The Chromium OS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
CROS_WORKON_COMMIT="fb6fbcb47c6c8725ca4297886aea9d25939282c0"
CROS_WORKON_TREE="78be365f1785cc6b576e92e0d3a602e8904bd565"
CROS_WORKON_PROJECT="chromiumos/third_party/tlsdate"
inherit autotools flag-o-matic toolchain-funcs cros-workon cros-debug user
DESCRIPTION="Update local time over HTTPS"
HOMEPAGE="https://github.com/ioerror/tlsdate"
LICENSE="BSD"
SLOT="0"
KEYWORDS="*"
IUSE="asan clang +dbus +seccomp"
REQUIRED_USE="asan? ( clang )"
DEPEND="dev-libs/openssl
dev-libs/libevent
dbus? ( sys-apps/dbus )"
RDEPEND="${DEPEND}
chromeos-base/chromeos-ca-certificates
"
src_prepare() {
eautoreconf
}
src_configure() {
cros-workon_src_configure \
$(use_enable dbus) \
$(use_enable seccomp seccomp-filter) \
$(use_enable cros-debug seccomp-debugging) \
--enable-cros \
--with-dbus-client-group=chronos \
--with-unpriv-user=tlsdate \
--with-unpriv-group=tlsdate
}
src_compile() {
tc-export CC
emake CFLAGS="-Wall ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"
}
src_install() {
default
insinto /etc/tlsdate
doins "${FILESDIR}/tlsdated.conf"
insinto /etc/dbus-1/system.d
doins "${S}/dbus/org.torproject.tlsdate.conf"
insinto /usr/share/dbus-1/interfaces
doins "${S}/dbus/org.torproject.tlsdate.xml"
insinto /usr/share/dbus-1/services
doins "${S}/dbus/org.torproject.tlsdate.service"
insinto /etc/init
doins init/tlsdated.conf
}
pkg_preinst() {
enewuser "tlsdate"
enewgroup "tlsdate"
enewuser "tlsdate-dbus" # For tlsdate-dbus-announce.
enewgroup "tlsdate-dbus" # For tlsdate-dbus-announce.
}