blob: 5718c13b9370b1532ecadd781d1e917e8d9d614a [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="3db1d4182ee5a1dc191453d0e019ef773bfaf28b"
CROS_WORKON_TREE="928ab7e9ff825c5512623ae6e2d93a28107163bb"
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
!<chromeos-base/chromeos-init-0.0.6
"
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.
}