Difference between revisions of "NAS"

From CBLFS
Jump to navigationJump to search
 
Line 72: Line 72:
 
  install -v -m644 doc/{README,actions,*.{ps,txt}} \
 
  install -v -m644 doc/{README,actions,*.{ps,txt}} \
 
     /usr/share/doc/nas-1.7
 
     /usr/share/doc/nas-1.7
 +
 +
== Configuration ==
 +
 +
Create the NAS configuration file using the following command:
 +
 +
install -v -m644 /etc/nas/nasd.conf.eg /etc/nas/nasd.conf
 +
 +
=== BootScript ===
 +
 +
Install the /etc/rc.d/init.d/gpm init script included in the [[blfs-bootscripts]] package.
 +
 +
make install-nas
 +
 +
The init script uses a default prefix of /usr/X11R6. If you've installed the X Window System into any other prefix, execute the following command, replacing <PREFIX> with the installation prefix of the X Window System.
 +
 +
sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" /etc/rc.d/init.d/nas

Revision as of 18:45, 23 September 2006

Download Source: http://nas.codebrilliance.com/nas/nas-1.7.src.tar.gz
Required Patch http://svn.cross-lfs.org/svn/repos/patches/nas/nas-1.7-gcc4-1.patch

Dependencies

Required

Non-Multilib

Compile the package:

patch -Np1 -i ../nas-1.7-gcc4-1.patch &&
xmkmf &&
make World

Install the package

make install install.man &&
install -v -m755 -d /usr/share/doc/nas-1.7/pdf &&
install -v -m644 doc/pdf/* /usr/share/doc/nas-1.7/pdf &&
install -v -m644 doc/{README,actions,*.{ps,txt}} \
    /usr/share/doc/nas-1.7

Multilib

32Bit

Compile the package:

patch -Np1 -i ../nas-1.7-gcc4-1.patch &&
USE_ARCH=32 xmkmf &&
USE_ARCH=32 make World

Install the package

USE_ARCH=32 make install

N32

Compile the package:

patch -Np1 -i ../nas-1.7-gcc4-1.patch &&
USE_ARCH=n32 xmkmf &&
USE_ARCH=n32 make World

Install the package

USE_ARCH=n32 make install

64Bit

Compile the package:

patch -Np1 -i ../nas-1.7-gcc4-1.patch &&
USE_ARCH=64 xmkmf &&
USE_ARCH=64 make World

Install the package

USE_ARCH=64 make install install.man &&
install -v -m755 -d /usr/share/doc/nas-1.7/pdf &&
install -v -m644 doc/pdf/* /usr/share/doc/nas-1.7/pdf &&
install -v -m644 doc/{README,actions,*.{ps,txt}} \
    /usr/share/doc/nas-1.7

Configuration

Create the NAS configuration file using the following command:

install -v -m644 /etc/nas/nasd.conf.eg /etc/nas/nasd.conf

BootScript

Install the /etc/rc.d/init.d/gpm init script included in the blfs-bootscripts package.

make install-nas

The init script uses a default prefix of /usr/X11R6. If you've installed the X Window System into any other prefix, execute the following command, replacing <PREFIX> with the installation prefix of the X Window System.

sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" /etc/rc.d/init.d/nas