[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-user: trying to build latest geda
- To: geda-user@xxxxxxxx
- Subject: gEDA-user: trying to build latest geda
- From: David Logan <djlogan2@xxxxxxxxxxx>
- Date: Thu, 17 Mar 2005 08:46:24 -0700
- Delivered-to: archiver@seul.org
- Delivered-to: geda-user-outgoing@seul.org
- Delivered-to: geda-user@seul.org
- Delivery-date: Thu, 17 Mar 2005 10:47:31 -0500
- Reply-to: geda-user@xxxxxxxx
- Sender: owner-geda-user@xxxxxxxx
- User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7b) Gecko/20040316
What am I doing wrong? I have this script:
-----------------------------------------------------------------------
export CVSROOT=:pserver:anoncvs@xxxxxxxxxxxx:/home/cvspsrv/cvsroot
cd /usr/src
D=`date +%m.%d.%y`
BASEDIR="/usr/src/geda.$D"
DIR="$BASEDIR"
L=0
while [ -e $DIR ]; do
DIR="$BASEDIR.$L";
L=$(($L+1));
done
mkdir $DIR
cd $DIR
cvs co geda/devel
cd $DIR/geda/devel
sed 's#$(HOME)/geda#/usr/local/geda#g' < Makefile > Makefile.new
mv Makefile Makefile.old
mv Makefile.new Makefile
export LD_LIBRARY_PATH=/usr/local/geda/lib:$LD_LIBRARY_PATH
export PATH=/usr/local/geda/bin:${PATH}
export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/local/geda/lib/pkgconfig
make install
-----------------------------------------------------------------------
Which, when I run, generates this error:
checking for IceConnectionNumber in -lICE... yes
checking if hardcoding of the X11 runtime library path is desired... no
checking for pkg-config... /usr/local/bin/pkg-config
checking for gtk+-2.0 >= 2.2.0... yes
checking GTK22_CFLAGS... -I/usr/include/gtk-2.0
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0
-I/usr/include/pango-1.0 -I/usr/X11R6/include -I/usr/include/freetype2
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
checking GTK22_LIBS... -Wl,--export-dynamic -lgtk-x11-2.0 -lgdk-x11-2.0
-latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0
-lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
checking for glib-2.0 >= 2.2.0... yes
checking GLIB22_CFLAGS... -I/usr/include/glib-2.0
-I/usr/lib/glib-2.0/include
checking GLIB22_LIBS... -lglib-2.0
checking for libgeda >= 20050313... Package libgeda was not found in the
pkg-config search path.
Perhaps you should add the directory containing `libgeda.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libgeda' found
configure: error: Cannot find libgeda (or libgeda.pc), please install
libgeda
make: *** [gschem/config.h] Error 1
[root@server src]#
Thanks!
David Logan