CRUX PPC
A lightweight GNU/Linux distribution for PowerPC!
Subversion Repository
Parent Directory
|
Revision Log
Revision 742 -
(show annotations)
Sun Oct 4 15:09:37 2009 UTC (3 years, 7 months ago) by cjg
File size: 813 byte(s)
Sun Oct 4 15:09:37 2009 UTC (3 years, 7 months ago) by cjg
File size: 813 byte(s)
dbus: updated to 1.2.4
| 1 | # 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 | version=1.2.4 |
| 9 | 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 | } |