Star: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
No edit summary
Line 16: Line 16:
Compile the package:
Compile the package:


  make
  make INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root


Install the package:
Install the package:


  make INS_BASE=/usr DEFINSUSR=0 DEFINSGRP=0 install
  make INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install


Fix permissions:
Fix permissions:
Line 33: Line 33:
=== 32Bit ===
=== 32Bit ===


TODO: Please update when tested in multilib
Compile the package:
 
make CCOM="gcc" COPTX="${BUILD32}" LDOPTX="${BUILD32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root
 
Install the package
 
make CCOM="gcc" COPTX="${BUILD32}" LDOPTX="${BUILD32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install
 
Fix permissions:
 
chmod 755 /usr/lib/libdeflt.so.1.0 &&
chmod 755 /usr/lib/libfind.so.1.0 &&
chmod 755 /usr/lib/librmt.so.1.0 &&
chmod 755 /usr/lib/schily.so.1.0


=== N32 ===
=== N32 ===


TODO: Please update when tested in multilib
Compile the package:
 
(find . -name "*.mk"; find . -name Makefile) | xargs sed -i "/^INSDIR=\s*lib$/s/lib/&32/" &&
make CCOM="gcc" COPTX="${BUILDN32}" LDOPTX="${BUILDN32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root
 
Install the package
 
make CCOM="gcc" COPTX="${BUILDN32}" LDOPTX="${BUILDN32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install &&
 
Fix permissions:
 
chmod 755 /usr/lib32/libdeflt.so.1.0 &&
chmod 755 /usr/lib32/libfind.so.1.0 &&
chmod 755 /usr/lib32/librmt.so.1.0 &&
chmod 755 /usr/lib32/schily.so.1.0


=== 64Bit ===
=== 64Bit ===


TODO: Please update when tested in multilib
Compile the package:
 
(find . -name "*.mk"; find . -name Makefile) | xargs sed -i "/^INSDIR=\s*lib$/s/lib/&64/" &&
make CCOM="gcc" COPTX="${BUILD64}" LDOPTX="${BUILD64}"\
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root
 
Install the package
 
make CCOM="gcc" COPTX="${BUILD64}" LDOPTX="${BUILD64}"\
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install
 
Fix permissions:
 
chmod 755 /usr/lib64/libdeflt.so.1.0 &&
chmod 755 /usr/lib64/libfind.so.1.0 &&
chmod 755 /usr/lib64/librmt.so.1.0 &&
chmod 755 /usr/lib64/schily.so.1.0

Revision as of 08:17, 26 December 2008

Download Source: ftp://ftp.berlios.de/pub/star/star-1.5.tar.bz2

Introduction to Star

A tape archiving program following POSIX standards which backs up Extended Attributes and Access Control Lists on files.

Project Homepage: http://cdrecord.berlios.de/old/private/star.html

Dependencies

Required

Non-Multilib

Compile the package:

make INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root

Install the package:

make INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install

Fix permissions:

chmod 755 /usr/lib/libdeflt.so.1.0 &&
chmod 755 /usr/lib/libfind.so.1.0 &&
chmod 755 /usr/lib/librmt.so.1.0 &&
chmod 755 /usr/lib/schily.so.1.0

Multilib

32Bit

Compile the package:

make CCOM="gcc" COPTX="${BUILD32}" LDOPTX="${BUILD32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root

Install the package

make CCOM="gcc" COPTX="${BUILD32}" LDOPTX="${BUILD32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install 

Fix permissions:

chmod 755 /usr/lib/libdeflt.so.1.0 &&
chmod 755 /usr/lib/libfind.so.1.0 &&
chmod 755 /usr/lib/librmt.so.1.0 &&
chmod 755 /usr/lib/schily.so.1.0

N32

Compile the package:

(find . -name "*.mk"; find . -name Makefile) | xargs sed -i "/^INSDIR=\s*lib$/s/lib/&32/" &&
make CCOM="gcc" COPTX="${BUILDN32}" LDOPTX="${BUILDN32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root

Install the package

make CCOM="gcc" COPTX="${BUILDN32}" LDOPTX="${BUILDN32}" \
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install &&

Fix permissions:

chmod 755 /usr/lib32/libdeflt.so.1.0 &&
chmod 755 /usr/lib32/libfind.so.1.0 &&
chmod 755 /usr/lib32/librmt.so.1.0 &&
chmod 755 /usr/lib32/schily.so.1.0

64Bit

Compile the package:

(find . -name "*.mk"; find . -name Makefile) | xargs sed -i "/^INSDIR=\s*lib$/s/lib/&64/" &&
make CCOM="gcc" COPTX="${BUILD64}" LDOPTX="${BUILD64}"\
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root

Install the package

make CCOM="gcc" COPTX="${BUILD64}" LDOPTX="${BUILD64}"\
    INS_BASE=/usr DEFINSUSR=root DEFINSGRP=root install

Fix permissions:

chmod 755 /usr/lib64/libdeflt.so.1.0 &&
chmod 755 /usr/lib64/libfind.so.1.0 &&
chmod 755 /usr/lib64/librmt.so.1.0 &&
chmod 755 /usr/lib64/schily.so.1.0
Retrieved from "?title=Star&oldid=16502"