amd.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ##
  2. ## amd.spec -- OpenPKG RPM Specification
  3. ## Copyright (c) 2000-2002 Cable & Wireless Deutschland GmbH
  4. ## Copyright (c) 2000-2002 The OpenPKG Project <http://www.openpkg.org/>
  5. ## Copyright (c) 2000-2002 Ralf S. Engelschall <rse@engelschall.com>
  6. ##
  7. ## Permission to use, copy, modify, and distribute this software for
  8. ## any purpose with or without fee is hereby granted, provided that
  9. ## the above copyright notice and this permission notice appear in all
  10. ## copies.
  11. ##
  12. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  13. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  16. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  18. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  20. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  21. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  22. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. ## SUCH DAMAGE.
  24. ##
  25. # package information
  26. Name: amd
  27. Summary: Auto-Mounting Daemon
  28. URL: http://www.am-utils.org/
  29. Vendor: UCB
  30. Packager: The OpenPKG Project
  31. Distribution: OpenPKG [REL]
  32. Group: System
  33. License: BSD
  34. Version: 6.0.7
  35. Release: 20011201
  36. # list of sources
  37. Source0: ftp://ftp.am-utils.org/pub/am-utils/am-utils-%{version}.tar.gz
  38. Source1: amd.conf
  39. Source2: rc.amd
  40. Patch0: am-utils-%{version}.patch
  41. # build information
  42. Prefix: %{l_prefix}
  43. BuildRoot: %{l_buildroot}
  44. BuildPreReq: OpenPKG, openpkg >= 20011227, flex, bison
  45. PreReq: OpenPKG, openpkg >= 20011227
  46. AutoReq: no
  47. AutoReqProv: no
  48. %description
  49. An automounting daemon maintains a cache of mounted filesystems.
  50. Filesystems are mounted on demand when they are first referenced,
  51. and unmounted after a period of inactivity. Amd may be used as a
  52. replacement for Sun's original automounter. The choice of which
  53. filesystem to mount can be controlled dynamically with selectors.
  54. Selectors allow decisions of the form "hostname is this," or
  55. "architecture is not that." Selectors may be combined arbitrarily.
  56. Amd also supports a variety of filesystem types, including NFS,
  57. UFS and the novel program filesystem. The combination of selectors
  58. and multiple filesystem types allows identical configuration
  59. files to be used on all machines thus reducing the administrative
  60. overhead. Amd ensures that it will not hang if a remote server goes
  61. down. Moreover, Amd can determine when a remote server has become
  62. inaccessible and then mount replacement filesystems as and when they
  63. become available.
  64. %prep
  65. %setup -q -n am-utils-%{version}
  66. %patch -p1
  67. %build
  68. PATH="%{l_prefix}/bin:$PATH"; export PATH
  69. CC="%{l_cc}" \
  70. CFLAGS="%{l_cflags -O}" \
  71. ./configure \
  72. --prefix=%{l_prefix} \
  73. --sysconfdir=%{l_prefix}/etc/amd \
  74. --disable-debug \
  75. --disable-shared
  76. %{l_make} %{l_mflags}
  77. %install
  78. rm -rf $RPM_BUILD_ROOT
  79. %{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT"
  80. rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir
  81. rm -f $RPM_BUILD_ROOT%{l_prefix}/sbin/automount2amd
  82. rm -f $RPM_BUILD_ROOT%{l_prefix}/sbin/amd2sun
  83. rm -f $RPM_BUILD_ROOT%{l_prefix}/sbin/amd2ldif
  84. rm -f $RPM_BUILD_ROOT%{l_prefix}/man8/automount2amd.8
  85. rm -f $RPM_BUILD_ROOT%{l_prefix}/etc/amd/*
  86. rm -rf $RPM_BUILD_ROOT%{l_prefix}/lib
  87. %{l_shtool} install -c -m 644 -e "s;@l_prefix@;%{l_prefix};g" \
  88. %{SOURCE amd.conf} $RPM_BUILD_ROOT%{l_prefix}/etc/amd/
  89. %{l_shtool} mkdir -f -p -m 755 \
  90. $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d
  91. %{l_shtool} install -c -m 755 -e "s;@l_prefix@;%{l_prefix};g" \
  92. %{SOURCE rc.amd} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/
  93. %{l_shtool} mkdir -f -p -m 755 \
  94. $RPM_BUILD_ROOT%{l_prefix}/var/amd
  95. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \
  96. %{l_files_std} \
  97. '%config %{l_prefix}/etc/amd/amd.conf'
  98. %files -f files
  99. %clean
  100. rm -rf $RPM_BUILD_ROOT