Difference between revisions of "Netpbm"

From CBLFS
Jump to navigationJump to search
(vanity)
(Merge build changed to non-merge. Data directory changed.)
 
(7 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/sourceforge/netpbm/netpbm-10.26.42.tgz
+
|http://prdownloads.sourceforge.net/sourceforge/netpbm/netpbm-{{Netpbm-Version}}.tgz
|-
 
 
|}
 
|}
  
Line 11: Line 10:
  
 
== Dependencies ==
 
== Dependencies ==
 
{{Note|This package is highly modulular; the dependencies vary.  There are newer versions of netpbm available; this is the considered the stable version}}
 
  
 
=== Required ===
 
=== Required ===
* [[libjpeg]]
 
* [[svgalib]] (version 1.9.25+) ...enjoy the build...
 
 
* [[pkg-config]]
 
* [[pkg-config]]
  
 
=== Recommended ===
 
=== Recommended ===
* [[libtiff]]
+
* [[libjpeg]]
* [[zlib]]
+
* [[LibTIFF]]
 
* [[ghostscript]]
 
* [[ghostscript]]
 
* [[libpng]]
 
* [[libpng]]
  
 
=== Optional ===
 
=== Optional ===
* [[?]]
+
* [[SVGAlib]] >= 1.9.25
* [[?]]
+
 
 +
See "Netpbm Library Prerequisites" http://netpbm.sourceforge.net/prereq.html
 +
for detailed information on dependencies.
 +
 
  
 
== Configuration Information ==
 
== Configuration Information ==
Line 33: Line 31:
 
{|
 
{|
 
|-
 
|-
|''make --keep-going:'' Usefull if the build fails on an unecessary tool.
+
|<i>make --keep-going:</i> causes Make to make anything it can rather than quitting as soon as something goes wrong.
 
|-
 
|-
 
|}
 
|}
 +
 +
=== Creating a Makefile.config ===
 +
 +
The Makefile.config is sourced by the Makefile in each build directory.  This file contains configuration information specific to your environment.  Refer to the Makefile.config.in file for detailed discussions of many of these options.
 +
 +
cat > Makefile.config << "EOF"
 +
DEFAULT_TARGET = nonmerge
 +
BUILD_FIASCO = N
 +
CC = gcc
 +
LD = $(CC)
 +
LINKERISCOMPILER=Y
 +
LINKER_CAN_DO_EXPLICIT_LIBRARY=Y
 +
INTTYPES_H = <inttypes.h>
 +
CC_FOR_BUILD = $(CC)
 +
LD_FOR_BUILD = $(LD)
 +
INSTALL = install
 +
STRIPFLAG = -s
 +
SYMLINK = ln -s
 +
MANPAGE_FORMAT = nroff
 +
AR = ar
 +
RANLIB = ranlib
 +
LEX = flex
 +
LDSHLIB = -shared -Wl,-soname,$(SONAME)
 +
LDRELOC = ld -r
 +
SHLIB_CLIB = -lc
 +
NEED_RUNTIME_PATH = Y
 +
RPATHOPTNAME = -rpath
 +
NETPBMLIB_RUNTIME_PATH = ${NETPBM_PREFIX}/lib/netpbm
 +
TIFFLIB = libtiff.so
 +
TIFFHDR_DIR = /usr/include
 +
TIFFLIB_NEEDS_JPEG = Y
 +
TIFFLIB_NEEDS_Z = Y
 +
JPEGLIB = libjpeg.so
 +
JPEGHDR_DIR = /usr/include
 +
PNGLIB = libpng.so
 +
PNGHDR_DIR = `pkg-config --variable=includedir libpng`
 +
PNGVER = 1.2.42
 +
ZLIB = libz.so
 +
ZHDR_DIR = /usr/include
 +
JBIGLIB = $(BUILDDIR)/converter/other/jbig/libjbig.a
 +
JBIGHDR_DIR = $(SRCDIR)/converter/other/jbig
 +
JASPERLIB = $(INTERNAL_JASPERLIB)
 +
JASPERHDR_DIR = $(INTERNAL_JASPERHDR_DIR)
 +
URTLIB = $(BUILDDIR)/urt/librle.a
 +
URTHDR_DIR = $(SRCDIR)/urt
 +
LINUXSVGALIB = libvga.so
 +
LINUXSVGAHDR_DIR = /usr/include
 +
OMIT_NETWORK = Y
 +
PKGDIR_DEFAULT = /tmp/netpbm
 +
INSTALL_PERM_BIN =  755
 +
