Subversion Repository

Parent Directory Parent Directory | Revision Log Revision Log


Revision 614 - (hide annotations)
Sun Oct 4 15:04:59 2009 UTC (3 years, 8 months ago) by cjg
File size: 814 byte(s)
dbus: autoupdated to 1.2.14-1
1 cjg 201 # Description: A message bus system
2     # URL: http://freedesktop.org/wiki/Software_2fdbus
3     # Packager: Matt Housh, jaeger at crux dot nu
4     # Maintainer: Lucas Hazel, lucas at die dot net dot au
5     # Depends on: expat
6    
7     name=dbus
8 cjg 614 version=1.2.14
9 cjg 201 release=1
10     source=(http://dbus.freedesktop.org/releases/dbus/$name-$version.tar.gz \
11     rc.dbus 30-dbus.launch)
12    
13     build() {
14     cd $name-$version
15     ./configure --prefix=/usr \
16     --with-dbus-daemondir=/usr/sbin \
17     --localstatedir=/var \
18     --libexecdir=/usr/lib/dbus \
19     --mandir=/usr/man \
20     --disable-static \
21     --with-dbus-user=messagebus \
22     --with-xml=expat \
23     --with-system-pid-file=/var/run/$name/$name.pid
24     make
25     make DESTDIR=$PKG install
26     install -D -m 0755 $SRC/rc.dbus $PKG/etc/rc.d/dbus
27     install -D -m 0755 $SRC/30-dbus.launch \
28     $PKG/etc/X11/xinit/xinitrc.d/30-dbus.launch
29     }