PCB: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 13: | Line 13: | ||
<b>Homepage:</b> http://www.geda.seul.org/tools/pcb/index.html | <b>Homepage:</b> http://www.geda.seul.org/tools/pcb/index.html | ||
= Dependencies = | == Dependencies == | ||
== Optional == | === Optional === | ||
*[[GD]] | *[[GD]] | ||
*[[TCL]] | *[[TCL]] | ||
| Line 24: | Line 24: | ||
*[[LessTif]] | *[[LessTif]] | ||
= Non-Multilib = | == Non-Multilib == | ||
Compile the package: | |||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
Install the | Install the package: | ||
make install | make install | ||
= Multilib = | == Multilib == | ||
'''''This package does not install any libraries so only one installation is needed.''''' | |||
=== 32Bit === | |||
Compile the package: | |||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | |||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" \ | ||
./configure --prefix=/usr && | |||
make | make | ||
Install the | Install the package: | ||
make install | make install | ||
== N32 == | === N32 === | ||
Compile the | Compile the package: | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr && | |||
CC="gcc ${BUILDN32}" USE_ARCH=n32 \ | |||
PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" \ | |||
./configure --prefix=/usr && | |||
make | make | ||
Install the | Install the package: | ||
make install | make install | ||
== 64Bit == | === 64Bit === | ||
Compile the | Compile the package: | ||
CC="gcc ${BUILD64}" ./configure --prefix=/usr && | |||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | |||
PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" \ | |||
./configure --prefix=/usr && | |||
make | make | ||
Install the | Install the package: | ||
make install | make install | ||
Revision as of 12:27, 26 December 2006
| Download Source: | ftp://ftp.geda.seul.org/pub/geda/dist/pcb-20080202.tar.gz |
|---|
Introduction to PCB
PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process.
Homepage: http://www.geda.seul.org/tools/pcb/index.html
Dependencies
Optional
One of the following is required if you want a GUI. The default is Gtk2.
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
This package does not install any libraries so only one installation is needed.
32Bit
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH32" \
./configure --prefix=/usr &&
make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="$PKG_CONFIG_PATHN32" \
./configure --prefix=/usr &&
make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="$PKG_CONFIG_PATH64" \
./configure --prefix=/usr &&
make
Install the package:
make install
Contents
| Installed Directories: | /usr/share/PCB, /usr/share/pcb-20080202 |
|---|---|
| Installed Programs: | pcb, pads_backannotate, MergPCBPS, |
Short Description
| pcb: | The main binary. |
|---|---|
| pads_backannotate: | Process PADS PowerPCB .eco files to backannotate changes to gEDA schematics. |
| MergePCBPS: | Merges PostScript files created by pcb (version >= 1.4.2) into a single file for backward compatibility |