INSTALL_PERM_LIBD = 755
 +
INSTALL_PERM_LIBS = 644
 +
INSTALL_PERM_HDR =  644
 +
INSTALL_PERM_MAN =  644
 +
INSTALL_PERM_DATA = 644
 +
SUFFIXMANUALS1 = 1
 +
SUFFIXMANUALS3 = 3
 +
SUFFIXMANUALS5 = 5
 +
NETPBMLIBTYPE = unixshared
 +
NETPBMLIBSUFFIX = so
 +
STATICLIB_TOO = n
 +
SHLIBPREFIXLIST = lib
 +
NETPBMSHLIBPREFIX = $(firstword $(SHLIBPREFIXLIST))
 +
NETPBM_DOCURL = file:${NETPBM_PREFIX}/share/doc/netpbm
 +
CFLAGS = -O3 -ffast-math
 +
EOF
 +
 +
If you do not want to link SVGAlib, change the LINUXSVGALIB line to:
 +
 +
LINUXSVGALIB = NONE
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 41: Line 109:
 
Compile the package:
 
Compile the package:
  
  cp Makefile.config{.in,} &&
+
  export NETPBM_PREFIX=/usr &&
sed -i 's@TIFFLIB \= NONE@TIFFLIB \= libtiff\.so@g' Makefile.config &&
+
  sed -i.bak 's@/usr/openwin/lib/rgb.txt@/etc/netpbm/rgb.txt@' pm_config.in.h
sed -i 's@TIFFHDR_DIR \=@TIFFHDR_DIR \= /usr/include@g' Makefile.config &&
+
  sed -i.bak -e 's@/usr/local/netpbm@/usr@' \
  sed -i 's@JPEGLIB \= NONE@JPEGLIB \= libjpeg\.so@g' Makefile.config &&
+
            -e '/\$dataDir/,+1s@\$prefix/lib@/etc/netpbm@' \
sed -i 's@JPEGHDR_DIR \=@JPEGHDR_DIR \= /usr/include@g' Makefile.config &&
+
            -e 's@\$prefix/lib@$prefix/lib64@' \
sed -i 's@PNGLIB \= NONE@PNGLIB \= libpng\.so@g' Makefile.config &&
+
            buildtools/installnetpbm.pl &&
sed -i 's@PNGHDR_DIR \=@PNGHDR_DIR \= \`pkg\-config \-\-variable\=includedir libpng\`@g' Makefile.config &&
+
  make CFLAGS_SHLIB=-fPIC &&
  sed -i 's@ZLIB \= NONE@ZLIB \= libz\.so@g' Makefile.config &&
 
sed -i 's@ZHDR_DIR \=@ZHDR_DIR \= /usr/include@g' Makefile.config &&
 
sed -i 's@LINUXSVGALIB \= NONE@LINUXSVGALIB \= libvga\.so @g' Makefile.config &&
 
sed -i 's@LINUXSVGAHDR_DIR \=@LINUXSVGAHDR_DIR \= /usr/include@g' Makefile.config &&
 
sed -i 's@OMIT_NETWORK \=@OMIT_NETWORK \= Y@g' Makefile.config &&
 
sed -i 's@STATICLIB_TOO \= y@STATICLIB_TOO \= n@g' Makefile.config &&
 
sed -i 's@NETPBM_DOCURL \= http\://netpbm\.sourceforge\.net/doc/@NETPBM_DOCURL \= file:/usr/share/doc/netpbm/@g' Makefile.config &&
 
  make &&
 
 
  make package
 
  make package
  
 
Install the package:
 
Install the package:
  
  ./installnetpbm
+
  ./installnetpbm &&
 +
rm -rf /tmp/netpbm &&
 +
unset NETPBM_PREFIX
  
 
== Multilib ==
 
== Multilib ==
  
=== 32Bit ===  
+
=== 32Bit ===
  
(The following needs to be refined... specifically the INTTYPES_H var)
+
(1) Install the binaries and library:
  
 
Compile the package:
 
Compile the package:
  
  cp Makefile.config{.in,} &&
+
  export NETPBM_PREFIX=/usr &&
sed -i 's@TIFFLIB \= NONE@TIFFLIB \= libtiff\.so@g' Makefile.config &&
+
  sed -i.bak 's@/usr/openwin/lib/rgb.txt@/etc/netpbm/rgb.txt@' pm_config.in.h
