graphics/gerbv: Updated for version 1.0.2
This commit is contained in:
parent
9f58d9bb5b
commit
7bd6ad24dc
|
@ -1,6 +1,4 @@
|
|||
Gerber Viewer (gerbv) is a viewer for Gerber files. Gerber files
|
||||
are generated from PCB CAD systems and sent to PCB manufacturers
|
||||
as a basis for the manufacturing process.
|
||||
|
||||
The standard supported by gerbv is RS-274X.
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ VERSION=1.0.2
|
|||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
@ -27,7 +27,6 @@ cd $TMP
|
|||
rm -rf $PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
|
@ -44,7 +43,7 @@ make install-strip DESTDIR=$PKG
|
|||
if [ -d $PKG/usr/man ]; then
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
fi
|
||||
|
||||
|
@ -52,10 +51,6 @@ mkdir -p $PKG/usr/share/{applications,icons/hicolor/48x48/apps}
|
|||
install -m 0644 desktop/gerbv.desktop $PKG/usr/share/applications/gerbv.desktop
|
||||
install -m 0644 desktop/gerbv.png $PKG/usr/share/icons/hicolor/48x48/apps/gerbv.png
|
||||
|
||||
# Fix icon path in desktop file
|
||||
sed -i 's%Icon=gerbv%Icon=/usr/share/icons/hicolor/48x48/apps/gerbv.png%' \
|
||||
$PKG/usr/share/applications/gerbv.desktop
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO doc/* \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
|
@ -5,4 +5,4 @@ DOWNLOAD="http://geda.seul.org/dist/gerbv-1.0.2.tar.gz"
|
|||
MD5SUM="2d5dccd9a060e92916bb7a41ef5433e6"
|
||||
MAINTAINER="Kyle Guinn"
|
||||
EMAIL="elyk03@gmail.com"
|
||||
APPROVED="robw810"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
gerbv: Gerber Viewer
|
||||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
gerbv: Gerber Viewer (viewer for Gerber file)
|
||||
gerbv:
|
||||
gerbv: Gerber Viewer (gerbv) is a viewer for Gerber files. Gerber files
|
||||
gerbv: are generated from PCB CAD systems and sent to PCB manufacturers
|
||||
|
@ -8,3 +16,4 @@ gerbv: The standard supported by gerbv is RS-274X.
|
|||
gerbv:
|
||||
gerbv:
|
||||
gerbv:
|
||||
gerbv:
|
||||
|
|
Loading…
Reference in New Issue