]> git.pld-linux.org Git - packages/am-utils.git/blob - am-utils.spec
- changed all BuildRoot definitons
[packages/am-utils.git] / am-utils.spec
1 Summary:        Automount utilities including an updated version of Amd.
2 Name:           am-utils
3 Version:        6.0
4 Release:        6
5 Copyright:      BSD
6 Group:          Daemons
7 Group(pl):      Serwery
8 Source:         ftp://shekel.mcl.cs.columbia.edu/pub/am-utils/%{name}-%{version}.tar.gz
9 Source1:        am-utils.init
10 Source2:        am-utils.conf
11 Source3:        am-utils.sysconf
12 Patch0:         am-utils-6.0a16-linux.patch
13 Patch1:         am-utils-6.0a16-alpha.patch
14 Patch2:         am-utils-6.0a16-glibc21.patch
15 Requires:       portmap
16 Prereq:         /sbin/chkconfig
17 Prereq:         /usr/sbin/fix-info-dir
18 Obsoletes:      amd
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 Am-utils includes an updated version of Amd, the popular BSD
23 automounter.  An automounter is a program which maintains a cache of
24 mounted filesystems.  Filesystems are mounted when they are first
25 referenced by the user and unmounted after a certain period of inactivity.
26 Amd supports a variety of filesystems, including NFS, UFS, CD-ROMS and
27 local drives.  
28
29 You should install am-utils if you need a program for automatically
30 mounting and unmounting filesystems.
31
32 %prep
33 %setup -q
34 %patch2 -p1 -b .glibc21
35 %patch0 -p1 -b .lnx
36 %ifnarch i386
37 %patch1 -p1 -b .noauto
38 %endif
39
40 %build
41 cd aux ; autoconf ; mv -f configure .. ; cd ..
42 CFLAGS="$RPM_OPT_FLAGS" ./configure \
43         --prefix=%{_prefix} \
44         --enable-shared \
45         --sysconfdir=/etc \
46         --enable-libs=-lnsl
47         
48 # fun with autoconf
49 touch `find -name Makefile.in`
50 make
51
52 %install
53 rm -rf $RPM_BUILD_ROOT
54 install -d $RPM_BUILD_ROOT/etc/{sysconfig,rc.d/init.d}
55
56 make install prefix=$RPM_BUILD_ROOT%{_prefix} sysconfdir=`pwd`/etc
57 install $RPM_SOURCE_DIR/am-utils.conf $RPM_BUILD_ROOT/etc/amd.conf
58 install $RPM_SOURCE_DIR/am-utils.sysconf $RPM_BUILD_ROOT/etc/sysconfig/amd
59 install $RPM_SOURCE_DIR/am-utils.init $RPM_BUILD_ROOT/etc/rc.d/init.d/amd
60
61 strip $RPM_BUILD_ROOT%{_sbindir}/* $RPM_BUILD_ROOT%{_bindir}/*
62
63 gzip -9nf AUTHORS TODO BUGS NEWS README* ChangeLog \
64         $RPM_BUILD_ROOT%{_mandir}/*
65         $RPM_BUILD_ROOT%{_infodir}/*
66
67 install -d $RPM_BUILD_ROOT/.automount
68
69 # get rid of some lame scripts
70 file $RPM_BUILD_ROOT/usr/sbin/* | \
71         grep -v ELF | grep -v am-eject | \
72         cut -f 1 -d':' | xargs rm -f
73
74 %clean
75 rm -rf $RPM_BUILD_ROOT
76
77 %post
78 /sbin/ldconfig
79 /sbin/chkconfig --add amd
80 /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
81
82 %postun
83 /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>&1
84 /sbin/ldconfig
85 if [ $1 = 0 ]; then
86     /sbin/chkconfig --del amd
87 fi
88
89 %files
90 %defattr(644,root,root,755)
91 %doc doc/*.ps {AUTHORS,BUGS,ChangeLog,NEWS,README*,TODO}.gz
92 %dir /.automount
93 %config /etc/amd.conf
94 %config /etc/sysconfig/amd
95 %attr(754,root,root) /etc/rc.d/init.d/amd
96 %attr(755,root,root) %{_bindir}/pawd
97 %attr(755,root,root) %{_sbindir}/*
98 %attr(755,root,root) %{_libdir}/*
99 %{_mandir}/man[158]/*
100 %{_infodir}/*
This page took 0.110024 seconds and 3 git commands to generate.