sed -i 's@TIFFHDR_DIR \=@TIFFHDR_DIR \= /usr/include@g' Makefile.config &&
+
  sed -i.bak -e 's@/usr/local/netpbm@/usr@' \
  sed -i 's@JPEGLIB \= NONE@JPEGLIB \= libjpeg\.so@g' Makefile.config &&
+
            -e '/\$dataDir/,+1s@\$prefix/lib@/etc/netpbm@' \
sed -i 's@JPEGHDR_DIR \=@JPEGHDR_DIR \= /usr/include@g' Makefile.config &&
+
            buildtools/installnetpbm.pl &&
sed -i 's@PNGLIB \= NONE@PNGLIB \= libpng\.so@g' Makefile.config &&
+
  make CC="gcc ${BUILD32}" CFLAGS_SHLIB=-fpic &&
sed -i 's@PNGHDR_DIR \=@PNGHDR_DIR \= \`pkg\-config \-\-variable\=includedir libpng\`@g' Makefile.config &&
+
  make package
  sed -i 's@ZLIB \= NONE@ZLIB \= libz\.so@g' Makefile.config &&
 
sed -i 's@ZHDR_DIR \=@ZHDR_DIR \= /usr/include@g' Makefile.config &&
 
sed -i 's@LINUXSVGALIB \= NONE@LINUXSVGALIB \= libvga\.so @g' Makefile.config &&
 
sed -i 's@LINUXSVGAHDR_DIR \=@LINUXSVGAHDR_DIR \= /usr/include@g' Makefile.config &&
 
sed -i 's@OMIT_NETWORK \=@OMIT_NETWORK \= Y@g' Makefile.config &&
 
sed -i 's@STATICLIB_TOO \= y@STATICLIB_TOO \= n@g' Makefile.config &&
 
sed -i 's@NETPBM_DOCURL \= http\://netpbm\.sourceforge\.net/doc/@NETPBM_DOCURL \= file:/usr/share/doc/netpbm/@g' Makefile.config &&
 
  make &&
 
  make package  
 
  
 
Install the package:
 
Install the package:
  
  ./installnetpbm
+
  ./installnetpbm &&
 +
rm -rf /tmp/netpbm
 +
unset NETPBM_PREFIX
 +
 
 +
(2) Alternately, install just the library:
 +
 
 +
cd lib &&
 +
make CC="gcc ${BUILD32}" CFLAGS_SHLIB=-fpic &&
 +
cp -fv libnetpbm.so* /usr/lib &&
 +
cd ..
 +
 
 +
=== N32 ===
 +
 
 +
 
 +
=== 64Bit ===
  
=== 64Bit ===
+
Use the following command to append your Makefile.config with 64bit specific flags:
  
(The following needs to be refined... specifically the INTTYPES_H var)
+
sed -i 's@/lib/@/lib64/@g' Makefile.config
  
Compile the package:
+
Compile the pacakge:
  
  cp Makefile.config{.in,} &&
+
  export NETPBM_PREFIX=/usr &&
sed -i 's@TIFFLIB \= NONE@TIFFLIB \= libtiff\.so@g' Makefile.config &&
+
  sed -i.bak 's@/usr/openwin/lib/rgb.txt@/etc/netpbm/rgb.txt@' pm_config.in.h
sed -i 's@TIFFHDR_DIR \=@TIFFHDR_DIR \= /usr/include@g' Makefile.config &&
+
  sed -i.bak -e 's@/usr/local/netpbm@/usr@' \
  sed -i 's@JPEGLIB \= NONE@JPEGLIB \= libjpeg\.so@g' Makefile.config &&
+
            -e '/\$dataDir/,+1s@\$prefix/lib@/etc/netpbm@' \
sed -i 's@JPEGHDR_DIR \=@JPEGHDR_DIR \= /usr/include@g' Makefile.config &&
+
            -e 's@\$prefix/lib@$prefix/lib64@' \
sed -i 's@PNGLIB \= NONE@PNGLIB \= libpng\.so@g' Makefile.config &&
+
            buildtools/installnetpbm.pl &&
sed -i 's@PNGHDR_DIR \=@PNGHDR_DIR \= \`pkg\-config \-\-variable\=includedir libpng\`@g' Makefile.config &&
+
  make CC="gcc ${BUILD64}" CFLAGS_SHLIB=-fPIC &&
  sed -i 's@ZLIB \= NONE@ZLIB \= libz\.so@g' Makefile.config &&
 
sed -i 's@ZHDR_DIR \=@ZHDR_DIR \= /usr/include@g' Makefile.config &&
 
sed -i 's@LINUXSVGALIB \= NONE@LINUXSVGALIB \= libvga\.so @g' Makefile.config &&
 
