Difference between revisions of "NSPR"

From CBLFS
Jump to navigationJump to search
Line 36: Line 36:
 
  rm -fv /usr/share/aclocal/nspr.m4 &&
 
  rm -fv /usr/share/aclocal/nspr.m4 &&
 
  rm -rfv /usr/include/nspr/md  
 
  rm -rfv /usr/include/nspr/md  
 +
echo "/usr/lib/nspr" >> /etc/ld.so.conf
  
 
Create the pkg-config file:
 
Create the pkg-config file:
Line 88: Line 89:
 
  rm -rfv /usr/include/nspr/md &&
 
  rm -rfv /usr/include/nspr/md &&
 
  mv -v /usr/bin/nspr-config{,-32}
 
  mv -v /usr/bin/nspr-config{,-32}
 +
echo "/usr/lib/nspr" >> /etc/ld.so.conf
  
 
Create the pkg-config file:
 
Create the pkg-config file:
Line 138: Line 140:
 
  rm -rfv /usr/include/nspr/md &&
 
  rm -rfv /usr/include/nspr/md &&
 
  mv -v /usr/bin/nspr-config{,-n32}
 
  mv -v /usr/bin/nspr-config{,-n32}
 +
echo "/usr/lib32/nspr" >> /etc/ld.so.conf
  
 
Create the pkg-config file:
 
Create the pkg-config file:
Line 189: Line 192:
 
  mv -v /usr/bin/nspr-config{,-64} &&
 
  mv -v /usr/bin/nspr-config{,-64} &&
 
  ln -sfv multiarch_wrapper /usr/bin/nspr-config
 
  ln -sfv multiarch_wrapper /usr/bin/nspr-config
 +
echo "/usr/lib64/nspr" >> /etc/ld.so.conf
  
 
Create the pkg-config file:
 
Create the pkg-config file:

Revision as of 18:44, 23 June 2009

Download Source: http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v4.9.4/src/nspr-4.9.4.tar.gz

Introduction to NSPR

Project Homepage: Unknown

Dependencies

Non-Multilib

Create a build directory:

mkdir -v build &&
cd build

If building on pure64 (x86_64 at least perhaps others) add this to the configure line below:

--enable-64bit

Compile the package:

../mozilla/nsprpub/configure --prefix=/usr \
 --libdir=/usr/lib/nspr --infodir=/usr/share/info --mandir=/usr/share/man \
 --disable-debug --disable-ipv6 --enable-system-sqlite
make

Install the package

