summaryrefslogtreecommitdiffstats
path: root/extra/dbus/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-10-15 15:27:27 +0200
committertnut <tnut at nutyx dot com>2011-10-15 15:27:27 +0200
commita46d48a1930fad559a1ad26060267c94e6879bce (patch)
tree105fd6f1a0208502751e1b1c82e4605496be77ab /extra/dbus/Pkgfile
parent4f09af50b39c8fe8d01cb8fd7d71d0342c7e2b57 (diff)
downloadnutyx-extra-a46d48a1930fad559a1ad26060267c94e6879bce.tar.gz
nutyx-extra-a46d48a1930fad559a1ad26060267c94e6879bce.tar.bz2
nutyx-extra-a46d48a1930fad559a1ad26060267c94e6879bce.tar.xz
nutyx-extra-a46d48a1930fad559a1ad26060267c94e6879bce.zip
dbus dans extra
Diffstat (limited to 'extra/dbus/Pkgfile')
-rwxr-xr-xextra/dbus/Pkgfile49
1 files changed, 49 insertions, 0 deletions
diff --git a/extra/dbus/Pkgfile b/extra/dbus/Pkgfile
new file mode 100755
index 000000000..37996d6f5
--- /dev/null
+++ b/extra/dbus/Pkgfile
@@ -0,0 +1,49 @@
+# Description: Système de messages pour les bus
+# URL: http://dbus.freedesktop.org
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: xorg-libx11
+
+name=dbus
+version=1.5.8
+release=1
+source=(http://dbus.freedesktop.org/releases/dbus/$name-$version.tar.gz \
+ session-local.conf \
+ http://nutyx.meticul.eu/files/patchs/$name/dbus-1.4.8-tmpfs-1.patch)
+
+build() {
+ source /etc/blfs-bootscripts
+ wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
+ tar xvf $scripts-$scriptsversion.tar.bz2
+ cd $name-$version
+ ./configure --prefix=/usr --with-x \
+ --libexecdir=/usr/lib/dbus-1.0 \
+ --localstatedir=/var \
+ --sysconfdir=/etc \
+ --enable-shared \
+ --with-xml=expat \
+ --with-system-pid-file=/var/run/dbus.pid \
+ --with-system-socket=/var/run/dbus/system_bus_socket \
+ --with-session-socket-dir=/tmp \
+ --with-dbus-user=messagebus
+
+ make
+ make DESTDIR=$PKG install
+ mkdir -p $PKG/etc/dbus-1
+ mv ../session-local.conf $PKG/etc/dbus-1/
+
+# rmdir $PKG/usr/lib/dbus-1.0/dbus-1
+
+ cd ../$scripts-$scriptsversion
+ patch -Np1 -i ../dbus-1.4.8-tmpfs-1.patch
+ make DESTDIR=$PKG install-dbus
+ mv $PKG/etc/rc.d/rc0.d/K{30,85}dbus
+ mv $PKG/etc/rc.d/rc6.d/K{30,85}dbus
+ mv $PKG/etc/rc.d/rc1.d/K{30,85}dbus
+ sed -i "s/dbus\/pid/dbus.pid/" $PKG/etc/rc.d/init.d/dbus
+ mkdir -p $PKG/usr/lib/dbus-1.0/services
+ mkdir -p $PKG/usr/share/dbus-1/services
+ mkdir -p $PKG/etc/dbus-1/system.d/
+ mkdir -p $PKG/etc/dbus-1/session.d/
+ rm -r $PKG/usr/share/doc
+}