CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
dillo: fixed AR usage and added ssl support (https)
[attic/ports/opt-cross.git] / dbus / Pkgfile
1 # Description: A message bus system
2 # URL: http://freedesktop.org/wiki/Software/dbus
3 # Packager: Matt Housh, jaeger at crux dot nu
4 # Maintainer: Lucas Hazel, lucas at die dot net dot au
5 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6 # Depends on: expat
7
8 name=dbus
9 version=1.2.16
10 release=2
11 source=(http://dbus.freedesktop.org/releases/dbus/$name-$version.tar.gz \
12 rc.dbus 30-dbus.launch)
13
14 build() {
15 cd $name-$version
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --with-dbus-daemondir=/usr/sbin \
20 --localstatedir=/var \
21 --libexecdir=/usr/lib/dbus \
22 --mandir=/usr/man \
23 --disable-static \
24 --with-dbus-user=messagebus \
25 --with-xml=expat \
26 --with-system-pid-file=/var/run/$name/$name.pid \
27 --without-x
28 make
29 make DESTDIR=$PKG install
30 install -D -m 0755 $SRC/rc.dbus $PKG/etc/rc.d/dbus
31 install -D -m 0755 $SRC/30-dbus.launch \
32 $PKG/etc/X11/xinit/xinitrc.d/30-dbus.launch
33 }