]> andersk Git - gssapi-openssh.git/blobdiff - openssh/make_gpt_dist
update ftp url for 3.1 release
[gssapi-openssh.git] / openssh / make_gpt_dist
index 8de1ee624d2c8b99d493f2abcfcf784c53dc876a..9e7d27fbbd15d50a91e0df9d84a5234925b0b18d 100755 (executable)
@@ -1,24 +1,22 @@
 #!/usr/bin/env perl
-
-$srcdirname = "gpt-gsi-openssh";
+#
+# make_gpt_dist - adapted from GPT's make_gpt_dist script
+#
+# Create a GPT source package after deriving the necessary build files.
+#
 
 #
-# uncomment when we're more mature
+# You can define the source directory and package names to suit your needs.  It's
+# important to remember that GPT needs the source package name to be similar to
+# the name of the package as defined in the package metadata (pkg_data_src.gpt).
 #
-#for my $subdir ('packaging_tools', 'package_management', 'archive_compress') {
-#  chdir "$subdir" or die "Unable to cd to $subdir: $?";
-#  if(-e "config.cache")
-#    {
-#      #config.cache is tested for because it is generated when ./configure is executed
-#      #if config.cache is present, then a make distclean must be performed in order
-#      #to remove the cache.  if a make distclean is run and config.cache is not 
-#      #present, then this script will recieve a zero from the system and error.
-#      
-#      system("make distclean");
-#    }
+# Failing to do this correctly will not affect bundle-creation, but will affect
+# globus-build's ability to select and untar the correct package corresponding
+# to the name gpt-bundle gives in its 'packaging_list'.
 #
-#  chdir ".."  or die "Unable to cd to packaging: $?";
-#}
+
+$srcdirname = "gsi_openssh-3.1-src";
+$srcpkgname = "gsi_openssh-3.1-src";
 
 #
 # uncomment when we've got a better place to get the current version from
@@ -36,7 +34,9 @@ $srcdirname = "gpt-gsi-openssh";
 #}
 
 #
-# test to make sure we're okay to create/use the $srcdirname directories.
+# test to make sure we're okay to
+#   o create/use the $srcdirname directories
+#   o create the source package
 #
 
 if ( (!defined($srcdirname)) || length($srcdirname) le 0 )
@@ -45,15 +45,33 @@ if ( (!defined($srcdirname)) || length($srcdirname) le 0 )
     die;
 }
 
+if ( (!defined($srcpkgname)) || length($srcpkgname) le 0 )
+{
+    printf("\$srcpkgname must be defined to a usable value!\n");
+    die;
+}
+
 if ( -e "../$srcdirname" )
 {
-    printf("found '$srcdirname' in parent directory... please remove before continuing\n");
+    printf("found existing '../$srcdirname'... please remove before continuing\n");
     die;
 }
 
 if ( -e "./$srcdirname" )
 {
-    printf("found '$srcdirname' in current directory... please remove before continuing\n");
+    printf("found existing './$srcdirname'... please remove before continuing\n");
+    die;
+}
+
+if ( -e "./$srcpkgname.tar" )
+{
+    printf("found existing './$srcpkgname.tar'... please remove before continuing\n");
+    die;
+}
+
+if ( -e "./$srcpkgname.tar.gz" )
+{
+    printf("found existing './$srcpkgname.tar.gz'... please remove before continuing\n");
     die;
 }
 
@@ -75,18 +93,24 @@ chdir("./$srcdirname");
 
 printf("pruning source directory of extraneous files...\n");
 system("rm -rf `find . -name CVS -print`")==0 or die "Unable to remove cvs directories: $?";
-system("rm -f ./make_gpt_dist")==0 or die "Unable to remove gpt script: $?";
-system("rm -rf ./gpt")==0 or die "Unable to remove gpt directory: $?";
 
 #
-# run the standard development tools to get the necessary derived files.
+# Originally, we were going to include the MD5 sums in the Announcement 
+# file.  Among other virtues, this complicated the process of distributing 
+# the Announcement to users since it would get included in the package 
+# itself.  We decided to keep the announcement in the package, and got 
+# around the Catch-22 by not including MD5 sums in that file.
+#
+# So, keep this line commented!:
+# system("rm -f Announcement.txt")==0 or die "Unable to remove Announcement.txt: $?";
 #
 
-printf("running autoheader...\n");
-system("autoheader")==0 or die "Could not run autoheader: $?";
+#
+# run the standard development tools to get the necessary derived files.
+#
 
-printf("running autoconf...\n");
-system("autoconf")==0 or die "Could not run autoheader: $?";
+printf("running make distprep...\n");
+system("make -f Makefile.in distprep")==0 or die "Could not run make distprep: $?";
 
 chdir("../");
 
@@ -94,9 +118,9 @@ chdir("../");
 # create the source package from the source directory.
 #
 
-printf("creating source tarball 'gsi-openssh.tar.gz'...\n");
-system("tar -cf gsi-openssh.tar ./$srcdirname")==0 or die "Unable to create gsi-openssh.tar: $?";
-system("gzip -f gsi-openssh.tar")==0 or die "Unable to gzip gsi-openssh.tar: $?";
+printf("creating source tarball '$srcpkgname.tar.gz'...\n");
+system("tar -cf ./$srcpkgname.tar ./$srcdirname")==0 or die "Unable to create $srcpkgname.tar: $?";
+system("gzip -f ./$srcpkgname.tar")==0 or die "Unable to gzip $srcpkgname.tar: $?";
 
 printf("cleaning up after myself...\n");
 system("rm -rf ./$srcdirname")==0 or die "Unable to remove ./$srcdirname: $?";
This page took 0.228345 seconds and 4 git commands to generate.