]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blob - dbus/dbus.nm
Add a -debuginfo for every package that is not noarch.
[people/amarx/ipfire-3.x.git] / dbus / dbus.nm
1 ###############################################################################
2 # IPFire.org - An Open Source Firewall Solution #
3 # Copyright (C) - IPFire Development Team <info@ipfire.org> #
4 ###############################################################################
5
6 name = dbus
7 version = 1.4.14
8 release = 2
9
10 groups = System/Daemons
11 url = http://www.freedesktop.org/software/dbus/
12 license = GPLv2+ AFL
13 summary = D-BUS message bus.
14
15 description
16 D-BUS is a system for sending messages between applications. It is
17 used both for the system-wide message bus service, and as a
18 per-user-login-session messaging facility.
19 end
20
21 source_dl = http://dbus.freedesktop.org/releases/dbus/
22
23 build
24 requires
25 audit-devel
26 expat-devel
27 libselinux-devel
28 end
29
30 configure_options += \
31 --sysconfdir=/etc \
32 --localstatedir=/var \
33 --libdir=/lib \
34 --libexecdir=/lib \
35 --enable-libaudit \
36 --enable-selinux=yes \
37 --with-systemdsystemunitdir=/lib/systemd/system/ \
38 --with-dbus-user=dbus
39
40 install_cmds
41 mkdir -pv %{BUILDROOT}/usr/lib
42 mv -v %{BUILDROOT}/lib/pkgconfig %{BUILDROOT}/usr/lib/
43
44 #change the arch-deps.h include directory to /usr/lib instead of /lib
45 sed -e 's@-I${libdir}@-I${prefix}/lib@' -i %{BUILDROOT}/usr/lib/pkgconfig/dbus-1.pc
46
47 mkdir -pv %{BUILDROOT}/usr/lib/dbus-1.0/include
48 mv -v %{BUILDROOT}/lib/dbus-1.0/include/* %{BUILDROOT}/usr/lib/dbus-1.0/include
49 rm -rvf %{BUILDROOT}/lib/dbus-1.0
50
51 rm -vf %{BUILDROOT}/lib/libdbus-1.so
52 ln -svf ../../lib/libdbus-1.so.3 %{BUILDROOT}/usr/lib/libdbus-1.so
53 end
54 end
55
56 packages
57 package %{name}
58 prerequires += shadow-utils
59
60 script prein
61 getent group dbus >/dev/null || groupadd -r dbus
62 getent passwd dbus >/dev/null || \
63 useradd -r -g dbus -d / -s /sbin/nologin \
64 -c "User for dbus service" dbus
65 exit 0
66 end
67
68 # Just search for new unit files that were just installed.
69 script postin
70 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
71
72 # The dbus service should be started on default.
73 /bin/systemctl enable dbus.service > /dev/null 2>&1 || :
74 end
75
76 # Disable the service that is to be removed and stop it if it is still running.
77 script preun
78 /bin/systemctl --no-reload disable dbus.service >/dev/null 2>&1 || :
79 /bin/systemctl stop dbus.service >/dev/null 2>&1 || :
80 end
81
82 # Just tell systemd that unitfiles have been removed.
83 script postun
84 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
85 end
86
87 # Try to restart the service if it is running.
88 script postup
89 /bin/systemctl daemon-reload >/dev/null 2>&1 || :
90 /bin/systemctl try-restart dbus.service >/dev/null 2>&1 || :
91 end
92 end
93
94 package %{name}-libs
95 template LIBS
96 end
97
98 package %{name}-devel
99 template DEVEL
100
101 files += /usr/lib/dbus-1.0
102 end
103
104 package %{name}-debuginfo
105 template DEBUGINFO
106 end
107 end