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

gEDA-user: trying to build latest geda



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