Re: Building ab initio



On Mon, Jun 22, 1998 at 07:33:20PM -0600, Nathan Torkington wrote:
Nat> Here's what I've installed (in the order I installed them):
Nat> 
Nat>  - autoconf-2.12
Nat>  - automake-1.3
Nat>  - gettext-0.10
Nat>  - gmp-2.0.2
Nat>  - gsl-0.3b
Nat>  - guile-1.2
Nat>  - imlib-1.4

You should probably use imlib-SNAP-980622...

Nat>  - libtool-1.0h
Nat>  - glib-SNAP-980622
Nat>  - gtk+-SNAP-980622

... and you should compile it here to get gdk_imlib too.

Nat>  - mico-SNAP-980622 
Nat>    (I had to comment out line 1404 of idl/scanner.cc to get it
Nat>    to compile.  I'm running GNU Bison 1.25)
Nat>  - FreeBSD package netpbm-94.3.1
Nat>  - FreeBSD package jpeg-6a
Nat>  - FreeBSD package tiff-3.4
Nat>  - FreeBSD package png-1.0.1

You also need (and maybe already have) libgif-3 or libungif-3 and libz-1.1.2.

Nat> Now my questions:
Nat> 
Nat> 1) FTP Site

Pass.

Nat> 2) Web Site
Nat> 
Nat> The FAQ and other sources say to get the files through anon CVS, which
Nat> no longer works.  There's nothing on the web site that says "hey,
Nat> dumbass, we turned anon CVS off.  Surprise!"

It has been down temporarily for some weeks now ude to "unprecedented
demand" =)O|

Nat> 3) Building Problem
Nat> 
Nat> What am I missing?

>From anon-cvs this is done with some cvs module checkout magic.  To use the
ftp.jimpick.com sources, you need to do these insertions by hand:

Copy, or clone some or all of support, intl and macro directories from the
gnome-common tarball into each of the snapshot toplevels before you compile.

I use the attached script like this:
  $ ftpget ftp.jimpick.com pub/gnome/snap/gnome-common/gnome-common-SNAP-blah
  $ tar zxpf gnome-common-SNAP-blah
  $ ftpget ftp.jimpick.com pub/gnome/snap/gnome-libs/gnome-libs-SNAP-blah
  $ tar zxpf gnome-libs-SNAP-blah
  $ cd gnome-libs
  $ find ../gnome-common -type d -print | xargs ../clone
  $ ./configure && make
  
Cheers,
	Gary.
-- 
  ___              _   ___   __              _             
 / __|__ _ _ ___ _| | / / | / /_ _ _  _ __ _| |_  __ _ ___ 
| (_ / _` | '_|// / |/ /| |/ / _` | || / _` | ' \/ _` | _ \
 \___\__,_|_|\_, /|___(_)___/\__,_|\_,_\__, |_||_\__,_|//_/
PGP Key from/___/                      /___/               
http://www.cl.cam.ac.uk/PGP/pks-commands.html#extract      
http://pgp.ai.mit.edu/~bal/pks-commands.html#extract       
#! /bin/sh

for dir in "$@"; do

    dir=`(cd $dir; pwd)`
    
    # make directories
    for file in `find $dir -type d`; do
        base=`echo $dir | sed 's,.*/,,'``echo $file | sed s,$dir,,`
        test -d $base || mkdir $base
    done

    # link files
    for file in `find $dir -type f`; do
        base=`echo $dir | sed 's,.*/,,'``echo $file | sed s,$dir,,`
        if test ! -f $base; then 
			rm -f $base
            ln -s $file $base
        fi
    done

done

PGP signature



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