opt/dbus/Pkgfile
Fredrik Rinnestam a67b88c740 [notify] dbus: updated to 1.6.20.
CVE-2014-3477: deliver activation errors correctly, fixing Denial of
Service. Advisory:
http://cgit.freedesktop.org/dbus/dbus/commit/?h=dbus-1.8&id=24c590703ca47eb71ddef453de43126b90954567
2014-06-10 22:37:39 +02:00

32 lines
1.0 KiB
Plaintext

# Description: A message bus system
# URL: http://freedesktop.org/wiki/Software/dbus
# Packager: Matt Housh, jaeger at crux dot nu
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: expat
name=dbus
version=1.6.20
release=1
source=(http://dbus.freedesktop.org/releases/dbus/$name-$version.tar.gz \
rc.dbus 30-dbus.launch)
build() {
cd $name-$version
./configure --prefix=/usr \
--with-dbus-daemondir=/usr/sbin \
--localstatedir=/var \
--libexecdir=/usr/lib/dbus \
--mandir=/usr/man \
--disable-static \
--with-dbus-user=messagebus \
--with-xml=expat \
--with-init-scripts=none \
--with-system-pid-file=/var/run/$name/$name.pid
make
make DESTDIR=$PKG install
install -D -m 0755 $SRC/rc.dbus $PKG/etc/rc.d/dbus
install -D -m 0755 $SRC/30-dbus.launch \
$PKG/etc/X11/xinit/xinitrc.d/30-dbus.launch
rm -r $PKG/usr/share/doc
}