]> git.pld-linux.org Git - packages/systemd.git/blame - systemd.spec
- more configuration options set
[packages/systemd.git] / systemd.spec
CommitLineData
ede8d3e5 1#
2
9c0b975d 3%bcond_with gtk # build gtk tools
4
ede8d3e5 5Summary: systemd - a system and service manager for Linux
6Summary(pl.UTF-8): systemd - zarządca systemu i usług dla Linuksa
7Name: systemd
8Version: 15
9Release: 0.1
10License: GPL v2+
11Group: Base
12Source0: http://www.freedesktop.org/software/systemd/%{name}-%{version}.tar.bz2
13# Source0-md5: 36011aa8593862ca78e3e909f6143570
14URL: http://www.freedesktop.org/wiki/Software/systemd
15#BuildRequires: -
16BuildRequires: autoconf
17BuildRequires: automake
9c0b975d 18BuildRequires: dbus-devel
ede8d3e5 19BuildRequires: gettext-devel
9c0b975d 20%if %{with gtk}
21BuildRequires: libnotify-devel >= 0.7.0
22%endif
ede8d3e5 23BuildRequires: libtool
24BuildRequires: udev-devel >= 160
eb2fda66 25BuildRequires: vala >= 0.11
ede8d3e5 26#Requires(postun): -
27#Requires(pre,post): -
28#Requires(preun): -
29#Requires: -
30#Provides: -
31#Provides: group(foo)
32#Provides: user(foo)
33#Obsoletes: -
34#Conflicts: -
35#BuildArch: noarch
36#ExclusiveArch: %{ix86}
37BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
38
39%description
40systemd is a system and service manager for Linux, compatible with
41SysV and LSB init scripts. systemd provides aggressive parallelization
42capabilities, uses socket and D-Bus activation for starting services,
43offers on-demand starting of daemons, keeps track of processes using
44Linux cgroups, supports snapshotting and restoring of the system
45state, maintains mount and automount points and implements an
46elaborate transactional dependency-based service control logic. It can
47work as a drop-in replacement for sysvinit.
48
49%description -l pl.UTF-8
50systemd jest zarządcą systemu i usług dla Linuksa, kompatybilny ze
51skryptami SysV i LSB. systemd udostępnia rozbudowane zdolności
52paralelizacji, do uruchamiania usług używa socketów oraz D-Busa,
53oferuje uruchamianie usług na życzenie, monitoruje procesy używając
54linuksowych cgroups, wspomaga zapisywanie (snapshot) i odczytywanie
55(restore) stanu systemu, zarządza (auto)mount pointami oraz
56implementuje starannie opracowaną transakcjonalną, bazującą na
57zależnościach logikę kontroli usług. Może pracować jako zastepca dla
58sysvinit.
59
60%prep
61%setup -q
62
63%build
64%{__gettextize}
65%{__libtoolize}
66%{__aclocal} -I m4
67%{__autoconf}
68%{__automake}
9c0b975d 69%configure \
e1d9cc15 70 --with-distro=other \
71 --%{?with_gtk:en}%{!?with_gtk:dis}able-gtk \
72 --with-syslog-service=syslog-ng \
73 --with-sysvinit-path=/etc/rc.d/init.d \
74 --with-sysvrcd-path=/etc/rc.d
75
ede8d3e5 76%{__make}
77
78%install
79rm -rf $RPM_BUILD_ROOT
80
81%{__make} install \
82 DESTDIR=$RPM_BUILD_ROOT
83
84%clean
85rm -rf $RPM_BUILD_ROOT
86
87%files
88%defattr(644,root,root,755)
89%doc AUTHORS CREDITS ChangeLog NEWS README THANKS TODO
This page took 0.082465 seconds and 4 git commands to generate.