mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
development/SoQt: Removed from 12.2 repository
This commit is contained in:
parent
c4d384d9f4
commit
5d80273303
4 changed files with 0 additions and 105 deletions
|
@ -1,17 +0,0 @@
|
|||
SoQt is set of Qt GUI bindings for Coin library.
|
||||
|
||||
By using the combination of Coin, Qt and SoQt for your 3D applications,
|
||||
you have a framework for writing completely portable software across the
|
||||
whole range of UNIX, Linux, Microsoft Windows and Mac OS X operating
|
||||
systems. Coin, Qt and SoQt makes this possible from a 100% common
|
||||
codebase, which means there is a minimum of hassle for developers when
|
||||
working on multiplatform software, with the resulting large gains in
|
||||
productivity.
|
||||
|
||||
SoQt, like Coin and Qt, provides the programmer with a high-level
|
||||
application programmer's interface (API) in C++. The library primarily
|
||||
includes a class-hierarchy of viewer components of varying functionality
|
||||
and complexity, with various modes for the end-user to control the
|
||||
3D-scene camera interaction.
|
||||
|
||||
SoQt requires the Coin library, which is also available at SlackBuilds.org.
|
|
@ -1,61 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for SoQt
|
||||
|
||||
# Written by Aleksandar B. Samardzic (<asamardzic@matf.bg.ac.yu>)
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=SoQt
|
||||
VERSION=1.4.1
|
||||
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 xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root . || true
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
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
|
||||
)
|
||||
|
||||
( 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
|
||||
cp -a AUTHORS BUGS.txt COPYING ChangeLog FAQ INSTALL* LICENSE.GPL \
|
||||
NEWS README* $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
|
@ -1,8 +0,0 @@
|
|||
PRGNAM="SoQt"
|
||||
VERSION="1.4.1"
|
||||
HOMEPAGE="http://www.coin3d.org/lib/soqt/"
|
||||
DOWNLOAD="http://ftp.coin3d.org/coin/src/all/SoQt-1.4.1.tar.gz"
|
||||
MD5SUM="6dddafb755e9afb9924da1d46f3cd0d4"
|
||||
MAINTAINER="Aleksandar B. Samardzic"
|
||||
EMAIL="asamardzic@matf.bg.ac.yu"
|
||||
APPROVED="rworkman"
|
|
@ -1,19 +0,0 @@
|
|||
# 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------------------------------------------------------|
|
||||
SoQt: SoQt (Qt GUI bindings for Coin library)
|
||||
SoQt:
|
||||
SoQt: SoQt is a library which provides the glue between Coin
|
||||
SoQt: high-level 3D visualization library and Troll Tech's Qt
|
||||
SoQt: 2D user interface library.
|
||||
SoQt:
|
||||
SoQt: Homepage: http://www.coin3d.org/lib/soqt/
|
||||
SoQt:
|
||||
SoQt:
|
||||
SoQt:
|
||||
SoQt:
|
Loading…
Reference in a new issue