Files
core/system/base/dbus/actions.py
T
2019-05-11 19:44:16 +03:00

65 lines
2.1 KiB
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
pisitools.dosed("configure.ac", '(AS_AC_EXPAND\(EXPANDED_LOCALSTATEDIR, )"\$localstatedir"\)', r'\1 "")')
for f in ["bus/Makefile.am", "bus/Makefile.in"]:
pisitools.dosed(f, "\$\(localstatedir\)(\/run\/dbus)", "\\1")
options = "\
--disable-selinux \
--disable-static \
--disable-tests \
--disable-asserts \
--disable-checks \
--disable-embedded-tests \
--disable-modular-tests \
--disable-doxygen-docs \
--disable-libaudit \
--disable-silent-rules \
--enable-inotify \
--enable-user-session \
--with-xml=expat \
--with-system-pid-file=/run/dbus/pid \
--with-system-socket=/run/dbus/system_bus_socket \
--with-console-auth-dir=/run/console/ \
--with-session-socket-dir=/tmp \
--with-dbus-user=dbus \
--enable-abstract-sockets=auto \
--disable-xml-docs"
if get.buildTYPE() == "emul32":
options += "\
--disable-xml-docs \
--disable-doxygen-docs"
# Build only libdbus
pisitools.dosed("Makefile.am", "(.*SUBDIRS=dbus) .*", "\\1")
autotools.autoreconf("-vif")
autotools.configure(options)
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() == "emul32": return
# needs to exist for the system socket
pisitools.dodir("/run/dbus")
pisitools.dodir("/var/lib/dbus")
pisitools.dodir("/usr/share/dbus-1/services")
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "doc/TODO", "doc/*.txt")
pisitools.dohtml("doc/")