From owner-freebsd-amd64@FreeBSD.ORG Fri Sep 2 18:54:17 2005 Return-Path: X-Original-To: freebsd-amd64@freebsd.org Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77F5716A41F for ; Fri, 2 Sep 2005 18:54:17 +0000 (GMT) (envelope-from notesoncircumscribingthesky@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED18D43D45 for ; Fri, 2 Sep 2005 18:54:16 +0000 (GMT) (envelope-from notesoncircumscribingthesky@gmail.com) Received: by wproxy.gmail.com with SMTP id i23so112414wra for ; Fri, 02 Sep 2005 11:54:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:user-agent:x-accept-language:mime-version:to:subject:content-type:content-transfer-encoding:from; b=fB6WxAcTwB/2xZ639sNGfbEW6SKaWwCuCIZVsq5HovxERRFdZrdNPoyb8dTN2Gl9zGj7U3dIpcVBPi+7ZeRz+NuLdASYNHwD5ppG0oft4N67ux5wRhIZcDi5Rt1j08RvquzzIvSrH8AJE4ruBANF7HqwMY7O2tDFSchnJz82fW8= Received: by 10.54.38.51 with SMTP id l51mr2282180wrl; Fri, 02 Sep 2005 11:54:15 -0700 (PDT) Received: from ?192.168.1.3? ( [81.151.237.57]) by mx.gmail.com with ESMTP id 65sm2002834wra.2005.09.02.11.54.14; Fri, 02 Sep 2005 11:54:15 -0700 (PDT) Message-ID: <43189F52.6010403@imperial.ac.uk> Date: Fri, 02 Sep 2005 19:52:02 +0100 User-Agent: Mozilla Thunderbird 1.0.6 (X11/20050902) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-amd64@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: Otis Driftwood Subject: e17 X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 18:54:17 -0000 has anyone by any chance got e17 cvs working? The scripts I'm using are: *updating the source:* #/bin/sh export WANT_AUTOMAKE=1.7 export WANT_AUTOCONF=2.5 build="e17/libs/eet e17/libs/imlib2 e17/libs/edb e17/libs/evas e17/libs/ecore e17/libs/epeg e17/libs/embryo e17/libs/edje e17/libs/epsilon e17/libs/esmart e17/libs/etox e17/libs/ewl e17/libs/emotion e17/apps/entrance e17/apps/e e17/apps/eclair e17/apps/e_utils e17/apps/e_modules e17/libs/engrave e17/apps/entice e17/apps/elicit misc/engage misc/erss" cd $HOME/bin/build/cvs/e17 cvs -d:pserver:anonymous@cvs.sf.net:/cvsroot/enlightenment login cvs -z3 -d:pserver:anonymous@cvs.sf.net:/cvsroot/enlightenment co $build * * *compiling *#/usr/local/bin/bash build=" e17/libs/eet e17/libs/imlib2 e17/libs/edb e17/libs/evas e17/libs/ecore e17/libs/epeg e17/libs/embryo e17/libs/edje e17/libs/epsilon e17/libs/esmart e17/libs/etox e17/libs/ewl e17/libs/emotion e17/apps/entrance e17/apps/e e17/apps/eclair e17/apps/e_utils e17/apps/e_modules e17/libs/engrave e17/apps/entice e17/apps/elicit misc/engage misc/erss" for i in $build do export CFLAGS="-I/home/hope/bin/build/cvs/e17/$i/include -I/usr/X11R6/include" export LDFLAGS="-L/home/hope/bin/build/cvs/e17/$i/lib -I/usr/X11R6/lib" * installing*: #!/usr/local/bin/bash build=" e17/libs/eet e17/libs/imlib2 e17/libs/edb e17/libs/evas e17/libs/ecore e17/libs/epeg e17/libs/embryo e17/libs/edje e17/libs/epsilon e17/libs/esmart e17/libs/etox e17/libs/ewl e17/libs/emotion e17/apps/entrance e17/apps/e e17/apps/eclair e17/apps/e_utils e17/apps/e_modules e17/libs/engrave e17/apps/entice e17/apps/elicit misc/engage misc/erss" su for i in $build do echo "#### INSTALLING $i ####" make install make clean done I'd be extremely grateful, most of them are telling me that: 1. They cannot find sed (should i symlinj it to the expected place?) 2. This: checking for correct ltmain.sh version... grep: ./ltmain.sh: No such file or directory no *** Gentoo sanity check failed! *** *** libtool.m4 and ltmain.sh have a version mismatch! *** *** (libtool.m4 = 1.5.18, ltmain.sh = ) *** Please run: libtoolize --copy --force if appropriate, please contact the maintainer of this package (or your distribution) for help. I don't understand why its asking for Gentoo stuff though... 3 checking for zlib.h... yes checking jpeglib.h usability... no checking jpeglib.h presence... no checking for jpeglib.h... no configure: error: "Cannot find jpeglib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file" Any help? Cheers guys