]> git.sur5r.net Git - openldap/blobdiff - build/mkrelease
Fix bei_state access
[openldap] / build / mkrelease
index 06c7f67832b5cd0f4561ca0e24931ae0fe46aeaf..1d7c3161ae06cc8ee67857ee88de02394950a15f 100755 (executable)
@@ -1,8 +1,17 @@
 #! /bin/sh
 # $OpenLDAP$
-## Copyright 1998-2003 The OpenLDAP Foundation
-## COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
-## of this package for details.
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2008 The OpenLDAP Foundation.
+## All rights reserved.
+##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
 #
 # Make a release
 #      mkrelease RELNAME CVSTAG CVSMODULES
@@ -35,23 +44,34 @@ echo Release: $RELNAME
 echo CVS Tag: $CVSTAG
 echo Modules: $*
 
-cvs -q export -r $CVSTAG -d $RELNAME $*
+cvs -q export -kkv -r $CVSTAG -d $RELNAME $*
 
 if test ! -d $RELNAME ; then
        echo "error: $RELNAME doesn't exists"
        exit 1
 fi
 
+if test -e $RELNAME/doc/guide/admin/guide.sdf ; then
+       echo "build guide..."
+       ( cd $RELNAME/doc/guide/admin ; make guide.html )
+else
+       echo "No guide"
+fi
+
 if test ! -e $RELNAME/build/version.sh ; then
        echo "No build version"
-       exit 1
+       OL_STRING="something"
+else
+       eval `$RELNAME/build/version.sh`
 fi
 
-eval `$RELNAME/build/version.sh`
+echo "Rolling up $OL_STRING ..."
+
 
 tar cf $RELNAME.tar $RELNAME
 gzip -9 -c $RELNAME.tar > $RELNAME.tgz
 md5 $RELNAME.tgz > $RELNAME.md5
+sha1 $RELNAME.tgz > $RELNAME.sha1
 rm -f $RELNAME.tar
 
 ls -l $RELNAME.*