graphics/gerbv: Initial import
This commit is contained in:
parent
4657c3e1b2
commit
61a5b90786
|
@ -0,0 +1,6 @@
|
|||
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.
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
|
@ -0,0 +1,70 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gerbv
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=gerbv
|
||||
VERSION=1.0.2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
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 .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man
|
||||
|
||||
make
|
||||
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
|
||||
)
|
||||
fi
|
||||
|
||||
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
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc -name "Makefile*" -exec rm {} \;
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gerbv"
|
||||
VERSION="1.0.2"
|
||||
HOMEPAGE="http://gerbv.sourceforge.net/"
|
||||
DOWNLOAD="http://geda.seul.org/dist/gerbv-1.0.2.tar.gz"
|
||||
MD5SUM="2d5dccd9a060e92916bb7a41ef5433e6"
|
||||
MAINTAINER="Kyle Guinn"
|
||||
EMAIL="elyk03@gmail.com"
|
||||
APPROVED="robw810"
|
|
@ -0,0 +1,10 @@
|
|||
gerbv: Gerber Viewer
|
||||
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
|
||||
gerbv: as a basis for the manufacturing process.
|
||||
gerbv:
|
||||
gerbv: The standard supported by gerbv is RS-274X.
|
||||
gerbv:
|
||||
gerbv:
|
||||
gerbv:
|
Loading…
Reference in New Issue