mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Updated
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11432 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b7fc7c9e1d
commit
8293fd7529
2 changed files with 156 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-11-19 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Documentation/REAMDE.NetBSD: Update from jnqt@fbe.freeserve.ne.jp.
|
||||
|
||||
2001-11-11 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Version: 1.2.0
|
||||
|
|
|
@ -1,3 +1,155 @@
|
|||
Installing "GNUstep" on NetBSD
|
||||
(C) 1999-2001 JNQT jnqt@fbe.freeserve.ne.jp
|
||||
|
||||
I have installed GNUstep on NetBSD/i386 1.5.2. I will not be
|
||||
responsible for any damage implicitly or explicitly caused by this
|
||||
information. Use at your own risk. Please submit any comments or
|
||||
suggestions to jnqt@fbe.freeserve.ne.jp. For more information about
|
||||
installation, check out this "HOWTO" document:
|
||||
(http://hp.vector.co.jp/authors/VA019253/step/inst.html)
|
||||
|
||||
Good Luck! :-)
|
||||
|
||||
//
|
||||
// Install GNUstep
|
||||
//
|
||||
|
||||
|
||||
su root
|
||||
|
||||
|
||||
[Add /etc/ld.so.conf]
|
||||
/usr/local/lib
|
||||
/usr/X11R6/lib
|
||||
|
||||
|
||||
ldconfig
|
||||
|
||||
|
||||
[Use the NetBSD packages collection...Install `/usr/local']
|
||||
gcc-2.95.2
|
||||
gmake-3.79.1
|
||||
libiconv-1.6.1
|
||||
libxml2-2.4.6
|
||||
tiff-3.5.5
|
||||
|
||||
|
||||
rehash
|
||||
|
||||
|
||||
alias gmake gmake CC=/usr/local/gcc-2.95.2/bin/cc CPP=/usr/local/gcc-2.95.2/bin/cpp
|
||||
|
||||
|
||||
tar zxvf ffcall-1.8b.tar.gz
|
||||
cd ffcall-1.8b
|
||||
./configure --prefix=/usr
|
||||
gmake
|
||||
gmake check
|
||||
gmake install
|
||||
|
||||
|
||||
tar zxvf gnustep-make-1.0.0.tar.gz
|
||||
cd gnustep-make-1.0.0
|
||||
./configure --prefix=/usr/local/GNUstep
|
||||
gmake
|
||||
gmake install
|
||||
gmake distclean
|
||||
|
||||
|
||||
source /usr/local/GNUstep/System/Makefiles/GNUstep.csh
|
||||
|
||||
|
||||
tar zxvf gnustep-objc-1.0.1.tar.gz
|
||||
cd gnustep-objc-1.0.1
|
||||
|
||||
[Edit `./GNUmakefile' Line:39]
|
||||
THREADING = posix -> THREADING = single
|
||||
|
||||
gmake
|
||||
gmake install
|
||||
|
||||
|
||||
cd gnustep-make-1.0.0
|
||||
./configure
|
||||
gmake
|
||||
gmake install
|
||||
|
||||
|
||||
tar zxvf gnustep-base-1.0.0.tar.gz
|
||||
cd gnustep-base-1.0.0
|
||||
|
||||
ln -s /usr/local/bin/xml2-config /usr/local/bin/xml-config
|
||||
./configure --with-xml-prefix=/usr/local --with-libiconv-library=/usr/local/lib
|
||||
|
||||
gmake
|
||||
|
||||
[Ahhh...Error...and Edit `./Source/dynamic-load.h' Line:94]
|
||||
sym = dlsym(RTLD_NEXT, symbol); -> sym = dlsym(handle, symbol);
|
||||
|
||||
gmake
|
||||
gmake install
|
||||
|
||||
|
||||
tar zxvf gnustep-gui-0.6.8.tar.gz
|
||||
cd gnustep-gui-0.6.8
|
||||
./configure
|
||||
gmake
|
||||
gmake install
|
||||
|
||||
|
||||
tar zxvf gnustep-xgps-0.6.8.tar.gz
|
||||
cd gnustep-xgps-0.6.8
|
||||
./configure
|
||||
gmake
|
||||
gmake install
|
||||
|
||||
|
||||
mkdir ~/GNUstep
|
||||
|
||||
|
||||
[Add /etc/rc.local]
|
||||
if [ -f /usr/local/GNUstep/System/Tools/ix86/netbsdelf1.5.2/gdomap ]; then
|
||||
/usr/local/GNUstep/System/Tools/ix86/netbsdelf1.5.2/gdomap
|
||||
fi
|
||||
|
||||
|
||||
[Add ~/.cshrc]
|
||||
setenv GNUSTEP_TZ Japan
|
||||
source /usr/local/GNUstep/System/Makefiles/GNUstep.csh
|
||||
if (`gdomap -L GDNCServer | grep -c Found` == '0') then
|
||||
echo 'Starting GNUstep services.'
|
||||
gdnc
|
||||
gpbs
|
||||
endif
|
||||
alias gmake gmake CC=/usr/local/gcc-2.95.2/bin/cc CPP=/usr/local/gcc-2.95.2/bin/cpp
|
||||
|
||||
|
||||
reboot
|
||||
|
||||
|
||||
|
||||
//
|
||||
// e.g. Install CurrencyConverter(in the GNUstep examples)
|
||||
//
|
||||
|
||||
|
||||
su root
|
||||
|
||||
|
||||
tar zxvf gustep-examples-0.9.2.tar.gz
|
||||
cd gustep-examples-0.9.2/gui/CurrencyConverter
|
||||
gmake
|
||||
gmake install
|
||||
|
||||
|
||||
© 1999-2001 JNQT jnqt@fbe.freeserve.ne.jp
|
||||
|
||||
|
||||
=========================================================================
|
||||
Older, partially obsolete information Below:
|
||||
=========================================================================
|
||||
|
||||
|
||||
This information is provided by Turbocat's Development.
|
||||
We do not make any guarantees as to the currency, accuracy,
|
||||
or quality of information stored here. Use at your own risk.
|
||||
|
|
Loading…
Reference in a new issue