help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Decoding error message


From: Sergei Steshenko
Subject: Re: Decoding error message
Date: Fri, 11 Jul 2008 04:35:31 -0700 (PDT)



--- On Fri, 7/11/08, asha g <address@hidden> wrote:

> From: asha g <address@hidden>
> Subject: Re: Decoding error message
> To: address@hidden
> Cc: address@hidden
> Date: Friday, July 11, 2008, 3:32 AM
> There is no configure file in the link below. Can you send
> one with that ?
> Thanks
> Asha 
> 
> >
> http://gnuplot.sourceforge.net/development/binaries/gnuplot-4.3.0-2008-06-03.tar.gz
> > .
> >

There are instructions how to generate 'configure' script.

Rather, there 'prepare' script in the tarball.

You can also see below the piece of AppsFromScratch responsible for
this snapshot, including 'configure' arguments I'm using - look for
'configure_args'

Regards,
  Sergei.

      gnuplot_snapshot =>
        do{
          my $major_ver = '4';
          my $minor_ver = '3';
          my $micro_ver = '0-2008-06-03';

          $shadow_targets_hash_refs{gnuplot_snapshot} =
            {
            major_ver => $major_ver,
            minor_ver => $minor_ver,
            micro_ver => $micro_ver,

            base_urls => 
['http://gnuplot.sourceforge.net/development/binaries'],

            target_basename => 'gnuplot',
            tarball_extension => 'tar.gz',

            pre_configure_sub =>
              sub
                {
                my %this_sub_args = @_;

                my $cmdline_args_hash_ref = 
$this_sub_args{cmdline_args_hash_ref};

                my $wrong_dir = 
"${$cmdline_args_hash_ref}{build_prefix}/gnuplot";

                my $target_build_dir = $this_sub_args{target_build_dir};

                unless(rename($wrong_dir => $target_build_dir))
                  {
                  warn "$error_marker could not rename $wrong_dir => 
$this_sub_args{target_build_dir}\n";
                  return 1;
                  }

                if(
                  &{$system_wrapper_sub}
                    (
                    $info_marker,
                    "PATH='$this_sub_args{PATH}';export PATH;\\cd 
$target_build_dir; ./prepare"
                    ) != 0
                  )
                  {
                  warn "$error_marker problems while executing command, see 
messages above\n";
                  return 1;
                  }

                0;
                },

            #configure_args => '--with-lasergnu --with-x --with-readline=gnu 
--with-ggi=$shadow_targets_hash_refs{libggi}{install_prefix}',
            configure_args => '--with-lasergnu --with-x --with-readline=gnu 
--enable-thin-splines',

            depends_on =>
              {
              targets =>
                {
                automake => $shadow_targets_hash_refs{automake},
                readline => $shadow_targets_hash_refs{readline},
                wxGTK => $shadow_targets_hash_refs{wxGTK},
                #libggiwmh => $shadow_targets_hash_refs{libggiwmh},
                gd => $shadow_targets_hash_refs{gd}
                }
              },

            make_targets =>
              [
              '',
              'install'
              ]
            }
          }, # do
             # gnuplot_snapshot




      


reply via email to

[Prev in Thread] Current Thread [Next in Thread]