]> git.pld-linux.org Git - packages/darkice.git/commitdiff
- rel 1 with init script, dropping privs and logging
authorMariusz Mazur <mmazur@pld-linux.org>
Sat, 6 Jan 2007 00:26:38 +0000 (00:26 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    darkice.spec -> 1.26

darkice.spec

index ae8f4bbbca05c949d73d660855a9a39b0e1c028f..786e72468e417a42d65f8a498eeb293fd9b19c4f 100644 (file)
@@ -1,12 +1,18 @@
+# TODO:
+# - logrotate support?
+# - add /etc/sysconfig/darkice with log level selection and maybe not dropping
+#   privs (so that realtime=yes could work)
+# - or some other way to keep realtime scheduling while not running as root
 Summary:       DarkIce live IceCast / ShoutCast streamer
 Summary(pl):   DarkIce - dostarczyciel strumieni IceCast/ShoutCast
 Name:          darkice
 Version:       0.17.1
-Release:       0.1
+Release:       1
 License:       GPL
 Group:         Networking/Daemons
 Source0:       http://dl.sourceforge.net/darkice/%{name}-%{version}.tar.gz
 # Source0-md5: 91221134cec3d52af842a9d50c06ee7d
+Source1:       %{name}.init
 Patch0:                %{name}-shared.patch
 Patch1:                %{name}-no_libnsl.patch
 Patch2:                %{name}-amd64.patch
@@ -19,6 +25,20 @@ BuildRequires:       libstdc++-devel
 BuildRequires: libvorbis-devel >= 1:1.0
 BuildRequires: pkgconfig
 BuildRequires: readline-devel
+BuildRequires:  rpmbuild(macros) >= 1.165
+Requires(post,preun):  /sbin/chkconfig
+Requires(postun):      /usr/sbin/groupdel
+Requires(postun):      /usr/sbin/userdel
+Requires(pre): /bin/id
+Requires(pre): /usr/bin/getgid
+Requires(pre): /usr/lib/rpm/user_group.sh
+Requires(pre): /usr/sbin/groupadd
+Requires(pre): /usr/sbin/useradd
+Requires(pre): /usr/sbin/usermod
+Requires:      daemon
+Requires:      rc-scripts
+Provides:      group(darkice)
+Provides:      user(darkice)
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -47,22 +67,53 @@ serwer
 %{__automake}
 %configure \
        --with-lame \
-       --with-vorbis
+       --with-vorbis \
+       --with-alsa \
+       --without-twolame \
+       --without-faac
 
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,/var/run/darkice,/var/log}
 
 %{__make} install \
        DESTDIR=$RPM_BUILD_ROOT
 
+install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/darkice
+touch $RPM_BUILD_ROOT/var/log/darkice.log
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%pre
+%groupadd -g 85 darkice
+%useradd -u 59 -r -d /usr/share/empty -s /bin/false -c "Darkice" -g darkice darkice
+%addusertogroup darkice audio
+
+%post
+/sbin/chkconfig --add darkice
+%service darkice restart "darkice daemon"
+
+%preun
+if [ "$1" = "0" ] ; then
+       %service darkice stop
+       /sbin/chkconfig --del darkice >&2
+fi
+
+%postun
+if [ "$1" = "0" ]; then
+       %userremove darkice
+       %groupremove darkice
+fi
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog NEWS README TODO
-%config(noreplace) %attr(600,root,root) %{_sysconfdir}/*.cfg
+%config(noreplace) %attr(640,root,darkice) %{_sysconfdir}/*.cfg
+%attr(754,root,root) /etc/rc.d/init.d/darkice
 %attr(755,root,root) %{_bindir}/*
 %{_mandir}/man?/*
+%dir %attr(775,root,darkice) /var/run/darkice
+%attr(660,root,darkice) /var/log/darkice.log
This page took 0.040673 seconds and 4 git commands to generate.