sed -i 's@LINUXSVGAHDR_DIR \=@LINUXSVGAHDR_DIR \= /usr/include@g' Makefile.config &&
 
sed -i 's@OMIT_NETWORK \=@OMIT_NETWORK \= Y@g' Makefile.config &&
 
sed -i 's@STATICLIB_TOO \= y@STATICLIB_TOO \= n@g' Makefile.config &&
 
sed -i 's@NETPBM_DOCURL \= http\://netpbm\.sourceforge\.net/doc/@NETPBM_DOCURL \= file:/usr/share/doc/netpbm/@g' Makefile.config &&
 
  make &&
 
 
  make package
 
  make package
  
 
Install the package:
 
Install the package:
  
  ./installnetpbm
+
  ./installnetpbm &&
 +
rm -rf /tmp/netpbm &&
 +
unset NETPBM_PREFIX
  
== Configuring ==  
+
== Configuring ==
  
(The following needs to be refined...)
+
sed -i 's@webdir=/usr/man/web@\#webdir=/usr/man/web@g' /etc/manweb.conf &&
   
+
  echo "webdir=/dev/null" >> /etc/manweb.conf
  
== Contents ==  
+
== Contents ==
 
 
(The following needs to be refined...)
 
  
 
{| style="text-align: left;"
 
{| style="text-align: left;"
 
|-valign="top"
 
|-valign="top"
 
!Installed Directories:
 
!Installed Directories:
|/path/to/dir
+
|
 
|-valign="top"
 
|-valign="top"
 
!Installed Programs:
 
!Installed Programs:
|Program 1, Program 2
+
|
 
|-valign="top"
 
|-valign="top"
 
!Installed Libraries:
 
!Installed Libraries:
|library1.{a,so}, library2.{a,so}
+
|
 
|}
 
|}
  
 
=== Short Descriptions ===
 
=== Short Descriptions ===
 
(The following needs to be refined...)
 
  
 
{| style="text-align: left;"
 
{| style="text-align: left;"
 
|-valign="top"
 
|-valign="top"
!Program 1
+
!
|is a program that converts pennies to dollars.
+
|
 
|-valign="top"
 
|-valign="top"
!Program 2
+
!
|is a program that converts dollars to pennies.
+
|
 
|-valign="top"
 
|-valign="top"
!library1.{so,a}
+
!
|is a library that contains functions necessary to convert from dollars to pennies and vice versa.
+
|
 
|}
 
|}
 +
 +
[[Category:Graphics Libraries]]

Latest revision as of 20:02, 23 May 2011

Download Source: http://prdownloads.sourceforge.net/sourceforge/netpbm/netpbm-10.26.46.tgz

Introduction to Netpbm

Netpbm is a toolkit comprised of over 220 tools for manipulating graphics, including conversion of images between a variety of different formats.

Project Homepage: http://netpbm.sourceforge.net/

Dependencies

Required

Recommended

Optional

See "Netpbm Library Prerequisites" http://netpbm.sourceforge.net/prereq.html for detailed information on dependencies.


Configuration Information

make --keep-going: causes Make to make anything it can rather than quitting as soon as something goes wrong.

Creating a Makefile.config

The Makefile.config is sourced by the Makefile in each build directory. This file contains configuration information specific to your environment. Refer to the Makefile.config.in file for detailed discussions of many of these options.