make install &&
chmod 644 /usr/lib/nspr/*.a &&
rm -fv /usr/bin/{compile-et.pl,prerr.properties} &&
rm -fv /usr/share/aclocal/nspr.m4 &&
rm -rfv /usr/include/nspr/md 
echo "/usr/lib/nspr" >> /etc/ld.so.conf

Create the pkg-config file:

cat > /usr/lib/pkgconfig/nspr.pc << "EOF"
 prefix=/usr
 exec_prefix=/usr/bin
 libdir=/usr/lib/nspr
 includedir=/usr/include/nspr
  
 Name: NSPR
 Description: The Netscape Portable Runtime
 Version: %NSPR_VERSION%
 Libs: %FULL_NSPR_LIBS%
 Cflags: %FULL_NSPR_CFLAGS%
EOF
 
NSPR_LIBS=$(./config/nspr-config --libs)
NSPR_CFLAGS=$(./config/nspr-config --cflags)
NSPR_VERSION=$(./config/nspr-config --version)
  
 sed -i -e "s,%NSPR_VERSION%,${NSPR_VERSION}," \
   -e "s,%FULL_NSPR_LIBS%,${NSPR_LIBS}," \
   -e "s,%FULL_NSPR_CFLAGS%,${NSPR_CFLAGS}," /usr/lib/pkgconfig/nspr.pc
 
 chmod 644 /usr/lib/pkgconfig/nspr.pc
 ln -sf nspr.pc /usr/lib/pkgconfig/mozilla-nspr.pc

Multilib

32Bit

Create a build directory:

mkdir -v build &&
cd build

Compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
../mozilla/nsprpub/configure --prefix=/usr \
 --libdir=/usr/lib/nspr --infodir=/usr/share/info --mandir=/usr/share/man \
 --disable-debug --disable-ipv6 --enable-system-sqlite &&
make

Install the package

make install &&
chmod 644 /usr/lib/nspr/*.a &&
rm -fv /usr/bin/{compile-et.pl,prerr.properties} &&
rm -fv /usr/share/aclocal/nspr.m4 &&
rm -rfv /usr/include/nspr/md &&
mv -v /usr/bin/nspr-config{,-32}
echo "/usr/lib/nspr" >> /etc/ld.so.conf

Create the pkg-config file:

 cat > /usr/lib/pkgconfig/nspr.pc << "EOF"
   prefix=/usr
   exec_prefix=/usr/bin
   libdir=/usr/lib/nspr
   includedir=/usr/include/nspr
  
   Name: NSPR
   Description: The Netscape Portable Runtime
   Version: %NSPR_VERSION%
   Libs: %FULL_NSPR_LIBS%
   Cflags: %FULL_NSPR_CFLAGS%
  EOF
 
  NSPR_LIBS=$(./config/nspr-config --libs)
  NSPR_CFLAGS=$(./config/nspr-config --cflags)
  NSPR_VERSION=$(./config/nspr-config --version)
  
 sed -i -e "s,%NSPR_VERSION%,${NSPR_VERSION}," \
   -e "s,%FULL_NSPR_LIBS%,${NSPR_LIBS}," \
   -e "s,%FULL_NSPR_CFLAGS%,${NSPR_CFLAGS}," /usr/lib/pkgconfig/nspr.pc
 
 chmod 644 /usr/lib/pkgconfig/nspr.pc
 ln -sf nspr.pc /usr/lib/pkgconfig/mozilla-nspr.pc

N32

Create a build directory:

mkdir -v build &&
cd build

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=N32 \
../mozilla/nsprpub/configure --prefix=/usr \
 --libdir=/usr/lib32/nspr --infodir=/usr/share/info --mandir=/usr/share/man \
 --disable-debug --disable-ipv6 --enable-system-sqlite &&
make

Install the package

make install &&
chmod 644 /usr/lib32/nspr/*.a &&
rm -fv /usr/bin/{compile-et.pl,prerr.properties} &&
rm -fv /usr/share/aclocal/nspr.m4 &&
rm -rfv /usr/include/nspr/md &&
mv -v /usr/bin/nspr-config{,-n32}
echo "/usr/lib32/nspr" >> /etc/ld.so.conf

Create the pkg-config file:

 cat > /usr/lib32/pkgconfig/nspr.pc << "EOF"
   prefix=/usr
   exec_prefix=/usr/bin
   libdir=/usr/lib32/nspr
   includedir=/usr/include/nspr
  
   Name: NSPR
   Description: The Netscape Portable Runtime
   Version: %NSPR_VERSION%
   Libs: %FULL_NSPR_LIBS%
   Cflags: %FULL_NSPR_CFLAGS%
  EOF
 
  NSPR_LIBS=$(./config/nspr-config --libs)
  NSPR_CFLAGS=$(./config/nspr-config --cflags)
  NSPR_VERSION=$(./config/nspr-config --version)
  
 sed -i -e "s,%NSPR_VERSION%,${NSPR_VERSION}," \
   -e "s,%FULL_NSPR_LIBS%,${NSPR_LIBS}," \
   -e "s,%FULL_NSPR_CFLAGS%,${NSPR_CFLAGS}," /usr/lib32/pkgconfig/nspr.pc
 
 chmod 644 /usr/lib32/pkgconfig/nspr.pc
 ln -sf nspr.pc /usr/lib32/pkgconfig/mozilla-nspr.pc

64Bit

Create a build directory:

mkdir -v build &&
cd build

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
../mozilla/nsprpub/configure --prefix=/usr \
 --libdir=/usr/lib64/nspr --infodir=/usr/share/info --mandir=/usr/share/man \
 --disable-debug --disable-ipv6 --enable-system-sqlite --enable-64bit &&
make

Install the package

make install &&
chmod 644 /usr/lib64/nspr/*.a &&
rm -fv /usr/bin/{compile-et.pl,prerr.properties} &&
rm -fv /usr/share/aclocal/nspr.m4 &&
rm -rfv /usr/include/nspr/md &&
mv -v /usr/bin/nspr-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/nspr-config
echo "/usr/lib64/nspr" >> /etc/ld.so.conf

Create the pkg-config file:

 cat > /usr/lib64/pkgconfig/nspr.pc << "EOF"
   prefix=/usr
   exec_prefix=/usr/bin
   libdir=/usr/lib64/nspr
   includedir=/usr/include/nspr
  
   Name: NSPR
   Description: The Netscape Portable Runtime
   Version: %NSPR_VERSION%
   Libs: %FULL_NSPR_LIBS%
   Cflags: %FULL_NSPR_CFLAGS%
  EOF
 
  NSPR_LIBS=$(./config/nspr-config --libs)
  NSPR_CFLAGS=$(./config/nspr-config --cflags)
  NSPR_VERSION=$(./config/nspr-config --version)
  
 sed -i -e "s,%NSPR_VERSION%,${NSPR_VERSION}," \
   -e "s,%FULL_NSPR_LIBS%,${NSPR_LIBS}," \
   -e "s,%FULL_NSPR_CFLAGS%,${NSPR_CFLAGS}," /usr/lib64/pkgconfig/nspr.pc
 
 chmod 644 /usr/lib64/pkgconfig/nspr.pc
 ln -sf nspr.pc /usr/lib64/pkgconfig/mozilla-nspr.pc