diff options
author | B. Jogai <jogaib at comcast {dot} net> | 2010-03-15 21:09:41 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-13 13:27:21 +0200 |
commit | fad0a256c18862c2172f20c8c50dc12739bb5174 (patch) | |
tree | c754901bdddf9714f67a2086d2692c8c47b6dfd0 /academic/xcircuit/xcircuit.SlackBuild | |
parent | e4b78420a17b34102a0d54b18521bc4d84931ba0 (diff) | |
download | slackbuilds-fad0a256c18862c2172f20c8c50dc12739bb5174.tar.gz |
academic/xcircuit: Updated for version 3.7.6.
Diffstat (limited to 'academic/xcircuit/xcircuit.SlackBuild')
-rw-r--r-- | academic/xcircuit/xcircuit.SlackBuild | 54 |
1 files changed, 35 insertions, 19 deletions
diff --git a/academic/xcircuit/xcircuit.SlackBuild b/academic/xcircuit/xcircuit.SlackBuild index a89c9c7d36..cc53ae8256 100644 --- a/academic/xcircuit/xcircuit.SlackBuild +++ b/academic/xcircuit/xcircuit.SlackBuild @@ -3,16 +3,18 @@ # Slackware build script for grace # Written by B. Jogai <jogaib {at} comcast [dot] net> +# Set initial variables: + PRGNAM=xcircuit -VERSION=3.7.5 +VERSION=3.7.6 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} +TAG=${TAG:-"_SBo"} CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} +TMP=${TMP:-"/tmp/SBo"} PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} +OUTPUT=${OUTPUT:-"/tmp"} if [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mtune=i686" @@ -36,6 +38,9 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R u+w,go+r-w,a-s . +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + CFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ @@ -50,13 +55,22 @@ CFLAGS="$SLKCFLAGS" \ make make DESTDIR=$PKG install +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples + +cp -a CHANGES README* TODO VERSION examples/ \ + $PKG/usr/doc/$PRGNAM-$VERSION + +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; + +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true -) + find . | xargs file | grep "executable" | grep ELF | \ + cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | \ + cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + ) + # Add desktop menu entries mkdir -p $PKG/usr/share/{applications,pixmaps} @@ -67,22 +81,24 @@ cat $CWD/xcircuit.desktop > $PKG/usr/share/applications/xcircuit.desktop # Don't move it in case the program needs it there for some reason. rm -rf $PKG/usr/man mkdir -p $PKG/usr/man/man1 +rm -f $PKG/usr/man/man1/*.1 cp $PKG/usr/lib$LIBDIRSUFFIX/$PRGNAM-3.7/man/*.1 $PKG/usr/man/man1 -( 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 -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples -cp -a CHANGES README* TODO VERSION examples/ \ - $PKG/usr/doc/$PRGNAM-$VERSION -find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +# Compress the man pages if they exist +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/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.${PKGTYPE:-tgz} |