cat > Makefile.config << "EOF"
DEFAULT_TARGET = nonmerge
BUILD_FIASCO = N
CC = gcc
LD = $(CC)
LINKERISCOMPILER=Y
LINKER_CAN_DO_EXPLICIT_LIBRARY=Y
INTTYPES_H = <inttypes.h>
CC_FOR_BUILD = $(CC)
LD_FOR_BUILD = $(LD)
INSTALL = install
STRIPFLAG = -s
SYMLINK = ln -s
MANPAGE_FORMAT = nroff
AR = ar
RANLIB = ranlib
LEX = flex
LDSHLIB = -shared -Wl,-soname,$(SONAME)
LDRELOC = ld -r
SHLIB_CLIB = -lc
NEED_RUNTIME_PATH = Y
RPATHOPTNAME = -rpath
NETPBMLIB_RUNTIME_PATH = ${NETPBM_PREFIX}/lib/netpbm
TIFFLIB = libtiff.so
TIFFHDR_DIR = /usr/include
TIFFLIB_NEEDS_JPEG = Y
TIFFLIB_NEEDS_Z = Y
JPEGLIB = libjpeg.so
JPEGHDR_DIR = /usr/include
PNGLIB = libpng.so
PNGHDR_DIR = `pkg-config --variable=includedir libpng`
PNGVER = 1.2.42
ZLIB = libz.so
ZHDR_DIR = /usr/include
JBIGLIB = $(BUILDDIR)/converter/other/jbig/libjbig.a
JBIGHDR_DIR = $(SRCDIR)/converter/other/jbig
JASPERLIB = $(INTERNAL_JASPERLIB)
JASPERHDR_DIR = $(INTERNAL_JASPERHDR_DIR)
URTLIB = $(BUILDDIR)/urt/librle.a
URTHDR_DIR = $(SRCDIR)/urt
LINUXSVGALIB = libvga.so
LINUXSVGAHDR_DIR = /usr/include
OMIT_NETWORK = Y
PKGDIR_DEFAULT = /tmp/netpbm
INSTALL_PERM_BIN =  755
INSTALL_PERM_LIBD = 755
INSTALL_PERM_LIBS = 644
INSTALL_PERM_HDR =  644
INSTALL_PERM_MAN =  644
INSTALL_PERM_DATA = 644
SUFFIXMANUALS1 = 1
SUFFIXMANUALS3 = 3
SUFFIXMANUALS5 = 5
NETPBMLIBTYPE = unixshared
NETPBMLIBSUFFIX = so
STATICLIB_TOO = n
SHLIBPREFIXLIST = lib
NETPBMSHLIBPREFIX = $(firstword $(SHLIBPREFIXLIST))
NETPBM_DOCURL = file:${NETPBM_PREFIX}/share/doc/netpbm
CFLAGS = -O3 -ffast-math
EOF

If you do not want to link SVGAlib, change the LINUXSVGALIB line to:

LINUXSVGALIB = NONE

Non-Multilib

Compile the package:

export NETPBM_PREFIX=/usr &&
sed -i.bak 's@/usr/openwin/lib/rgb.txt@/etc/netpbm/rgb.txt@' pm_config.in.h
sed -i.bak -e 's@/usr/local/netpbm@/usr@' \
           -e '/\$dataDir/,+1s@\$prefix/lib@/etc/netpbm@' \
           -e 's@\$prefix/lib@$prefix/lib64@' \
           buildtools/installnetpbm.pl &&
make CFLAGS_SHLIB=-fPIC &&
make package

Install the package:

./installnetpbm &&
rm -rf /tmp/netpbm &&
unset NETPBM_PREFIX

Multilib

32Bit

(1) Install the binaries and library:

Compile the package:

export NETPBM_PREFIX=/usr &&
sed -i.bak 's@/usr/openwin/lib/rgb.txt@/etc/netpbm/rgb.txt@' pm_config.in.h
sed -i.bak -e 's@/usr/local/netpbm@/usr@' \
           -e '/\$dataDir/,+1s@\$prefix/lib@/etc/netpbm@' \
           buildtools/installnetpbm.pl &&
make CC="gcc ${BUILD32}" CFLAGS_SHLIB=-fpic &&
make package

Install the package:

./installnetpbm &&
rm -rf /tmp/netpbm
unset NETPBM_PREFIX

(2) Alternately, install just the library:

cd lib &&
make CC="gcc ${BUILD32}" CFLAGS_SHLIB=-fpic &&
cp -fv libnetpbm.so* /usr/lib &&
cd ..

N32

64Bit

Use the following command to append your Makefile.config with 64bit specific flags:

sed -i 's@/lib/@/lib64/@g' Makefile.config

Compile the pacakge:

export NETPBM_PREFIX=/usr &&
sed -i.bak 's@/usr/openwin/lib/rgb.txt@/etc/netpbm/rgb.txt@' pm_config.in.h
sed -i.bak -e 's@/usr/local/netpbm@/usr@' \
           -e '/\$dataDir/,+1s@\$prefix/lib@/etc/netpbm@' \
           -e 's@\$prefix/lib@$prefix/lib64@' \
           buildtools/installnetpbm.pl &&
make CC="gcc ${BUILD64}" CFLAGS_SHLIB=-fPIC &&
make package

Install the package:

./installnetpbm &&
rm -rf /tmp/netpbm &&
unset NETPBM_PREFIX

Configuring

sed -i 's@webdir=/usr/man/web@\#webdir=/usr/man/web@g' /etc/manweb.conf &&
echo "webdir=/dev/null" >> /etc/manweb.conf

Contents

Installed Directories:
Installed Programs:
Installed Libraries:

Short Descriptions