Add the NEWS file to the .spec instead of the ChangeLog
[synfig.git] / synfig-studio / trunk / bootstrap
index fe60751..f3fe2d7 100755 (executable)
@@ -1,6 +1,6 @@
 #! /bin/sh
 #
-# Sinfg Studio Bootstrap Script
+# Synfig Studio Bootstrap Script
 # $Id: bootstrap,v 1.2 2005/01/10 08:13:44 darco Exp $
 # 
 # This script creates the configure script and Makefile.in files,
@@ -24,6 +24,7 @@ s/@PACKAGE_NAME@/$PACKAGE_NAME/g;
 s/@PACKAGE_BUGREPORT@/$PACKAGE_BUGREPORT/g;
 s/@PACKAGE_TARNAME@/$PACKAGE_TARNAME/g;
 s/@PACKAGE_VERSION@/$PACKAGE_VERSION/g;
+s|@SVN_REPOSITORY@|$SVN_REPOSITORY|g;
 s/@VERSION@/$VERSION/g;
 s/@VERSION_MAJ@/$VERSION_MAJ/g;
 s/@VERSION_MIN@/$VERSION_MIN/g;
@@ -61,7 +62,7 @@ output Prepairing build environment for $PACKAGE-$VERSION...
 
 # Look for the CVS directory. If we don't find it, we need to
 # ask the user if they know what they are doing.
-test -d CVS ||
+( test -d CVS || test -d .svn ) ||
 {
        echo "
 $BOOTSTRAP_NAME: warning: This shell script is intended for those
@@ -144,12 +145,12 @@ output Creating $FILENAME...
 sed "$SED_SCRIPT" < $CONFIG_DIR/$FILENAME.in > $FILENAME;
 } ; done
 
-output Renaming project.spec to $PACKAGE-$VERSION.spec...
-mv project.spec "$PACKAGE-$VERSION.spec"
+output Renaming project.spec to $PACKAGE.spec...
+mv project.spec "$PACKAGE.spec"
 
-output Finishing up $PACKAGE-$VERSION.spec...
-echo %changelog >> "$PACKAGE-$VERSION.spec"
-cat ChangeLog >> "$PACKAGE-$VERSION.spec"
+output Finishing up $PACKAGE.spec...
+echo %changelog >> "$PACKAGE.spec"
+cat NEWS >> "$PACKAGE.spec"
 
 output Creating configure.in from configure.ac...
 sed "$SED_SCRIPT" < $CONFIG_DIR/configure.ac > configure.in;
@@ -185,7 +186,7 @@ set +x
 #sed "
 #s/g++ c++/g++3 g++ c++/;
 #s/gcc cc/gcc3 gcc cc/;
-#s:"'${prefix}/include'":"'${prefix}/include/sinfg'":;
+#s:"'${prefix}/include'":"'${prefix}/include/synfig'":;
 #s:PREFIX/include:PREFIX/include/ETL:;
 #" < configure > $TEMPFILE
 #cp $TEMPFILE configure
@@ -230,6 +231,18 @@ distcheck:
 dist:
        ./configure --enable-maintainer-mode
        make dist
+
+TAG=${PACKAGE_TARNAME}_${VERSION_MAJ}_${VERSION_MIN}_${VERSION_REV}
+
+tagstable:
+       -svn delete $SVN_REPOSITORY/tags/stable -m \"Stabe Tag: Removing old tag\"
+       svn mkdir $SVN_REPOSITORY/tags/stable -m \"Stable Tag: Creating new directory\"
+       svn copy . $SVN_REPOSITORY/tags/stable -m \"Stable Tag: Copying everyhting over\"
+
+tagrelease:
+       svn mkdir $SVN_REPOSITORY/tags/\$(TAG) -m \"Release Tag: Making directory\"
+       svn copy . $SVN_REPOSITORY/tags/\$(TAG) -m \"Release \$(TAG)\"
+
 " ) > Makefile
 
 echo $BOOTSTRAP_NAME: Complete.