This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[sfrench/samba-autobuild/.git] / packaging / RedHat / makerpms.sh.tmpl
1 #!/bin/sh
2 # Copyright (C) John H Terpstra 1998-2002
3 # Updated for RPM 3 by Jochen Wiedmann, joe@ispsoft.de
4 # Changed for a generic tar file rebuild by abartlet@pcug.org.au
5 # Changed by John H Terpstra to build on RH7.2 - should also work for earlier versions jht@samba.org
6
7 # The following allows environment variables to override the target directories
8 #   the alternative is to have a file in your home directory calles .rpmmacros
9 #   containing the following:
10 #   %_topdir  /home/mylogin/redhat
11 #
12 # Note: Under this directory rpm expects to find the same directories that are under the
13 #   /usr/src/redhat directory
14 #
15 if [ -r ~/.rpmmacros ]; then
16         TOPDIR=`awk '/topdir/ {print $2}' < ~/.rpmmacros`
17         if [ z$TOPDIR != "z" ]; then
18                 SPECDIR=${TOPDIR}/SPECS
19                 SRCDIR=${TOPDIR}/SOURCES
20         fi
21 fi
22
23 SPECDIR=${SPECDIR:-/usr/src/redhat/SPECS}
24 SRCDIR=${SRCDIR:-/usr/src/redhat/SOURCES}
25
26 # At this point the SPECDIR and SRCDIR vaiables must have a value!
27
28 USERID=`id -u`
29 GRPID=`id -g`
30 VERSION='PVERSION'
31
32 RPMVER=`rpm --version | awk '{print $3}'`
33 RPM="rpm"
34 echo The RPM Version on this machine is: $RPMVER
35
36 case $RPMVER in
37     2*)
38        echo Building for RPM v2.x
39        sed -e "s/MANDIR_MACRO/\%\{prefix\}\/man/g" < samba2.spec > samba.spec
40        ;;
41     3*)
42        echo Building for RPM v3.x
43        sed -e "s/MANDIR_MACRO/\%\{prefix\}\/man/g" < samba2.spec > samba.spec
44        ;;
45     4.1*)
46        echo Building for RPM v4.1
47        RPM="rpmbuild"
48        sed -e "s/MANDIR_MACRO/\%\{_mandir\}/g" < samba2.spec > samba.spec
49        ;;
50     4*)
51        echo Building for RPM v4.x
52        sed -e "s/MANDIR_MACRO/\%\{_mandir\}/g" < samba2.spec > samba.spec
53        ;;
54     *)
55        echo "Unknown RPM version: `rpm --version`"
56        exit 1
57        ;;
58 esac
59
60 ( cd ../../source; if [ -f Makefile ]; then make distclean; fi )
61 ( cd ../../.. ; chown -R ${USERID}.${GRPID} samba-${VERSION} )
62
63 ( cd ../../.. ; tar --exclude=CVS -cf - samba-${VERSION}/. | bzip2 > ${SRCDIR}/samba-${VERSION}.tar.bz2 )
64
65 cp -av samba.spec ${SPECDIR}
66
67 echo Getting Ready to build release package
68 cd ${SPECDIR}
69 ${RPM} -ba -v --clean --rmsource samba.spec
70
71 echo Done.
72