732f960abbc5caf1bd282376dc949938a822442d
[openafs.git] / src / packaging / RedHat / openafs.spec.in
1 # Openafs Spec $Revision$
2
3 # TEMPORARY fix for patch fuzz so we can build on Fedora 10
4 %define _default_patch_fuzz 2
5
6 %define afsvers @VERSION@
7 %define pkgvers @LINUX_PKGVER@
8 # for beta/rc releases make pkgrel 0.X.<tag>
9 # for real releases make pkgrel 1 (or more for extra releases)
10 #%define pkgrel 0.1.rc1
11 %define pkgrel @LINUX_PKGREL@
12
13 %if %{?osvers:0}%{!?osvers:1}
14 %define osvers 1
15 %endif
16
17 %{!?fedorakmod: %define fedorakmod 1}
18 %{!?build_dkmspkg: %define build_dkmspkg 1}
19
20 # Determine presence of rpmbuild command line --define arguments used for
21 # option specification
22 %define kernvers_on_cmdline %{?kernvers:1}%{!?kernvers:0}
23 %define build_userspace_on_cmdline %{?build_userspace:1}%{!?build_userspace:0}
24 %define build_modules_on_cmdline %{?build_modules:1}%{!?build_modules:0}
25 %define build_authlibs_on_cmdline %{?build_authlibs:1}%{!?build_authlibs:0}
26
27 # Determine the version of the kernel to build against
28 # - automatically select running kernel if there are sources in /lib/modules
29 # - note that this can be overridden on the command line
30 #
31 %if !%{kernvers_on_cmdline}
32 %define kernvers %(%{_sourcedir}/openafs-kernel-version.sh)
33 %endif
34
35 # If we're building for a 2.4 series kernel, then fedora style kmods aren't
36 # appropriate - disable them.
37
38 %define kern24 %([ `echo "%{kernvers}" | sed -e 's/^\([0-9]*\.[0-9]*\)\..*/\1/'` = "2.4" ] && echo 1 || echo 0)
39
40 %if %{kern24}
41 %define fedorakmod 0
42 %endif
43
44 %if %{fedorakmod}
45 %define kmodtool bash %{_sourcedir}/openafs-kmodtool
46
47 %define kmod_name openafs
48 %define kverrel %(%{kmodtool} verrel %{?kernvers} 2>/dev/null)
49
50 %define upvar ""
51 %{!?kvariants: %define kvariants %{?upvar}}
52
53 %if %{?ksrcdir:1}%{!?ksrcdir:0}
54   if ( -d %{_usrsrc}/kernels/%{kverrel}-%{_target_cpu}) ; then
55     %define ksrcdir %{_usrsrc}/kernels/%{kverrel}-%{_target_cpu}}
56   else
57     %define ksrcdir %{_usrsrc}/kernels/%{kverrel}.%{_target_cpu}}
58   fi
59 %endif
60
61 %else # Legacy kernel build stuff 
62
63 %define kversis %{_sourcedir}/openafs-kvers-is.sh
64 %define kvers %(%{kversis} parsev %{kernvers})
65 %define kvers_is_24 %(%{kversis} %{kvers} "2.4")
66 %define kvers_is_26 %(%{kversis} %{kvers} "2.6")
67 %define ktype %(%{kversis} parset %{kernvers})
68 %define kversion %(%{kversis} kvers %{kernvers})
69
70 # This is where to look for kernel build include files.  Default
71 # is /lib/modules/<kvers>/build, but you can define kbase and
72 # kend on the commandline to change that.
73 #
74 %if %{?kbase:0}%{!?kbase:1}
75 %define kbase /lib/modules/
76 %endif
77 %if %{?kend:0}%{!?kend:1}
78 %define kend /build
79 %endif
80 # Let the buildscript define the ksrcdir directly -- needed for RHEL4
81 %if %{?ksrcdir:0}%{!?ksrcdir:1}
82 %define ksrcdir %{kbase}%{kernvers}%{kend}
83 %endif
84
85 %if %{?kmoddir:0}%{!?kmoddir:1}
86 %define kmoddir /lib/modules
87 %endif
88 %define kxmoddir %{kmoddir}/%{kernvers}
89
90 # End legacy kernel build stuff
91 %endif 
92
93 %define dkms_version %{osvers}.%{pkgrel}
94
95 # Set 'debugspec' to 1 if you want to debug the spec file.  This will
96 # not remove the installed tree as part of the %clean operation
97 %if %{?debugspec:0}%{!?debugspec:1}
98 %define debugspec 0
99 %endif
100
101 # Set 'krb5support' to 1 if you want to build the openafs-krb5 package
102 # to distribute aklog and asetkey
103 %define krb5support %{?_without_krb5:0}%{!?_without_krb5:1}
104
105 %if %{krb5support}
106 %if %{?krb5config:0}%{!?krb5config:1}
107 %define krb5config /usr/kerberos/bin/krb5-config
108 %endif
109 %endif
110
111 # Set 'bootkernelsupport' to 1 if you want to build the
112 # kernel module for Red Hat BOOT Kernels on x86.
113 %define bootkernelsupport %{?_with_bootkernel:1}%{!?_with_bootkernel:0}
114
115 # Define the location of your init.d directory
116 %define initdir /etc/init.d
117
118 #determine if the kernel provides an arch-specific Provides
119 %define kprovidesarch %(%{kversis} provideskernelarch %{ksrcdir} %{_target_cpu})
120
121 # Define the location of the PAM security module directory
122 %define pamdir /%{_lib}/security
123
124 %if !%{fedorakmod}
125
126 # Define the set of kernel module variations to be built:
127 # For 2.4 kernels we just build everything at once for a particular
128 # kernel.   So we build up, smp, and bigmem all at once.
129 # For 2.6 kernels we have to build against the specific kernel headers
130 # for a particular kernel variation.  AFS will handle the specific smp or
131 # non-smp determination.  So just always build as if it's "up" -- the kernel
132 # version will have the 'variation' type already in the version #.
133
134 %define up_package 0
135 %define smp_package 0
136 %define bigmem_package 0
137 %define hugemem_package 0
138 %define largesmp_package 0
139
140 #######################################################################
141 # 2.4
142 %if %{kvers_is_24}
143 %define kdepend kernel-source
144 %define up_package 1
145 %define smp_package 1
146 %define smp_ext smp
147
148 %define bigmem_package %(%{kversis} find %{ksrcdir} %{_target_cpu} bigmem) 
149 %if %{bigmem_package}
150 %define bigmem_ext bigmem
151 %endif
152
153 %define hugemem_package %(%{kversis} find %{ksrcdir} %{_target_cpu} hugemem) 
154 %if %{hugemem_package}
155 %define hugemem_ext hugemem
156 %endif
157
158 %define kvariations up smp %{?bigmem_ext:%{bigmem_ext}} %{?hugemem_ext:%{hugemem_ext}}
159
160 #######################################################################
161 # 2.6
162 %else
163 %if %{kvers_is_26}
164 %define kvariations up
165 %ifarch s390x
166 %define ktype "smp"
167 %define up_package 1
168 %else
169 %define up_package %(%{kversis} "%{ktype}" "")
170 %define smp_package %(%{kversis} "%{ktype}" "smp")
171 %define hugemem_package %(%{kversis} "%{ktype}" "hugemem")
172 %define largesmp_package %(%{kversis} "%{ktype}" "largesmp")
173 %endif
174
175 %if !%{up_package} && !%{smp_package} && !%{hugemem_package} && !%{largesmp_package}
176 %error "unknown kernel type: %{ktype}"
177 %endif
178
179 %if !%{kernvers_on_cmdline}
180 %define kdepend %{ksrcdir}/include/linux/version.h
181 %endif
182
183 #######################################################################
184 # other kernels?
185 %else
186 %error "unknown kernel version: ${kvers} (parsed from %{kernvers})"
187 %endif
188 %endif
189
190 # End of legacy kernel module build
191 %endif 
192
193 #######################################################################
194 # You probably don't need to change anything beyond this line
195 # NOTE: If you do, please email me!!!
196
197 # Determine which elements of OpenAFS to build.  For non-x86 arches
198 # (subject to the ExclusiveArch setting, below), we build both userspace
199 # and modules.  For most x86 arches, we build just the kernel modules.  For
200 # i386, we build just the userspace.  If you're running an i386 kernel,
201 # you'll need to tweak that last bit.
202 %if !%{build_userspace_on_cmdline} && !%{build_modules_on_cmdline}
203
204 %ifarch x86_64 ia64 s390 s390x
205 %define build_userspace 1
206 %define build_modules 1
207 %ifarch x86_64 ia64
208 %define build_authlibs 1
209 %else
210 %define build_authlibs 0
211 %endif
212 %endif
213
214 %ifarch %{ix86}
215 %define build_userspace 0
216 %define build_modules 1
217 %define build_authlibs 1
218 %endif
219
220 %ifarch i386
221 %define build_userspace 1
222 %define build_modules 0
223 %define build_authlibs 1
224 %endif
225
226 %endif
227
228 # deal with cmdline specification
229 %if %{build_userspace_on_cmdline} || %{build_modules_on_cmdline}
230 %if !%{build_userspace_on_cmdline}
231 %define build_userspace 0
232 %endif
233 %if !%{build_modules_on_cmdline}
234 %define build_modules 0
235 %endif
236 %endif
237
238 %if !%{build_authlibs_on_cmdline}
239 %if %{build_userspace_on_cmdline}
240 %define build_authlibs 1
241 %else
242 %define build_authlibs 0
243 %endif
244 %endif
245
246 # Make sure RPM doesn't complain about installed but non-packaged files.
247 #define __check_files  %{nil}
248
249 Summary: OpenAFS distributed filesystem
250 Name: openafs
251 Version: %{pkgvers}
252 Release: %{osvers}.%{pkgrel}
253 License: IBM Public License
254 URL: http://www.openafs.org
255 BuildRoot: %{_tmppath}/%{name}-%{version}-root
256 Packager: OpenAFS Gatekeepers <openafs-gatekeepers@openafs.org>
257 Group: Networking/Filesystems
258 BuildRequires: %{?kdepend:%{kdepend}, } pam-devel, ncurses-devel, flex, bison
259 %if %{krb5support}
260 BuildRequires: krb5-devel
261 %endif
262 ExclusiveArch: %{ix86} x86_64 ia64 s390 s390x sparc64 ppc ppc64
263
264 #    http://dl.openafs.org/dl/openafs/candidate/%{afsvers}/...
265 Source0: http://www.openafs.org/dl/openafs/%{afsvers}/openafs-%{afsvers}-src.tar.bz2
266 Source1: http://www.openafs.org/dl/openafs/%{afsvers}/openafs-%{afsvers}-doc.tar.bz2
267 %define srcdir openafs-%{afsvers}
268
269 Source10: http://www.openafs.org/dl/openafs/%{afsvers}/RELNOTES-%{afsvers}
270 Source11: http://www.openafs.org/dl/openafs/%{afsvers}/ChangeLog
271
272 Source20: http://dl.central.org/dl/cellservdb/CellServDB.2008-11-07
273
274 Source30: openafs-kernel-version.sh
275 Source996: openafs-kvers-is.sh
276 Source997: openafs-buildfedora.pl
277 Source998: openafs-buildall.sh
278 Source999: openafs-kmodtool
279
280 %description
281 The AFS distributed filesystem.  AFS is a distributed filesystem
282 allowing cross-platform sharing of files among multiple computers.
283 Facilities are provided for access control, authentication, backup and
284 administrative management.
285
286 This package provides common files shared across all the various
287 OpenAFS packages but are not necessarily tied to a client or server.
288
289 The OpenAFS SRPM can be rebuilt with the following options to control
290 what gets built:
291
292  --define "kernvers 2.4.20-1.1376_FC3" Specify the specific kernel version 
293                                   to build modules against. The default is
294                                   to build against the currently-running
295                                   kernel.
296  --define "kbase /lib/modules/"   The base location to look for kernel headers
297  --define "kend /build"           The 'end' location to look for kernels
298                                   The build will define ksrvdir as
299                                   %%{kbase}<kernvers>%%{kend}
300
301  --without krb5                   Disable krb5 support (default: with krb5)
302  --with bitmap-later              Enable "bitmap later" support
303  --with bos-restricted            Enable "bos restricted" mode
304  --with fast-restart              Enable "fast restart" mode
305  --with largefiles                Enable "largefile fileserver" mode
306  --with supergroups               Enable "supergroups"
307
308  --target=i386                    The target architecture to build for.
309                                   When building for a non-default target
310                                   the build may choose whether to build
311                                   userspace or kernel modules automatically.
312                                   The defaults are probably what you want.
313
314  --define "build_userspace 1"     Request building of userspace tools
315  --define "build_modules 1"       Request building of kernel modules
316                                   You probably never need to specify these.
317
318  --define "kmoddir /lib/modules"  This is the base location where modules
319                                   will be installed.  You probably don't
320                                   need to change this ever.
321
322  --define "fedorakmod 0"          Disable the building of 'Fedora' style kernel 
323                                   modules, and use the old format.
324
325  --define "kvariants <variants>"  When building Fedora style kernel modules,
326                                   this defines the set of kernel variants
327                                   to build.
328                                   <variants> is a space seperated list which
329                                   may contain one or more of
330                                   '' (for the generic kernel), smp, PAE, xen
331                                   or kdump 
332
333 To a kernel module for your running kernel, just run:
334   rpmbuild --rebuild --target=`uname -m` openafs-%{pkgvers}-%{osvers}.%{pkgrel}.src.rpm
335
336 ##############################################################################
337 #
338 # build the userspace side of things if so requested
339 #
340 ##############################################################################
341 %if %{build_userspace}
342
343 %package client
344 Requires: binutils, openafs = %{PACKAGE_VERSION}
345
346 %if %{fedorakmod}
347 Requires: %{name}-kmod >= %{version}
348 Provides: %{name}-kmod-common = %{version}
349 %else
350 Requires: openafs-kernel
351 %endif
352
353 Summary: OpenAFS Filesystem Client
354 Group: Networking/Filesystem
355
356 %description client
357 The AFS distributed filesystem.  AFS is a distributed filesystem
358 allowing cross-platform sharing of files among multiple computers.
359 Facilities are provided for access control, authentication, backup and
360 administrative management.
361
362 This package provides basic client support to mount and manipulate
363 AFS.
364
365 %package server
366 Requires: openafs = %{PACKAGE_VERSION}
367 Summary: OpenAFS Filesystem Server
368 Group: Networking/Filesystems
369
370 %description server
371 The AFS distributed filesystem.  AFS is a distributed filesystem
372 allowing cross-platform sharing of files among multiple computers.
373 Facilities are provided for access control, authentication, backup and
374 administrative management.
375
376 This package provides basic server support to host files in an AFS
377 Cell.
378
379 %if %{build_dkmspkg}
380 %package -n dkms-%{name}
381 Summary:        DKMS-ready kernel source for AFS distributed filesystem
382 Group:          Development/Kernel
383 Provides:       openafs-kernel = %{PACKAGE_VERSION}
384 %if %{fedorakmod}
385 Provides: %{name}-kmod = %{PACKAGE_VERSION}
386 %endif
387 Requires(pre):  dkms
388 Requires(pre):  flex
389 Requires(post): dkms
390 Requires:       %{name}-kmod-common = %{version}
391
392 %description -n dkms-%{name}
393 The AFS distributed filesystem.  AFS is a distributed filesystem
394 allowing cross-platform sharing of files among multiple computers.
395 Facilities are provided for access control, authentication, backup and
396 administrative management.
397
398 This package provides the source code to allow DKMS to build an
399 AFS kernel module.
400 %endif
401
402 %if %{build_authlibs}
403 %package authlibs
404 Summary: OpenAFS authentication shared libraries
405 Group: Networking/Filesystems
406
407 %description authlibs
408 The AFS distributed filesystem.  AFS is a distributed filesystem
409 allowing cross-platform sharing of files among multiple computers.
410 Facilities are provided for access control, authentication, backup and
411 administrative management.
412
413 This package provides a shared version of libafsrpc and libafsauthent. 
414 None of the programs included with OpenAFS currently use these shared 
415 libraries; however, third-party software that wishes to perform AFS 
416 authentication may link against them.
417 %endif
418
419 %package authlibs-devel
420 %if %{build_authlibs}
421 Requires: openafs-authlibs = %{PACKAGE_VERSION}
422 %endif
423 Requires: openafs-devel = %{PACKAGE_VERSION}
424 Summary: OpenAFS shared library development
425 Group: Development/Filesystems
426
427 %description authlibs-devel
428 The AFS distributed filesystem.  AFS is a distributed filesystem
429 allowing cross-platform sharing of files among multiple computers.
430 Facilities are provided for access control, authentication, backup and
431 administrative management.
432
433 This package includes the static versions of libafsrpc and 
434 libafsauthent, and symlinks required for building against the dynamic 
435 libraries.
436
437 %package devel
438 Summary: OpenAFS Development Libraries and Headers
439 Group: Development/Filesystems
440
441 %description devel
442 The AFS distributed filesystem.  AFS is a distributed filesystem
443 allowing cross-platform sharing of files among multiple computers.
444 Facilities are provided for access control, authentication, backup and
445 administrative management.
446
447 This package provides static development libraries and headers needed
448 to compile AFS applications.  Note: AFS currently does not provide
449 shared libraries.
450
451 %package docs
452 Summary: OpenAFS user and administrator documentation
453 Requires: openafs = %{PACKAGE_VERSION}
454 Group: Networking/Filesystems
455
456 %description docs
457 The AFS distributed filesystem.  AFS is a distributed filesystem
458 allowing cross-platform sharing of files among multiple computers.
459 Facilities are provided for access control, authentication, backup and
460 administrative management.
461
462 This package provides HTML documentation for OpenAFS users and system
463 administrators.
464
465 %package kernel-source
466 Summary: OpenAFS Kernel Module source tree
467 Group: Networking/Filesystems
468 Provides: openafs-kernel = %{PACKAGE_VERSION}
469 %if %{fedorakmod}
470 Provides: %{name}-kmod = %{PACKAGE_VERSION}
471 %endif
472
473 %description kernel-source
474 The AFS distributed filesystem.  AFS is a distributed filesystem
475 allowing cross-platform sharing of files among multiple computers.
476 Facilities are provided for access control, authentication, backup and
477 administrative management.
478
479 This package provides the source code to build your own AFS kernel
480 module.
481
482 %package compat
483 Summary: OpenAFS client compatibility symlinks
484 Requires: openafs = %{PACKAGE_VERSION}, openafs-client = %{PACKAGE_VERSION}
485 Group: Networking/Filesystems
486 Obsoletes: openafs-client-compat
487
488 %description compat
489 The AFS distributed filesystem.  AFS is a distributed filesystem
490 allowing cross-platform sharing of files among multiple computers.
491 Facilities are provided for access control, authentication, backup and
492 administrative management.
493
494 This package provides compatibility symlinks in /usr/afsws.  It is
495 completely optional, and is only necessary to support legacy
496 applications and scripts that hard-code the location of AFS client
497 programs.
498
499 %package kpasswd
500 Summary: OpenAFS KA kpasswd support
501 Requires: openafs
502 Group: Networking/Filesystems
503
504 %description kpasswd
505 The AFS distributed filesystem.  AFS is a distributed filesystem
506 allowing cross-platform sharing of files among multiple computers.
507 Facilities are provided for access control, authentication, backup and
508 administrative management.
509
510 This package provides the compatibility symlink for kpasswd, in case
511 you are using KAserver instead of Krb5.
512
513 %if %{krb5support}
514 %package krb5
515 Summary: OpenAFS programs to use with krb5
516 Requires: openafs = %{PACKAGE_VERSION}
517 Group: Networking/Filesystems
518 BuildRequires: krb5-devel
519
520 %description krb5
521 The AFS distributed filesystem.  AFS is a distributed filesystem
522 allowing cross-platform sharing of files among multiple computers.
523 Facilities are provided for access control, authentication, backup and
524 administrative management.
525
526 This package provides compatibility programs so you can use krb5
527 to authenticate to AFS services, instead of using AFS's homegrown
528 krb4 lookalike services.
529 %endif
530
531 %endif
532
533 ##############################################################################
534 #
535 # build the kernel modules if so requested
536 #
537 ##############################################################################
538 %if %{build_modules}
539
540 %if %{fedorakmod}
541 %{expand:%(%{kmodtool} rpmtemplate %{kmod_name} %{kverrel} %{kvariants} 2>/dev/null)}
542
543 %else
544
545 # Legacy kernel compilation code here ...
546 %define modkversion %(echo %{kernvers} | cut -d- -f1)
547 %define modkrelease %(echo %{kernvers} | cut -d- -f2)
548 %define modpkgrel %{modkversion}_%{modkrelease}_%{pkgrel}
549
550 %if %{up_package}
551 %package kernel
552 Summary: OpenAFS Kernel Module (compiled for UP)
553 Release: %{modpkgrel}
554 Group: Networking/Filesystems
555 Provides: openafs-kernel = %{PACKAGE_VERSION}
556 %if %{kprovidesarch}
557 Requires: kernel-%{_target_cpu} = %{kversion}
558 %else
559 Requires: /boot/config-%{kernvers}
560 %endif
561
562 %description kernel
563 The AFS distributed filesystem.  AFS is a distributed filesystem
564 allowing cross-platform sharing of files among multiple computers.
565 Facilities are provided for access control, authentication, backup and
566 administrative management.
567
568 This package provides a precompiled AFS kernel module for %{kernvers}.
569 %endif
570
571 %if %{smp_package}
572 %package kernel-smp
573 Summary: OpenAFS Kernel Module (compiled for SMP)
574 Release: %{modpkgrel}
575 Provides: openafs-kernel = %{PACKAGE_VERSION}
576 %if %{kprovidesarch}
577 Requires: kernel-smp-%{_target_cpu} = %{kversion}
578 %else
579 Requires: /boot/config-%{kernvers}%{?smp_ext:%{smp_ext}}
580 %endif
581 Group: Networking/Filesystems
582
583 %description kernel-smp
584 The AFS distributed filesystem.  AFS is a distributed filesystem
585 allowing cross-platform sharing of files among multiple computers.
586 Facilities are provided for access control, authentication, backup and
587 administrative management.
588
589 This package provides a precompiled AFS kernel module for %{kernvers}.
590 %endif
591
592 %if %{largesmp_package}
593 %package kernel-largesmp
594 Summary: OpenAFS Kernel Module (compiled for LARGESMP)
595 Release: %{modpkgrel}
596 Provides: openafs-kernel = %{PACKAGE_VERSION}
597 %if %{kprovidesarch}
598 Requires: kernel-largesmp-%{_target_cpu} = %{kversion}
599 %else
600 Requires: /boot/config-%{kernvers}%{?largesmp_ext:%{largesmp_ext}}
601 %endif
602 Group: Networking/Filesystems
603
604 %description kernel-largesmp
605 The AFS distributed filesystem.  AFS is a distributed filesystem
606 allowing cross-platform sharing of files among multiple computers.
607 Facilities are provided for access control, authentication, backup and
608 administrative management.
609
610 This package provides a precompiled AFS kernel module for %{kernvers}.
611 %endif
612  
613 %if %{bigmem_package}
614 %package kernel-bigmem
615 Summary: OpenAFS Kernel Module (compiled for SMP & big memory support)
616 Release: %{modpkgrel}
617 Provides: openafs-kernel = %{PACKAGE_VERSION}
618 %if %{kprovidesarch}
619 Requires: kernel-bigmem-%{_target_cpu} = %{kversion}
620 %else
621 Requires: /boot/config-%{kernvers}%{?bigmem_ext:%{bigmem_ext}}
622 %endif
623 Group: Networking/Filesystems
624
625 %description kernel-bigmem
626 The AFS distributed filesystem.  AFS is a distributed filesystem
627 allowing cross-platform sharing of files among multiple computers.
628 Facilities are provided for access control, authentication, backup and
629 administrative management.
630
631 This package provides a precompiled AFS kernel module for %{kernvers}.
632 %endif
633
634 %if %{hugemem_package}
635 %package kernel-hugemem
636 Summary: OpenAFS Kernel Module (compiled for SMP & huge memory support)
637 Release: %{modpkgrel}
638 Provides: openafs-kernel = %{PACKAGE_VERSION}
639 %if %{kprovidesarch}
640 Requires: kernel-hugemem-%{_target_cpu} = %{kversion}
641 %else
642 Requires: /boot/config-%{kernvers}%{?hugemem_ext:%{hugemem_ext}}
643 %endif
644 Group: Networking/Filesystems
645
646 %description kernel-hugemem
647 The AFS distributed filesystem.  AFS is a distributed filesystem
648 allowing cross-platform sharing of files among multiple computers.
649 Facilities are provided for access control, authentication, backup and
650 administrative management.
651
652 This package provides a precompiled AFS kernel module for %{kernvers}.
653 %endif
654
655 %endif
656 # End legacy kernel compilation code ...
657 %endif
658
659 ##############################################################################
660 #
661 # PREP
662 #
663 ##############################################################################
664
665 %prep
666
667 : @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
668 : @@@
669 : @@@ kernel version:     %{kernvers}
670 %if %{fedorakmod}
671 : @@@ kernel variations:  %{kvariants}
672 %else
673 : @@@ base kernel version:%{kversion}
674 : @@@ kernel modules dir: %{kxmoddir}
675 : @@@ kernel source dir:  %{ksrcdir}
676 %if %{kvers_is_24}
677 : @@@ kernel variations:  %{kvariations}
678 %else
679 %if %{up_package}
680 : @@@ kernel type:        up
681 %else
682 : @@@ kernel type:        %{ktype}
683 %endif
684 %endif
685 %endif
686 : @@@ PAM modules dir:    %{pamdir}
687 : @@@ build userspace:    %{build_userspace}
688 : @@@ build modules:      %{build_modules}
689 : @@@ arch:               %{_arch}
690 : @@@ target cpu:         %{_target_cpu}
691 : @@@
692 : @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
693
694 # Install OpenAFS src and doc
695 #%setup -q -n %{srcdir}
696 %setup -q -b 1 -n %{srcdir}
697
698 ##############################################################################
699 #
700 # building
701 #
702 ##############################################################################
703 %build
704
705 case %{kernvers} in
706    2.4.*)
707        kv='24'
708        ;;
709    2.6.*)
710        kv='26'
711        ;;
712    *)
713        echo "I don't know how to build linux-`expr ${kernvers} : \(^[0-9]*[.][0-9]*\)`"
714        exit 1
715        ;;
716 esac
717
718 case %{_arch} in
719        x86_64)                         sysname=amd64_linux${kv}        ;;
720        alpha*)                         sysname=alpha_linux_${kv}       ;;
721        i386|i486|i586|i686|athlon)     sysname=i386_linux${kv}         ;;
722        *)                              sysname=%{_arch}_linux${kv}     ;;
723 esac
724
725 %ifarch %{ix86}
726 archlist="i386 i586 i686 athlon"
727 %if %{bootkernelsupport}
728   archlist="${archlist} BOOT"
729 %endif
730 %else
731 archlist=%{_arch}
732 %endif
733
734 #
735 # PrintDefine var value statements file
736 #
737 PrintDefine() {
738     case $3 in
739     *ifn*)
740         echo "#ifndef $1" >> $4
741         ;;
742     esac
743     case $3 in
744     *und*)
745         echo "#undef $1" >> $4
746         ;;
747     esac
748     case $3 in
749     *def*)
750         echo "#define $1 $2" >> $4
751         ;;
752     esac
753     case $3 in
754     *end*)
755         echo "#endif" >> $4
756         ;;
757     esac
758     case $3 in
759     *inc*)
760         echo "#include $1" >> $4
761         ;;
762     esac
763     case $3 in
764     *nl*)
765         echo "" >> $4
766         ;;
767     esac
768 }
769
770 # PrintRedhatKernelFix arch mp file
771 PrintRedhatKernelFix() {
772     arch="$1"
773     up=0
774     smp=0
775     largesmp=0
776     ent=0
777     bigmem=0
778     hugemem=0
779     boot=0
780     bootsmp=0
781
782     case "$2" in
783        up)     up=1;;
784        smp)    smp=1;;
785        largesmp) largesmp=1;;
786        bigmem) bigmem=1;;
787        hugemem) hugemem=1;;
788        *)
789                echo "$2 not supported"
790                exit 2;;
791     esac
792
793     file="$3"
794
795     rm -f $file
796     touch $file
797
798     PrintDefine "REDHAT_FIX_H" "" ifn,def,nl $file
799
800     PrintDefine __BOOT_KERNEL_ENTERPRISE $ent     und,def,nl $file
801     PrintDefine __BOOT_KERNEL_BIGMEM     $bigmem  und,def,nl $file
802     PrintDefine __BOOT_KERNEL_HUGEMEM    $hugemem und,def,nl $file
803     PrintDefine __BOOT_KERNEL_SMP        $smp     und,def,nl $file
804     PrintDefine __BOOT_KERNEL_LARGESMP   $largesmp und,def,nl $file
805     PrintDefine __BOOT_KERNEL_UP         $up      und,def,nl $file
806     PrintDefine __BOOT_KERNEL_BOOT       $boot    und,def,nl $file
807     PrintDefine __BOOT_KERNEL_BOOTSMP    $bootsmp und,def,nl $file
808
809     PrintDefine '"/boot/kernel.h"' "" inc,nl $file      # include file
810
811     for ar in $archlist ; do
812         if [ "$ar" = "$arch" ]; then
813             PrintDefine "__MODULE_KERNEL_$ar" "1" ifn,def,end $file
814         else
815             PrintDefine "__MODULE_KERNEL_$ar" "" und $file      # undef
816         fi
817     done
818     echo "" >> $file
819
820     PrintDefine "" "" end $file
821
822     if [ %{debugspec} = 1 ] ; then
823         echo "Kernel Configuration File for Red Hat kernels:"
824         cat $file
825     fi
826 }
827
828 config_opts="--enable-redhat-buildsys \
829         %{?_with_bitmap_later:--enable-bitmap-later} \
830         %{?_with_bos_restricted:--enable-bos-restricted-mode} \
831         %{?_with_fast_restart:--enable-fast-restart} \
832         %{?_with_largefiles:--enable-largefile-fileserver} \
833         %{?_with_supergroups:--enable-supergroups} \
834         --enable-transarc-paths"
835
836 # Configure AFS
837
838 # If we're using Fedora kmods, work out which is the best kernel module to 
839 # use for the userland configuration step. If no variants have been specified,
840 # then use the standard kernel. If variants are specified, use the standard kernel
841 # if it's listed, otherwise pick the first listed kernel.
842 ksrc=""
843 %if %{fedorakmod} 
844   for kvariant in %{kvariants} ; do
845     if [ -z "${kvariant}" -o -z "$ksrc" ] ; then
846       if [ -d %{_usrsrc}/kernels/%{kverrel}${kvariant:+-$kvariant}-%{_target_cpu} ] ; then
847         ksrc=%{_usrsrc}/kernels/%{kverrel}${kvariant:+-$kvariant}-%{_target_cpu}
848       else
849         ksrc=%{_usrsrc}/kernels/%{kverrel}.%{_target_cpu}${kvariant:+.$kvariant}
850       fi
851     fi
852   done
853 %endif
854 if [ -z "$ksrc" ] ; then
855 ksrc=%{ksrcdir}
856 fi
857
858 CFLAGS="$RPM_OPT_FLAGS"; export CFLAGS
859
860 ./configure --with-afs-sysname=${sysname} \
861        --prefix=%{_prefix} \
862        --libdir=%{_libdir} \
863        --bindir=%{_bindir} \
864        --sbindir=%{_sbindir} \
865        --disable-strip-binaries \
866        --with-linux-kernel-packaging \
867        --enable-disconnected \
868 %if %{build_modules}
869        --with-linux-kernel-headers=${ksrc} \
870 %endif
871 %if %{krb5support}
872         --with-krb5-conf=%{krb5config} \
873 %endif
874        $config_opts \
875        || exit 1
876
877 # Build the libafs tree
878 make only_libafs_tree || exit 1
879
880 # Configure each of our kernel modules
881
882 %if %{fedorakmod} && %{build_modules}
883 for kvariant in %{kvariants} ; do
884   if [ -n "${kvariant}" ] ; then
885     if [ -d %{_usrsrc}/kernels/%{kverrel}${kvariant:+-$kvariant}-%{_target_cpu} ] ; then
886       ksrc=%{_usrsrc}/kernels/%{kverrel}${kvariant:+-$kvariant}-%{_target_cpu}
887     else
888       ksrc=%{_usrsrc}/kernels/%{kverrel}.%{_target_cpu}${kvariant:+.$kvariant}
889     fi
890
891     cp -R libafs_tree _kmod_build_${kvariant}
892     pushd _kmod_build_${kvariant}
893     ./configure --with-afs-sysname=${sysname} \
894         --prefix=%{_prefix} \
895         --libdir=%{_libdir} \
896         --bindir=%{_bindir} \
897         --sbindir=%{_sbindir} \
898         --with-linux-kernel-packaging \
899         --with-linux-kernel-headers=${ksrc} \
900         --enable-disconnected \
901 %if %{krb5support}
902         --with-krb5-conf=/usr/kerberos/bin/krb5-config \
903 %endif
904         $config_opts \
905         || exit 1
906     popd
907   fi
908 done
909 %endif
910
911 %if %{build_userspace}
912 # Build the user-space AFS stuff
913 make dest_nolibafs || exit 1
914 %endif
915
916 %if %{build_modules}
917 %if %{fedorakmod}
918 for kvariant in %{kvariants}
919 do
920   if [ -n "${kvariant}" ] ; then
921     pushd _kmod_build_$kvariant;
922     make all
923     popd
924   else
925     make dest_only_libafs
926   fi
927 done
928
929 %else
930 # Begin legacy kernel module building code
931
932 %if %{kvers_is_24}
933 # Build all the kernel modules for linux 2.4.x
934 for variation in %{kvariations}
935 do
936     if [ ${variation} = up ]
937     then
938        local_smp_def=-DREDHAT_FIX
939        suffix=
940     else
941        local_smp_def="-DAFS_SMP -DREDHAT_FIX"
942        suffix=${variation}
943     fi
944
945     PrintRedhatKernelFix %{_target_cpu} $variation src/config/redhat-fix.h
946     make dest_only_libafs LOCAL_SMP_DEF="${local_smp_def}" \
947         LINUX_MODULE_NAME="${suffix}" MPS=SP
948
949 done
950 rm -f src/config/redhat-fix.h
951
952 %elseif %{kvers_is_26}
953 # Build the kernel module for this version of linux 2.6.x
954 # Notice how much easier this is than 2.4.  On the other hand,
955 # we require much more external support to build multiple modules.
956
957   # the MPS=SP just means that we don't add a '.mp' to the name.
958   make dest_only_libafs MPS=SP
959
960 %endif
961 # End legacy kernel module building code
962 %endif
963 %endif
964
965
966 ##############################################################################
967 #
968 # installation
969 #
970 ##############################################################################
971 %install
972
973 export DONT_GPRINTIFY=1
974
975 [ $RPM_BUILD_ROOT != / ] && rm -rf $RPM_BUILD_ROOT
976
977 case %{kernvers} in
978    2.4.*)
979        kv='24'
980        kmodend=.o
981        ;;
982    2.6.*)
983        kv='26'
984        kmodend=.ko
985        ;;
986    *)
987        echo "I don't know how to build linux-`expr ${kernvers} : \(^[0-9]*[.][0-9]*\)`"
988        exit 1
989        ;;
990 esac
991
992 case %{_arch} in
993        x86_64)                         sysname=amd64_linux${kv}        ;;
994        alpha*)                         sysname=alpha_linux_${kv}       ;;
995        i386|i486|i586|i686|athlon)     sysname=i386_linux${kv}         ;;
996        *)                              sysname=%{_arch}_linux${kv}     ;;
997 esac
998
999 # Build install tree
1000 %if %{build_userspace}
1001 mkdir -p $RPM_BUILD_ROOT%{_sbindir}
1002 mkdir -p $RPM_BUILD_ROOT%{_libdir}
1003 mkdir -p $RPM_BUILD_ROOT/etc/sysconfig
1004 mkdir -p $RPM_BUILD_ROOT%{initdir}
1005 mkdir -p $RPM_BUILD_ROOT/etc/openafs
1006 mkdir -p $RPM_BUILD_ROOT%{pamdir}
1007 mkdir -p $RPM_BUILD_ROOT%{_prefix}/afs/etc
1008 mkdir -p $RPM_BUILD_ROOT%{_prefix}/afs/logs
1009 mkdir -p $RPM_BUILD_ROOT%{_prefix}/vice/etc
1010 mkdir -p $RPM_BUILD_ROOT%{_prefix}/vice/cache
1011 chmod 700 $RPM_BUILD_ROOT%{_prefix}/vice/cache
1012 mkdir -p $RPM_BUILD_ROOT%{_mandir}
1013
1014 # Copy files from dest to the appropriate places in BuildRoot
1015 tar cf - -C ${sysname}/dest bin include | tar xf - -C $RPM_BUILD_ROOT%{_prefix}
1016 tar cf - -C ${sysname}/dest/lib . | tar xf - -C $RPM_BUILD_ROOT%{_libdir}
1017 tar cf - -C ${sysname}/dest/etc . | tar xf - -C $RPM_BUILD_ROOT%{_sbindir}
1018 tar cf - -C ${sysname}/dest/root.server%{_prefix}/afs bin | tar xf - -C $RPM_BUILD_ROOT%{_prefix}/afs
1019 tar cf - -C ${sysname}/dest/root.client%{_prefix}/vice/etc afsd C | tar xf - -C $RPM_BUILD_ROOT%{_prefix}/vice/etc
1020
1021 # Link kpasswd to kapasswd
1022 ln -f $RPM_BUILD_ROOT%{_bindir}/kpasswd $RPM_BUILD_ROOT%{_bindir}/kapasswd
1023
1024 # Copy root.client config files
1025 install -m 755 src/packaging/RedHat/openafs.sysconfig $RPM_BUILD_ROOT/etc/sysconfig/openafs
1026 install -m 755 src/packaging/RedHat/openafs-client.init $RPM_BUILD_ROOT%{initdir}/openafs-client
1027 install -m 755 src/packaging/RedHat/openafs-server.init $RPM_BUILD_ROOT%{initdir}/openafs-server
1028
1029 # Copy PAM modules
1030 install -m 755 ${sysname}/dest/lib/pam* $RPM_BUILD_ROOT%{pamdir}
1031
1032 # PAM symlinks
1033 ln -sf pam_afs.so.1 $RPM_BUILD_ROOT%{pamdir}/pam_afs.so
1034 ln -sf pam_afs.krb.so.1 $RPM_BUILD_ROOT%{pamdir}/pam_afs.krb.so
1035
1036 # Populate /usr/vice/etc
1037 uve=$RPM_BUILD_ROOT%{_prefix}/vice/etc
1038 install -p -m 644 src/packaging/RedHat/openafs-ThisCell $uve/ThisCell
1039 install -p -m 644 %{SOURCE20} $uve/CellServDB.dist
1040 install -p -m 644 src/packaging/RedHat/openafs-cacheinfo $uve/cacheinfo
1041
1042 #
1043 # install dkms source
1044 #
1045 install -d -m 755 $RPM_BUILD_ROOT%{_prefix}/src
1046 cp -a libafs_tree $RPM_BUILD_ROOT%{_prefix}/src/%{name}-%{dkms_version}
1047
1048 cat > $RPM_BUILD_ROOT%{_prefix}/src/%{name}-%{dkms_version}/dkms.conf <<EOF
1049
1050 PACKAGE_VERSION="%{dkms_version}"
1051
1052 # Items below here should not have to change with each driver version
1053 PACKAGE_NAME="%{name}"
1054 MAKE[0]="SMP=SP; eval \\\`grep CONFIG_SMP /boot/config-\${kernelver_array[0]}\\\`; [ -n \"\\\$CONFIG_SMP\" ] && SMP=MP; KMODNAME=openafs.ko; DSTKMOD=\\".\\"; [ \\"\\\`echo \\"\${kernelver_array[0]}\\" | sed -e 's/^\\([0-9]*\\.[0-9]*\\)\\..*/\\1/'\\\`\\" = \\"2.4\\" ] && KMODNAME=\\"libafs-*\\" && DSTKMOD=openafs.o; ./configure --enable-disconnected --with-linux-kernel-headers=\${kernel_source_dir}; make MPS=\\\$SMP; mv src/libafs/MODLOAD-*/\\\$KMODNAME \\\$DSTKMOD"
1055 CLEAN="make -C src/libafs clean"
1056
1057 BUILT_MODULE_NAME[0]="\$PACKAGE_NAME"
1058 DEST_MODULE_LOCATION[0]="/kernel/3rdparty/\$PACKAGE_NAME/"
1059
1060 AUTOINSTALL=yes
1061
1062 EOF
1063
1064 #
1065 # install kernel-source
1066 #
1067
1068 # Install the kernel module source tree
1069 mkdir -p $RPM_BUILD_ROOT%{_prefix}/src/openafs-kernel-%{afsvers}/src
1070 tar cf - -C libafs_tree . | \
1071         tar xf - -C $RPM_BUILD_ROOT%{_prefix}/src/openafs-kernel-%{afsvers}/src
1072
1073 # Next, copy the LICENSE Files, README
1074 install -m 644 src/LICENSE $RPM_BUILD_ROOT%{_prefix}/src/openafs-kernel-%{afsvers}/LICENSE.IBM
1075 install -m 644 src/packaging/RedHat/openafs-LICENSE.Sun $RPM_BUILD_ROOT%{_prefix}/src/openafs-kernel-%{afsvers}/LICENSE.Sun
1076 install -m 644 src/packaging/RedHat/openafs-README $RPM_BUILD_ROOT%{_prefix}/src/openafs-kernel-%{afsvers}/README
1077
1078 #
1079 # Install DOCUMENTATION
1080 #
1081
1082 # Build the DOC directory
1083 mkdir -p $RPM_BUILD_ROOT/$RPM_DOC_DIR/openafs-%{afsvers}
1084 tar cf - -C doc LICENSE html pdf | \
1085     tar xf - -C $RPM_BUILD_ROOT/$RPM_DOC_DIR/openafs-%{afsvers}
1086 install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/$RPM_DOC_DIR/openafs-%{afsvers}
1087 install -m 644 %{SOURCE11} $RPM_BUILD_ROOT/$RPM_DOC_DIR/openafs-%{afsvers}
1088
1089 #
1090 # man pages
1091 #
1092 tar cf - -C doc/man-pages man1 man5 man8 | \
1093     tar xf - -C $RPM_BUILD_ROOT%{_mandir}
1094
1095 # Copy the uninstalled krb5 files (or delete the unused krb5 files)
1096 %if %{krb5support}
1097 mv $RPM_BUILD_ROOT%{_prefix}/afs/bin/asetkey $RPM_BUILD_ROOT%{_sbindir}/asetkey
1098 %else
1099 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/asetkey.*
1100 %endif
1101
1102 # remove unused man pages
1103 for x in afs_ftpd afs_inetd afs_login afs_rcp afs_rlogind afs_rsh \
1104     dkload knfs package runntp symlink symlink_list symlink_make \
1105     symlink_remove; do
1106         rm -f $RPM_BUILD_ROOT%{_mandir}/man1/${x}.1
1107 done
1108
1109 # rename kpasswd to kapasswd
1110 mv $RPM_BUILD_ROOT%{_mandir}/man1/kpasswd.1 $RPM_BUILD_ROOT%{_mandir}/man1/kapasswd.1
1111
1112 # gzip man pages
1113 gzip -9 $RPM_BUILD_ROOT%{_mandir}/man*/*
1114
1115 # create list of man pages that go in the 'openafs' package
1116 /bin/ls $RPM_BUILD_ROOT%{_mandir}/man1 \
1117         |egrep '^afs|^fs|^kas|^klog|kapasswd|pagsh|^pts|^rxdebug|scout|^sys|tokens|translate|udebug|unlog|^uss|^vos' \
1118         >openafs-man1files
1119
1120 /bin/ls $RPM_BUILD_ROOT%{_mandir}/man5 \
1121         |egrep 'CellServDB|ThisCell|afsmonitor|^butc|^uss' \
1122         >openafs-man5files
1123
1124 /bin/ls $RPM_BUILD_ROOT%{_mandir}/man8 \
1125         |egrep '^backup|^bos|^butc|^fms|^fstrace|^kas|^read_tape|^uss' \
1126         >openafs-man8files
1127
1128 #
1129 # create filelist
1130 #
1131 grep -v "^#" >openafs-file-list <<EOF-openafs-file-list
1132 %{_bindir}/afsmonitor
1133 %{_bindir}/bos
1134 %{_bindir}/fs
1135 %{_bindir}/kapasswd
1136 %{_bindir}/kpasswd
1137 %{_bindir}/klog
1138 %{_bindir}/klog.krb
1139 %{_bindir}/pagsh
1140 %{_bindir}/pagsh.krb
1141 %{_bindir}/pts
1142 %{_bindir}/scout
1143 %{_bindir}/sys
1144 %{_bindir}/tokens
1145 %{_bindir}/tokens.krb
1146 %{_bindir}/translate_et
1147 %{_bindir}/udebug
1148 %{_bindir}/unlog
1149 %{_sbindir}/backup
1150 %{_sbindir}/butc
1151 %{_sbindir}/fms
1152 %{_sbindir}/fstrace
1153 %{_sbindir}/kas
1154 %{_sbindir}/read_tape
1155 %{_sbindir}/restorevol
1156 %{_sbindir}/rxdebug
1157 %{_sbindir}/uss
1158 %{_sbindir}/vos
1159 %{_sbindir}/vsys
1160 EOF-openafs-file-list
1161
1162 # add man pages to the list
1163 cat openafs-man1files \
1164         | ( while read x; do echo "%{_mandir}/man1/$x"; done ) \
1165         >>openafs-file-list
1166 cat openafs-man5files \
1167         | ( while read x; do echo "%{_mandir}/man5/$x"; done ) \
1168         >>openafs-file-list
1169 cat openafs-man8files \
1170         | ( while read x; do echo "%{_mandir}/man8/$x"; done ) \
1171         >>openafs-file-list
1172
1173 #
1174 # Install compatiblity links
1175 #
1176 for d in bin:bin etc:sbin; do
1177   olddir=`echo $d | sed 's/:.*$//'`
1178   newdir=`echo $d | sed 's/^.*://'`
1179   mkdir -p $RPM_BUILD_ROOT%{_prefix}/afsws/$olddir
1180   for f in `cat openafs-file-list`; do
1181     if echo $f | grep -q /$newdir/; then
1182       fb=`basename $f`
1183       ln -sf %{_prefix}/$newdir/$fb $RPM_BUILD_ROOT%{_prefix}/afsws/$olddir/$fb
1184     fi
1185   done
1186 done
1187
1188 #
1189 # Remove files we're not installing
1190 #
1191
1192 # remove duplicated files from /usr/afs/bin
1193 for f in bos fs kas klog klog.krb kpwvalid pts tokens tokens.krb udebug vos ; do
1194   rm -f $RPM_BUILD_ROOT%{_prefix}/afs/bin/$f
1195 done
1196
1197 # compile_et is duplicated in e2fsprogs
1198 # the rest are not needed.
1199 for f in compile_et dlog dpass install knfs livesys xstat_cm_test xstat_fs_test ; do
1200   rm -f $RPM_BUILD_ROOT%{_bindir}/$f
1201 done
1202
1203 # not supported on Linux or duplicated
1204 for f in kdb rmtsysd kpwvalid ; do
1205   rm -f $RPM_BUILD_ROOT%{_sbindir}/$f
1206 done
1207 # sometimes install sucks and puts down a directory. kill it all.
1208 rm -rf $RPM_BUILD_ROOT%{_sbindir}/kdump*
1209
1210 # remove man pages from programs deleted above
1211 for f in 1/dlog 1/dpass 1/livesys 1/xstat_cm_test 1/xstat_fs_test 8/kdb 8/kpwvalid 8/xfs_size_check 1/package_test 5/package 8/package ; do
1212   rm -f $RPM_BUILD_ROOT%{_mandir}/man$f.*
1213 done
1214
1215 # PAM modules are doubly-installed  Remove the version we don't need
1216 for f in pam_afs.krb.so.1 pam_afs.so.1 ; do
1217   rm -f $RPM_BUILD_ROOT%{_libdir}/$f
1218 done
1219
1220 %if !%{build_authlibs}
1221 rm -f $RPM_BUILD_ROOT%{_libdir}/libafsauthent.so
1222 rm -f $RPM_BUILD_ROOT%{_libdir}/libafsrpc.so
1223 rm -f $RPM_BUILD_ROOT%{_libdir}/libafsauthent.so.*
1224 rm -f $RPM_BUILD_ROOT%{_libdir}/libafsrpc.so.*
1225 %endif
1226
1227 %endif
1228
1229 %if %{build_modules}
1230 %if %{fedorakmod}
1231 for kvariant in %{kvariants}
1232 do
1233   if [ -n "$kvariant" ] ; then
1234     if [ -d _kmod_build_$kvariant/src/libafs/MODLOAD-%{kverrel}${kvariant}-SP ] ; then
1235       srcdir=_kmod_build_$kvariant/src/libafs/MODLOAD-%{kverrel}${kvariant}-SP
1236       dstdir=$RPM_BUILD_ROOT/lib/modules/%{kverrel}${kvariant}/extra/openafs
1237     else
1238       srcdir=_kmod_build_$kvariant/src/libafs/MODLOAD-%{kverrel}.%{_target_cpu}.${kvariant}-SP
1239       dstdir=$RPM_BUILD_ROOT/lib/modules/%{kverrel}.%{_target_cpu}.${kvariant}/extra/openafs
1240     fi
1241   else
1242     if [ -d ${sysname}/dest/root.client/lib/modules/%{kverrel}/extra/openafs ] ; then
1243       srcdir=${sysname}/dest/root.client/lib/modules/%{kverrel}/extra/openafs
1244       dstdir=$RPM_BUILD_ROOT/lib/modules/%{kverrel}/extra/openafs
1245     else
1246       srcdir=${sysname}/dest/root.client/lib/modules/%{kverrel}.%{_target_cpu}/extra/openafs
1247       dstdir=$RPM_BUILD_ROOT/lib/modules/%{kverrel}.%{_target_cpu}/extra/openafs
1248     fi
1249   fi
1250
1251   mkdir -p ${dstdir}
1252   install -m 755 ${srcdir}/openafs.ko ${dstdir}/openafs.ko
1253 done
1254 %else
1255 # Install the kernel modules
1256 for variation in %{kvariations}
1257 do
1258     if [ ${variation} = up ]
1259     then
1260        kvar=%{kxmoddir}
1261        modname=openafs${kmodend}
1262     else
1263        kvar=%{kxmoddir}${variation}
1264        modname=openafs${kmodend}
1265     fi
1266
1267     srcdir=${sysname}/dest/root.client/lib/modules/%{kverrel}${kvariant}/extra/openafs
1268     dstdir=$RPM_BUILD_ROOT${kvar}/fs/openafs
1269
1270     mkdir -p ${dstdir}
1271
1272     install -m 755 ${srcdir}/${modname} ${dstdir}/openafs${kmodend}
1273 done
1274 %endif
1275 %endif
1276
1277 ##############################################################################
1278 ###
1279 ### clean
1280 ###
1281 ##############################################################################
1282 %clean
1283 rm -f openafs-file-list
1284 [ "$RPM_BUILD_ROOT" != "/" -a "x%{debugspec}" != "x1" ] && \
1285         rm -fr $RPM_BUILD_ROOT
1286
1287
1288 ##############################################################################
1289 ###
1290 ### scripts
1291 ###
1292 ##############################################################################
1293 %if %{build_userspace}
1294
1295 %pre compat
1296 if [ -e %{_prefix}/afsws ]; then
1297         /bin/rm -fr %{_prefix}/afsws
1298 fi
1299
1300 %post client
1301 chkconfig --add openafs-client
1302 if [ ! -d /afs ]; then
1303         mkdir /afs
1304         chown root.root /afs
1305         chmod 0755 /afs
1306 fi
1307
1308 # Create the CellServDB
1309 [ -f /usr/vice/etc/CellServDB.local ] || touch /usr/vice/etc/CellServDB.local
1310
1311 ( cd /usr/vice/etc ; \
1312   cat CellServDB.local CellServDB.dist > CellServDB ; \
1313   chmod 644 CellServDB )
1314
1315 echo
1316 echo The AFS cache is configured for 100 MB. Edit the
1317 echo /usr/vice/etc/cacheinfo file to change this before
1318 echo running AFS for the first time. You should also
1319 echo set your home cell in /usr/vice/etc/ThisCell.
1320 echo
1321 echo Also, you may want to edit /etc/pam.d/login and
1322 echo possibly others there to get an AFS token on login.
1323 echo Put the line:
1324 echo 
1325 echo    auth       sufficient   %{pamdir}/pam_afs.so try_first_pass ignore_root
1326 echo
1327 echo before the one for pwdb.
1328 echo
1329
1330 %post server
1331 chkconfig --add openafs-server
1332 %{initdir}/openafs-server condrestart
1333
1334 %if %{build_authlibs}
1335 %post authlibs
1336 /sbin/ldconfig
1337
1338 %postun authlibs
1339 /sbin/ldconfig
1340 %endif
1341
1342 %preun
1343 if [ $1 = 0 ] ; then
1344         [ -d /afs ] && rmdir /afs
1345 fi
1346
1347 %preun client
1348 if [ $1 = 0 ] ; then
1349         %{initdir}/openafs-client stop
1350         chkconfig --del openafs-client
1351 fi
1352
1353 %preun server
1354 if [ $1 = 0 ] ; then
1355         %{initdir}/openafs-server stop
1356         chkconfig --del openafs-server
1357 fi
1358
1359 %if %{build_dkmspkg}
1360 %post -n dkms-%{name}
1361 dkms add -m %{name} -v %{dkms_version} --rpm_safe_upgrade
1362 dkms build -m %{name} -v %{dkms_version} --rpm_safe_upgrade
1363 dkms install -m %{name} -v %{dkms_version} --rpm_safe_upgrade
1364
1365 %preun -n dkms-%{name}
1366 dkms remove -m %{name} -v %{dkms_version} --rpm_safe_upgrade --all ||:
1367 %endif
1368 %endif
1369
1370 %if %{build_modules}
1371 %if !%{fedorakmod}
1372 %if %{up_package}
1373 %post kernel
1374 /sbin/depmod -ae %{kernvers}
1375
1376 %postun kernel
1377 /sbin/depmod -ae %{kernvers}
1378
1379 %endif
1380
1381 %if %{smp_package}
1382 %post kernel-smp
1383 /sbin/depmod -ae %{kernvers}%{?smp_ext:%{smp_ext}}
1384
1385 %postun kernel-smp
1386 /sbin/depmod -ae %{kernvers}%{?smp_ext:%{smp_ext}}
1387 %endif
1388
1389 %if %{largesmp_package}
1390 %post kernel-largesmp
1391 /sbin/depmod -ae %{kernvers}%{?largesmp_ext:%{largesmp_ext}}
1392
1393 %postun kernel-largesmp
1394 /sbin/depmod -ae %{kernvers}%{?largesmp_ext:%{largesmp_ext}}
1395 %endif
1396  
1397 %if %{bigmem_package}
1398 %post kernel-bigmem
1399 /sbin/depmod -ae %{kernvers}%{?bigmem_ext:%{bigmem_ext}}
1400
1401 %postun kernel-bigmem
1402 /sbin/depmod -ae %{kernvers}%{?bigmem_ext:%{bigmem_ext}}
1403 %endif
1404
1405 %if %{hugemem_package}
1406 %post kernel-hugemem
1407 /sbin/depmod -ae %{kernvers}%{?hugemem_ext:%{hugemem_ext}}
1408
1409 %postun kernel-hugemem
1410 /sbin/depmod -ae %{kernvers}%{?hugemem_ext:%{hugemem_ext}}
1411 %endif
1412 %endif
1413 %endif
1414
1415 ##############################################################################
1416 ###
1417 ### file lists
1418 ###
1419 ##############################################################################
1420 %if %{build_userspace}
1421
1422 %files -f openafs-file-list
1423 %defattr(-,root,root)
1424 %config /etc/sysconfig/openafs
1425 %doc %{_docdir}/openafs-%{afsvers}/LICENSE
1426
1427 %files docs
1428 %defattr(-,root,root)
1429 %doc %{_docdir}/openafs-%{afsvers}
1430
1431 %files client
1432 %defattr(-,root,root)
1433 %dir %{_prefix}/vice
1434 %dir %{_prefix}/vice/cache
1435 %dir %{_prefix}/vice/etc
1436 %dir %{_prefix}/vice/etc/C
1437 %{_prefix}/vice/etc/CellServDB.dist
1438 %config %{_prefix}/vice/etc/ThisCell
1439 %config %{_prefix}/vice/etc/cacheinfo
1440 %{_bindir}/cmdebug
1441 %{_bindir}/up
1442 %{_prefix}/vice/etc/afsd
1443 %{_prefix}/vice/etc/C/afszcm.cat
1444 %{pamdir}/pam_afs.krb.so.1
1445 %{pamdir}/pam_afs.krb.so
1446 %{pamdir}/pam_afs.so.1
1447 %{pamdir}/pam_afs.so
1448 %{initdir}/openafs-client
1449 %{_mandir}/man1/cmdebug.*
1450 %{_mandir}/man1/copyauth.*
1451 %{_mandir}/man1/up.*
1452 %{_mandir}/man5/afs*
1453 %{_mandir}/man5/cacheinfo.*
1454 %{_mandir}/man8/afsd.*
1455 %{_mandir}/man8/rmtsysd.*
1456 %{_mandir}/man8/vsys.*
1457 %{_mandir}/man5/CellAlias.*
1458 %{_mandir}/man5/afszcm.cat.*
1459
1460 %files server
1461 %defattr(-,root,root)
1462 %dir %{_prefix}/afs
1463 %dir %{_prefix}/afs/bin
1464 %dir %{_prefix}/afs/etc
1465 %dir %{_prefix}/afs/logs
1466 %{_prefix}/afs/bin/bosserver
1467 %{_prefix}/afs/bin/bos_util
1468 %{_prefix}/afs/bin/buserver
1469 %{_prefix}/afs/bin/fileserver
1470 %{_prefix}/afs/bin/fssync-debug
1471 # Should we support KAServer?
1472 %{_prefix}/afs/bin/kaserver
1473 %{_prefix}/afs/bin/ka-forwarder
1474 %{_prefix}/afs/bin/pt_util
1475 %{_prefix}/afs/bin/ptserver
1476 %{_prefix}/afs/bin/salvager
1477 %{_prefix}/afs/bin/state_analyzer
1478 %{_prefix}/afs/bin/upclient
1479 %{_prefix}/afs/bin/upserver
1480 %{_prefix}/afs/bin/vlserver
1481 %{_prefix}/afs/bin/volinfo
1482 %{_prefix}/afs/bin/volserver
1483 %{_sbindir}/kadb_check
1484 %{_sbindir}/prdb_check
1485 %{_sbindir}/vldb_check
1486 %{_sbindir}/vldb_convert
1487 %{_sbindir}/voldump
1488 %{initdir}/openafs-server
1489 %{_mandir}/man5/AuthLog.*
1490 %{_mandir}/man5/BackupLog.*
1491 %{_mandir}/man5/BosConfig.*
1492 %{_mandir}/man5/BosLog.*
1493 %{_mandir}/man5/FORCESALVAGE.*
1494 %{_mandir}/man5/FileLog.*
1495 %{_mandir}/man5/KeyFile.*
1496 %{_mandir}/man5/NetInfo.*
1497 %{_mandir}/man5/NetRestrict.*
1498 %{_mandir}/man5/NoAuth.*
1499 %{_mandir}/man5/SALVAGE.fs.*
1500 %{_mandir}/man5/SalvageLog.*
1501 %{_mandir}/man5/sysid.*
1502 %{_mandir}/man5/UserList.*
1503 %{_mandir}/man5/VLLog.*
1504 %{_mandir}/man5/VolserLog.*
1505 %{_mandir}/man5/bdb.DB0.*
1506 %{_mandir}/man5/fms.log.*
1507 %{_mandir}/man5/kaserver.DB0.*
1508 %{_mandir}/man5/kaserverauxdb.*
1509 %{_mandir}/man5/krb.conf.*
1510 %{_mandir}/man5/prdb.DB0.*
1511 %{_mandir}/man5/salvage.lock.*
1512 %{_mandir}/man5/tapeconfig.*
1513 %{_mandir}/man5/vldb.DB0.*
1514 %{_mandir}/man8/buserver.*
1515 %{_mandir}/man8/fileserver.*
1516 %{_mandir}/man8/kadb_check.*
1517 %{_mandir}/man8/ka-forwarder.*
1518 %{_mandir}/man8/prdb_check.*
1519 %{_mandir}/man8/ptserver.*
1520 %{_mandir}/man8/pt_util.*
1521 %{_mandir}/man8/restorevol.*
1522 %{_mandir}/man8/salvager.*
1523 %{_mandir}/man8/salvageserver.*
1524 %{_mandir}/man8/upclient.*
1525 %{_mandir}/man8/upserver.*
1526 %{_mandir}/man8/vldb_check.*
1527 %{_mandir}/man8/vldb_convert.*
1528 %{_mandir}/man8/vlserver.*
1529 %{_mandir}/man8/voldump.*
1530 %{_mandir}/man8/volinfo.*
1531 %{_mandir}/man8/volserver.*
1532
1533 %if %{build_authlibs}
1534 %files authlibs
1535 %defattr(-,root,root)
1536 %{_libdir}/libafsauthent.so.*
1537 %{_libdir}/libafsrpc.so.*
1538 %endif
1539
1540 %files authlibs-devel
1541 %defattr(-,root,root)
1542 %{_libdir}/libafsauthent.a
1543 %{_libdir}/libafsrpc.a
1544 %{_libdir}/libafsauthent_pic.a
1545 %{_libdir}/libafsrpc_pic.a
1546 %if %{build_authlibs}
1547 %{_libdir}/libafsauthent.so
1548 %{_libdir}/libafsrpc.so
1549 %endif
1550
1551 %files devel
1552 %defattr(-,root,root)
1553 %{_bindir}/rxgen
1554 %{_includedir}/afs
1555 %{_includedir}/des.h
1556 %{_includedir}/des_conf.h
1557 %{_includedir}/des_odd.h
1558 %{_includedir}/des_prototypes.h
1559 %{_includedir}/lock.h
1560 %{_includedir}/lwp.h
1561 %{_includedir}/mit-cpyright.h
1562 %{_includedir}/potpourri.h
1563 %{_includedir}/preempt.h
1564 %{_includedir}/rx
1565 %{_includedir}/timer.h
1566 %{_includedir}/ubik.h
1567 %{_includedir}/ubik_int.h
1568 %{_libdir}/afs
1569 %{_libdir}/libdes.a
1570 %{_libdir}/liblwp.a
1571 %{_libdir}/librx.a
1572 %{_libdir}/librxkad.a
1573 %{_libdir}/librxstat.a
1574 %{_libdir}/libubik.a
1575 %{_mandir}/man1/rxgen.*
1576 %{_mandir}/man1/compile_et.*
1577
1578 %if %{build_dkmspkg}
1579 %files -n dkms-%{name}
1580 %defattr(-,root,root)
1581 %{_prefix}/src/%{name}-%{dkms_version}
1582 %endif
1583
1584 %files kernel-source
1585 %defattr(-,root,root)
1586 %{_prefix}/src/openafs-kernel-%{afsvers}/LICENSE.IBM
1587 %{_prefix}/src/openafs-kernel-%{afsvers}/LICENSE.Sun
1588 %{_prefix}/src/openafs-kernel-%{afsvers}/README
1589 %{_prefix}/src/openafs-kernel-%{afsvers}/src
1590
1591 %files compat
1592 %defattr(-,root,root)
1593 %{_prefix}/afsws
1594
1595 %files kpasswd
1596 %defattr(-,root,root)
1597 %{_bindir}/kpasswd
1598 %{_bindir}/kpwvalid
1599
1600 %if %{krb5support}
1601 %files krb5
1602 %defattr(-,root,root)
1603 %{_bindir}/aklog
1604 %{_bindir}/klog.krb5
1605 %{_sbindir}/asetkey
1606 %{_mandir}/man1/aklog.*
1607 %{_mandir}/man8/asetkey.*
1608 %endif
1609
1610 %endif
1611
1612 %if %{build_modules}
1613
1614 %if !%{fedorakmod}
1615 %if %{up_package}
1616 %files kernel
1617 %defattr(-,root,root)
1618 %{kxmoddir}/fs/openafs/openafs.*
1619 %endif
1620
1621 %if %{smp_package}
1622 %files kernel-smp
1623 %defattr(-,root,root)
1624 %{kxmoddir}%{?smp_ext:%{smp_ext}}/fs/openafs/openafs.*
1625 %endif
1626
1627 %if %{largesmp_package}
1628 %files kernel-largesmp
1629 %defattr(-,root,root)
1630 %{kxmoddir}%{?largesmp_ext:%{largesmp_ext}}/fs/openafs/openafs.*
1631 %endif
1632  
1633 %if %{bigmem_package}
1634 %files kernel-bigmem
1635 %defattr(-,root,root)
1636 %{kxmoddir}%{?bigmem_ext:%{bigmem_ext}}/fs/openafs/openafs.*
1637 %endif
1638
1639 %if %{hugemem_package}
1640 %files kernel-hugemem
1641 %defattr(-,root,root)
1642 %{kxmoddir}%{?hugemem_ext:%{hugemem_ext}}/fs/openafs/openafs.*
1643 %endif
1644 %endif
1645
1646 %endif
1647
1648 ##############################################################################
1649 ###
1650 ### openafs.spec change log
1651 ###
1652 ##############################################################################
1653 %changelog
1654 * Wed Dec 12 2007  Simon Wilkinson <simon@sxw.org.uk> 1.4.5
1655 - Make the RPM mockable
1656
1657 * Tue Oct 29 2007  Simon Wilkinson <simon@sxw.org.uk> 1.4.5
1658 - Update to match the shipped 1.4.5 RPMS
1659 - Fix the kvariant stuff to only configure the 'standard' case once
1660 - Add openafs-kvers.sh back in
1661
1662 * Wed Oct 10 2007  Simon Wilkinson <simon@sxw.org.uk> 1.4.5pre1-1
1663 - Use Fedora style kmods, which allows us to install multiple kernel types
1664
1665 * Thu Jun 07 2007  Simon Wilkinson <simon@sxw.org.uk> 1.4.4-3
1666 - Use distributed files, rather than those in packager's SOURCE directory
1667 - Remove SuidCells stuff, which was unused
1668
1669 * Fri Dec 01 2006  Derrick Brashear <shadow@dementia.org> 1.4.2-2
1670 - integrate s390x changes
1671 - allow for building libafs*.a and not libafs*.so into packages, for platforms
1672   that won't build the .so files.
1673
1674 * Wed Aug 23 2006  Derrick Brashear <shadow@dementia.org> 1.4.2-1
1675 - update to 1.4.2
1676 - use installed aklog manpage.
1677 - moduleparam patch obsoleted.
1678
1679 * Tue Aug 22 2006  Derek Atkins <warlord@MIT.EDU> 1.4.2-0.1.rc1
1680 - update to 1.4.2-rc1
1681 - hand-apply lee damon's changes to support largesmp kernels from RHEL4
1682   (but only add support for 2.6 kernels.  No need for the 2.4 kernels).
1683 - don't need the posixlock patch anymore.
1684
1685 * Wed Jul 12 2006  Derek Atkins <warlord@MIT.EDU> 1.4.2-0.beta2
1686 - update to 1.4.2-beta2
1687 - add linux2.4 posixlock API patch
1688
1689 * Mon Jun 26 2006  Derek Atkins <warlord@MIT.EDU>
1690 - moduleparam and krb524 patches no longer required in OA-CVS
1691
1692 * Wed May 17 2006  Derek Atkins <warlord@MIT.EDU>
1693 - change non-target-cpu kernel dep to a file dep
1694 - make sure we use the proper kernel version for the dependency.
1695
1696 * Tue May 16 2006  Derek Atkins <warlord@MIT.EDU>
1697 - allow users to specify local CellServDB and SuidCells entries
1698   don't overwrite user's changes.  Provide a .dist an let users
1699   make entries in a ".local"
1700 - build the CellServDB and SuidCells at client startup and at
1701   client install-time
1702 - add provideskernelarch functionality to openafs-kvers-is.sh
1703 - use that functionality to Require kernel{,-<type>}-targetcpu
1704   to get better package safety due to RPM bugs where the kernel
1705   release isn't used so you can install the kernel module against
1706   any kernel of the same major version.
1707
1708 * Mon May 15 2006  Derek Atkins <warlord@MIT.EDU>
1709 - update the README in openafs-kernel-source
1710 - fix openafs-kvers-is.sh from Alexander Bergolth's patch.
1711 - move kernel module from .../kernel/fs/openafs to .../fs/openafs/
1712
1713 * Fri Apr 21 2006  Derek Atkins <warlord@MIT.EDU>
1714 - build requires autoconf and automake for krb5support
1715   and autoconf for standard package
1716 - dont setup the krb5 migration kit (or patches) if we don't care.
1717 - require ncurses-devel to build
1718
1719 * Wed Apr 19 2006  Derek Atkins <warlord@MIT.EDU> 1.4.1-3
1720 - look for krb524 functions in libkrb524 if we can't find them
1721   in the standard locations.
1722
1723 * Tue Apr 18 2006  Derek Atkins <warlord@MIT.EDU> 1.4.1-2
1724 - fix the module_param_array macro for Linux 2.6.9.
1725
1726 * Sat Apr 15 2006  Derek Atkins <warlord@MIT.EDU> 1.4.1-1
1727 - update to 1.4.1 release.
1728 - distribute asetkey from openafs instead of krb5-migration kit
1729 - don't need to apply the FC5 patches because they are part of the distro.
1730 - install asetkey into the "proper" place
1731 - dont list a manpage twice.
1732 - package asetkey man page.  delete it when not needed.
1733
1734 * Thu Apr  6 2006  Derek Atkins <warlord@MIT.EDU>
1735 - turn authlibs back on, because RT #18767 was applied to CVS.
1736
1737 * Wed Mar 29 2006  Derek Atkins <warlord@MIT.EDU> 1.4.1rc10-1
1738 - update to 1.4.1rc10, build on FC5
1739 - fix the man pages (distribute into various packages)
1740 - include patches for FC5, RT #29112 and #29122
1741
1742 * Mon Dec 19 2005  Derek Atkins <warlord@MIT.EDU>
1743 - openafs-server shouldn't depend on the kernel module.
1744
1745 * Thu Nov 17 2005  Derek Atkins <warlord@MIT.EDU>
1746 - patch from Mike Polek <mike at pictage.com> to run depmod for
1747   the target kernel and not the running kernel.
1748
1749 * Tue Nov  8 2005  Derek Atkins <warlord@MIT.EDU>
1750 - build aklog from the openafs sources, not from the krb5 migration kit.
1751
1752 * Fri Nov  4 2005  Derek Atkins <warlord@MIT.EDU>
1753 - set openafs-kernel-source to Provide openafs-kernel
1754
1755 * Thu Oct 20 2005  Derek Atkins <warlord@MIT.EDU> 1.4.0-1
1756 - update afs-krb5 res_search patch: look for res_search and __res_search
1757 - update to 1.4.0 final
1758
1759 * Mon Oct 10 2005  Derek Atkins <warlord@MIT.EDU>
1760 - remove all kdump builds.
1761
1762 * Thu Oct  6 2005  Derek Atkins <warlord@MIT.EDU>
1763 - fix openafs-kernel-version.sh so it will build an RPM for the
1764   currently-running kernel even if it's smp on 2.6.
1765
1766 * Tue Sep 27 2005  Derek Atkins <warlord@MIT.EDU> 1.4.0rc5-1
1767 - upgrade to 1.4.0rc5
1768 - turn off authlibs packages
1769
1770 * Fri Sep 23 2005  Derek Atkins <warlord@MIT.EDU> 1.4.0rc4-2
1771 - add kmodule26 patch: fix the kernel module name on 2.6 kernels so
1772   it's called "openafs" and not "libafs".  This fixes the shutdown
1773   problem.
1774
1775 * Thu Sep 22 2005  Derek Atkins <warlord@MIT.EDU>
1776 - update kversis script, add 'kvers' operation
1777 - fix bug that 2.6 smp/hugemem kernels don't provide
1778   kernel-foo = %{kernvers} with 'smp', 'hugemem', etc.
1779 - add patch to remove res_search from the afs-krb5 configure
1780
1781 * Thu Sep 15 2005  Derek Atkins <warlord@MIT.EDU> 1.4.0rc4-1
1782 - Update to 1.4.0rc4
1783 - Update the afs-krb5 krb524 patch so it actually works on
1784   some older systems like RHEL3 that still need -lkrb524.
1785 - Update the buildall script so choose better architecture support,
1786   e.g. don't build i586 on RHEL.
1787 - Update the rebuild information in the SPEC file.
1788 - Add support for finding .EL kernels in openafs-kvers-is.sh
1789 - Add additional error messages when kernel version/type parsing fails.
1790 - Update the buildall script to use the kernel srcdir directly.
1791
1792 * Wed Sep 14 2005  Derek Atkins <warlord@MIT.EDU> 1.4.0rc3-2
1793 - Add "hugemem" to 2.4 configs
1794 - Add checks to support scripts to determine whether to build
1795   the bigmem and/or hugemem kernels for 2.4.
1796
1797 * Mon Sep 12 2005  Derek Atkins <warlord@MIT.EDU> 1.4.0rc3-1
1798 - Added some afs-krb5 patches to get the migration kit to build
1799   on modern AFS and modern Kerberos.
1800 - Added authlibs and authlibs-devel packages as per UMich changes.
1801
1802 * Sun Sep 11 2005  Derek Atkins <warlord@MIT.EDU>
1803 - Merged in some of the 2.6 changes from wingc@engin.umich.edu
1804
1805 * Sat Sep 10 2005  Derek Atkins <warlord@MIT.EDU>
1806 - Merged in lots of changes from David Howells and Nalin Dahyabhai
1807   from Red Hat.   Initial attempt at a release of 1.4.  Still need
1808   to work in a 2.6 build system.