idmap: Fix typos in comments.
[Samba/gebeck_regimport.git] / packaging / RHEL-CTDB / makerpms.sh
bloba9d49bc2a4ad4238c9de97d9e6990ba75b152a09
1 #!/bin/sh
2 # Copyright (C) John H Terpstra 1998-2002
3 # Gerald (Jerry) Carter 2003
5 # The following allows environment variables to override the target directories
6 # the alternative is to have a file in your home directory calles .rpmmacros
7 # containing the following:
8 # %_topdir /home/mylogin/redhat
10 # Note: Under this directory rpm expects to find the same directories that are under the
11 # /usr/src/redhat directory
14 # set DOCS_TARBALL to the path to a docs release tarball in .tar.bz2 format
16 # extra options passed to rpmbuild
17 EXTRA_OPTIONS="$1"
19 SPECDIR=`rpm --eval %_specdir`
20 SRCDIR=`rpm --eval %_sourcedir`
22 # At this point the SPECDIR and SRCDIR variables must have a value!
24 VERSION='3.2.0'
25 REVISION='ctdb'
26 SPECFILE="samba.spec"
27 DOCS="docs.tar.bz2"
28 RPMVER=`rpm --version | awk '{print $3}'`
29 RPM="rpmbuild"
32 ## Check the RPM version (paranoid)
34 case $RPMVER in
35 4*)
36 echo "Supported RPM version [$RPMVER]"
39 echo "Unknown RPM version: `rpm --version`"
40 exit 1
42 esac
44 DIRNAME=$(dirname $0)
46 pushd ${DIRNAME}/../..
47 echo -n "Creating samba-${VERSION}.tar.bz2 ... "
48 git archive --prefix=samba-${VERSION}/ HEAD | bzip2 > ${SRCDIR}/samba-${VERSION}.tar.bz2
49 RC=$?
50 popd
51 echo "Done."
52 if [ $RC -ne 0 ]; then
53 echo "Build failed!"
54 exit 1
59 ## copy additional source files
61 if [ "x${DOCS_TARBALL}" != "x" ] && [ -f ${DOCS_TARBALL} ]; then
62 cp ${DOCS_TARBALL} ${SRCDIR}/${DOCS}
65 pushd ${DIRNAME}
67 chmod 755 setup/filter-requires-samba.sh
68 tar --exclude=.svn -jcvf - setup > ${SRCDIR}/setup.tar.bz2
70 cp -p ${SPECFILE} ${SPECDIR}
72 popd
75 ## Build
77 echo "$(basename $0): Getting Ready to build release package"
78 pushd ${SPECDIR}
79 ${RPM} -ba $EXTRA_OPTIONS $SPECFILE
80 [ `arch` = "x86_64" ] && {
81 echo "Building 32 bit winbind libs"
82 # hi ho, a hacking we will go ...
83 ln -sf /lib/libcom_err.so.2 /lib/libcom_err.so
84 ln -sf /lib/libuuid.so.1 /lib/libuuid.so
85 ${RPM} -ba --rebuild --target=i386 $SPECFILE
88 popd
90 echo "$(basename $0): Done."