]> git.pld-linux.org Git - packages/dict-jargon.git/blobdiff - dict-jargon.spec
- adapterized.
[packages/dict-jargon.git] / dict-jargon.spec
index be17a24f161763963f6acb47b46b4b845471472c..89e26c1dedb35eedd8d390d35a5e01a128964931 100644 (file)
@@ -1,50 +1,62 @@
 %define         dictname jargon
 Summary:       The On-Line Hacker Jargon File dictionary for dictd
+Summary(pl):   S³ownik Hacker Jargon dla dictd
 Name:          dict-%{dictname}
 Version:       4.2.0
-Release:       1
+Release:       2
 License:       GPL
-Group:         Applications/Dictionary
-URL:           http://www.dict.org/
+Group:         Applications/Dictionaries
 Source0:       ftp://ftp.dict.org/pub/dict/%{name}-%{version}.tar.gz
+URL:           http://www.dict.org/
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-BuildRequires:  dictzip
-Requires:       dictd 
-BuildArch:      noarch
+BuildRequires: dictzip
+BuildRequires: autoconf
+Requires:      dictd
+Requires:      %{_sysconfdir}/dictd
 
-%description 
+%description
 This package contains The On-Line Hacker Jargon File, version 4.2.0,
 formatted for use by the dictionary server in the dictd package.
 
+%description -l pl
+Ten pakiet zawiera s³ownik The On-Line Hacker Jargon File w wersji
+4.2.0, sformatowany do u¿ytku z serwerem s³ownika dictd.
+
 %prep
 %setup -q
 
 %build
-%configure 
-%{__make} db 
+autoconf
+%configure
+%{__make} db
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{_datadir}/dictd/
+install -d $RPM_BUILD_ROOT{%{_datadir}/dictd/,%{_sysconfdir}/dictd}
+%{__make} install dictdir="$RPM_BUILD_ROOT%{_datadir}/dictd/"
 
-DICTDIR="$RPM_BUILD_ROOT%{_datadir}/dictd/"
-make install dictdir="$DICTDIR" 
+dictprefix=%{_datadir}/dictd/%{dictname}
+echo "# The On-Line Hacker Jargon File dictionary
+database %{dictname} {
+    data  \"$dictprefix.dict.dz\"
+    index \"$dictprefix.index\"
+}
+" > $RPM_BUILD_ROOT%{_sysconfdir}/dictd/%{dictname}.dictconf
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%postun
+if [ -f /var/lock/subsys/dictd ]; then
+       /etc/rc.d/init.d/dictd restart 1>&2
+fi
+
 %post
-prefix=%{_datadir}/dictd/%{dictname}
-
-if ! grep ' %{dictname} ' /etc/dictd.conf >/dev/null; then 
-   echo "Edit /etc/dictd.conf to see %{dictname} dictionary under dictd"
-echo "# Uncommment this to configure The On-Line Hacker Jargon File dictionary
-#database %{dictname} {
-#    data  \"$prefix.dict.dz\"
-#    index \"$prefix.index\" }
-" >> /etc/dictd.conf
+if [ -f /var/lock/subsys/dictd ]; then
+       /etc/rc.d/init.d/dictd restart 1>&2
 fi
 
 %files
 %defattr(644,root,root,755)
+%attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/dictd/*.dictconf
 %{_datadir}/dictd/%{dictname}*
This page took 0.09267 seconds and 4 git commands to generate.