]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blame - systemd/systemd.nm
audit: Move libs and all others to /usr.
[people/arne_f/ipfire-3.x.git] / systemd / systemd.nm
CommitLineData
c8ef6def 1###############################################################################
802ea3af
MT
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
c8ef6def
SS
4###############################################################################
5
802ea3af 6name = systemd
64ece2d4 7version = 37
5e38e9bb 8release = 4
c8ef6def 9
802ea3af
MT
10maintainer = Stefan Schantl <stefan.schantl@ipfire.org>
11groups = System/Base
12url = http://www.freedesktop.org/wiki/Software/systemd
13license = GPLv2+
14summary = A System and Service Manager.
c8ef6def 15
802ea3af
MT
16description
17 systemd is a system and service manager for Linux, compatible with
c8ef6def 18 SysV and LSB init scripts.
802ea3af
MT
19end
20
5e38e9bb 21source_dl = http://cgit.freedesktop.org/systemd/systemd/snapshot/
802ea3af
MT
22
23build
24 requires
25 audit-devel
26 automake
27 autoconf
28 cryptsetup-luks-devel
29 dbus-devel
fe6e3719
SS
30 docbook-utils
31 docbook-xsl
802ea3af 32 gperf
bfabb323 33 gettext-devel
802ea3af 34 intltool
2a824e90 35 libacl-devel
802ea3af
MT
36 libcap-devel
37 libselinux-devel
38 libtool
39 libudev-devel>=172
40 pam-devel
53a325cb 41 vala
802ea3af
MT
42 end
43
44 configure_options += \
45 --sysconfdir=/etc \
2d32bcae 46 --libexecdir=%{libdir} \
802ea3af 47 --with-rootdir= \
bfabb323 48 --with-distro=ipfire \
802ea3af 49 --with-udevrulesdir=/lib/udev/rules.d/ \
2d32bcae 50 --with-pamlibdir=/%{lib}/security
802ea3af
MT
51
52 prepare_cmds
53 ./autogen.sh ac
54 end
55
56 test
57 make check
58 end
59
60 install_cmds
61 # Create sysv compatible symlinks.
62 mkdir -pv %{BUILDROOT}/sbin
63 ln -svf ../bin/systemd %{BUILDROOT}/sbin/init
64 ln -svf ../bin/systemctl %{BUILDROOT}/sbin/reboot
65 ln -svf ../bin/systemctl %{BUILDROOT}/sbin/halt
66 ln -svf ../bin/systemctl %{BUILDROOT}/sbin/poweroff
67 ln -svf ../bin/systemctl %{BUILDROOT}/sbin/shutdown
68
69 # Create empty machine-id file.
70 touch %{BUILDROOT}/etc/machine-id
71
72 # Copy locale and console settings
73 mkdir -pv %{BUILDROOT}/etc
74 cp -vf %{DIR_SOURCE}/locale.conf %{BUILDROOT}/etc/
75 cp -vf %{DIR_SOURCE}/vconsole.conf %{BUILDROOT}/etc/
76
77 # Recreate all targets
78 rm -rfv %{BUILDROOT}/etc/systemd/system/*.target.wants
79 mkdir -pv %{BUILDROOT}/lib/systemd/system/basic.target.wants
80 mkdir -pv %{BUILDROOT}/lib/systemd/system/default.target.wants
81 mkdir -pv %{BUILDROOT}/lib/systemd/system/dbus.target.wants
82 mkdir -pv %{BUILDROOT}/lib/systemd/system/syslog.target.wants
83
84 # Remove runlevel targets and graphical.target
85 rm -rfv %{BUILDROOT}/lib/systemd/system/runlevel*
86 rm -rfv %{BUILDROOT}/lib/systemd/system/graphical.target
87
88 # Set default target to multi-user
89 cd %{BUILDROOT}/lib/systemd/system && ln -svf multi-user.target default.target
90
91 # Replace absolute symlinks by relative ones.
92 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/bluetooth.target bluetooth.target
93 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/local-fs.target local-fs.target
94 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/printer.target printer.target
95 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/shutdown.target shutdown.target
96 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/sockets.target sockets.target
97 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/sound.target sound.target
98 cd %{BUILDROOT}/usr/lib/systemd/user/ && ln -svf ../../../../lib/systemd/system/swap.target swap.target
99
100 # Remove tmpfile for X11
101 rm -rfv %{BUILDROOT}/usr/lib/tmpfiles.d/x11.conf
102
103 # Remove unneeded symlink for xdg
104 rm -rfv %{BUILDROOT}/etc/xdg/systemd
105 end
106end
107
108packages
109 package %{name}
514357ad
SS
110 requires
111 dbus
112 python-cairo
1d40b321 113 python-dbus
214d8f27 114 %{name}-units=%{thisver}
1d40b321 115 udev>=172
514357ad
SS
116 util-linux>=2.19
117 end
1d40b321 118
ef438375 119 prerequires += authconfig
214d8f27 120 conflicts += upstart
ef438375 121
1d40b321
SS
122 script postin
123 # Generate Machine ID.
124 /bin/systemd-machine-id-setup > /dev/null 2>&1 || :
125
126 # Reexec systemd daemon.
127 /bin/systemctl daemon-reexec > /dev/null 2>&1 || :
128
129 # Make sure pam_systemd is enabled
130 if ! /bin/grep -q pam_systemd /etc/pam.d/system-auth-ac ; then
131 /usr/sbin/authconfig --update --nostart >/dev/null 2>&1 || :
132
133 # Try harder
134 /bin/grep -q pam_systemd /etc/pam.d/system-auth-ac || /usr/sbin/authconfig --updateall --nostart >/dev/null 2>&1 || :
135 fi
136 end
137
138 script postup
139 # Restart login service after update
140 /bin/systemctl try-restart systemd-logind.service >/dev/null 2>&1 || :
141 end
802ea3af 142 end
1f9bc2f0 143
802ea3af
MT
144 # Package information for systemd-units
145 package %{name}-units
146 summary = Configuration files, directories and installation tool for systemd.
147 description
148 This package contains all needed configuration files, directories
149 and installation / configuration tool for systemd.
150 end
1f9bc2f0 151
5e38e9bb
SS
152 prerequires
153 /bin/sh
154 coreutils
155 end
156
802ea3af
MT
157 files
158 /etc/systemd/system
159 /etc/tmpfiles.d
160 /etc/bash_completion.d/systemctl-bash-completion.sh
161 /lib/systemd/system
162 /bin/systemctl
163 /bin/systemd-tmpfiles
164 /usr/share/man/man1/systemctl.*
165 end
1d40b321
SS
166
167 script postin
168 # Enable default services.
d9ce2e8a 169 /bin/systemctl enable \
1d40b321
SS
170 getty@.service \
171 remote-fs.target > /dev/null 2>&1 || :
172 end
173
174 script preun
175 # Disable default services.
d9ce2e8a 176 /bin/systemctl disable \
1d40b321
SS
177 getty@.service \
178 remote-fs.target > /dev/null 2>&1 || :
179 end
180
181 script postup
182 # Reload service files
d9ce2e8a 183 /bin/systemctl daemon-reload > /dev/null 2>&1 || :
1d40b321 184 end
802ea3af 185 end
1f9bc2f0 186
802ea3af
MT
187 package %{name}-devel
188 template DEVEL
189 end
1f9bc2f0
MT
190
191 package %{name}-debuginfo
192 template DEBUGINFO
193 end
802ea3af 194end