mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
graphics/SweetHome3D: Added (interior design for 2D/3D house plan)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
11aac8fc23
commit
4058574d4a
7 changed files with 160 additions and 0 deletions
2
graphics/SweetHome3D/README
Normal file
2
graphics/SweetHome3D/README
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Sweet Home 3D is a free interior design application that helps you place your
|
||||||
|
furniture on a house 2D plan, with a 3D preview.
|
109
graphics/SweetHome3D/SweetHome3D.SlackBuild
Normal file
109
graphics/SweetHome3D/SweetHome3D.SlackBuild
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for SweetHome3D
|
||||||
|
|
||||||
|
# Copyright 2010 by Giovanne Castro, Campinas, Sao Paulo, Brazil <giovannefc@ig.com.br>
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
# permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of this script must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||||
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||||
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||||
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||||
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||||
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
PRGNAM=SweetHome3D
|
||||||
|
VERSION=${VERSION:-2.5}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$( uname -m )" in
|
||||||
|
i?86) ARCH=i486 ;;
|
||||||
|
arm*) ARCH=arm ;;
|
||||||
|
*) ARCH=$( uname -m ) ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/SBo}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
if [ "$ARCH" = "i486" ]; then
|
||||||
|
TARGET="x86"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "i686" ]; then
|
||||||
|
TARGET="x86"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
|
TARGET="x64"
|
||||||
|
LIBDIRSUFFIX="64"
|
||||||
|
else
|
||||||
|
SLKCFLAGS="-O2"
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -e # Exit on most errors
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xvf $CWD/$PRGNAM-$VERSION-linux-$TARGET.tgz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
find . \
|
||||||
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||||
|
-exec chmod 755 {} \; -o \
|
||||||
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
|
# Copy executable file
|
||||||
|
mkdir -p $PKG/usr/bin
|
||||||
|
cp -a SweetHome3D $PKG/usr/bin
|
||||||
|
|
||||||
|
# Fix path for java and libs of SweetHome3D
|
||||||
|
sed -i "s/\"\$PROGRAM_DIR\"\/jre1.6.0_20\/bin\/java/\/usr\/lib${LIBDIRSUFFIX}\/java\/bin\/java/g" $PKG/usr/bin/$PRGNAM
|
||||||
|
sed -i "s/\"\$PROGRAM_DIR\"\/jre1.6.0_20\/lib/\/usr\/lib${LIBDIRSUFFIX}\/java\/lib/g" $PKG/usr/bin/$PRGNAM
|
||||||
|
sed -i "s/\"\$PROGRAM_DIR\"\/lib/\/usr\/lib${LIBDIRSUFFIX}\/$PRGNAM/g" $PKG/usr/bin/$PRGNAM
|
||||||
|
|
||||||
|
# Copy libraries of program
|
||||||
|
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM
|
||||||
|
cp -a lib/* $PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
# Install icons
|
||||||
|
mkdir -p $PKG/usr/share/pixmaps
|
||||||
|
cat $CWD/SweetHome3D.png > $PKG/usr/share/pixmaps/SweetHome3D.png
|
||||||
|
mkdir -p $PKG/usr/share/applications
|
||||||
|
cat $CWD/SweetHome3D.desktop > $PKG/usr/share/applications/SweetHome3D.desktop
|
||||||
|
|
||||||
|
# Copy documentation
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a \
|
||||||
|
COPYING.TXT LICENSE.TXT \
|
||||||
|
THIRDPARTY-LICENSE-*.TXT \
|
||||||
|
THIRDPARTY-LICENSE-JMF.HTML \
|
||||||
|
$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
|
||||||
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
12
graphics/SweetHome3D/SweetHome3D.desktop
Normal file
12
graphics/SweetHome3D/SweetHome3D.desktop
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Encoding=UTF-8
|
||||||
|
Name=SweetHome3D
|
||||||
|
GenericName=Free interior design
|
||||||
|
Comment=Interior design furniture on a house 2D plan, with a 3D preview
|
||||||
|
Comment[pt_BR]=Construa plantas de casas em 2D e vizualize em 3D
|
||||||
|
Icon=SweetHome3D.png
|
||||||
|
Exec=SweetHome3D
|
||||||
|
Terminal=false
|
||||||
|
Categories=Graphics;
|
||||||
|
StartupNotify=true
|
10
graphics/SweetHome3D/SweetHome3D.info
Normal file
10
graphics/SweetHome3D/SweetHome3D.info
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
PRGNAM="SweetHome3D"
|
||||||
|
VERSION="2.5"
|
||||||
|
HOMEPAGE="http://www.sweethome3d.com/"
|
||||||
|
DOWNLOAD="http://prdownloads.sourceforge.net/sweethome3d/SweetHome3D-2.5-linux-x86.tgz"
|
||||||
|
MD5SUM="762d383eec623c2bf10e3b18540cbc65"
|
||||||
|
DOWNLOAD_x86_64="http://prdownloads.sourceforge.net/sweethome3d/SweetHome3D-2.5-linux-x64.tgz"
|
||||||
|
MD5SUM_x86_64="e1632344e0fdc7d38db6530048c36bb9"
|
||||||
|
MAINTAINER="Giovanne Castro"
|
||||||
|
EMAIL="giovannefc@ig.com.br"
|
||||||
|
APPROVED="dsomero"
|
BIN
graphics/SweetHome3D/SweetHome3D.png
Normal file
BIN
graphics/SweetHome3D/SweetHome3D.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
8
graphics/SweetHome3D/doinst.sh
Normal file
8
graphics/SweetHome3D/doinst.sh
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
if [ -x /usr/bin/update-desktop-database ]; then
|
||||||
|
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -x /usr/bin/update-mime-database ]; then
|
||||||
|
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
19
graphics/SweetHome3D/slack-desc
Normal file
19
graphics/SweetHome3D/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 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----------------------------------------------------|
|
||||||
|
SweetHome3D: SweetHome3D (free interior design for 2D/3D plan house)
|
||||||
|
SweetHome3D:
|
||||||
|
SweetHome3D: Sweet Home 3D is a free interior design application that helps you
|
||||||
|
SweetHome3D: place your furniture on a house 2D plan, with a 3D preview.
|
||||||
|
SweetHome3D:
|
||||||
|
SweetHome3D:
|
||||||
|
SweetHome3D: Home Page: http://www.sweethome3d.com/
|
||||||
|
SweetHome3D:
|
||||||
|
SweetHome3D:
|
||||||
|
SweetHome3D:
|
||||||
|
SweetHome3D:
|
Loading…
Reference in a new issue