parent
a66157a93f
commit
f4af68d7cb
@ -0,0 +1,5 @@
|
|||||||
|
Available at SBo
|
||||||
|
|
||||||
|
1. Avahi
|
||||||
|
2. GraphicsMagik
|
||||||
|
3. Krb5
|
@ -0,0 +1,2 @@
|
|||||||
|
1. tdelibs
|
||||||
|
2. tdebase
|
@ -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------------------------------------------------------|
|
||||||
|
tdebase: tdebase (The Trinity Desktop base)
|
||||||
|
tdebase:
|
||||||
|
tdebase: tdebase is the second mandatory package (besides tdelibs) for the
|
||||||
|
tdebase: Trinity Desktop Environment. Here we have various applications and
|
||||||
|
tdebase: infrastructure files and libraries.
|
||||||
|
tdebase:
|
||||||
|
tdebase:
|
||||||
|
tdebase:
|
||||||
|
tdebase:
|
||||||
|
tdebase:
|
||||||
|
tdebase: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,227 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=tdebase
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="AUTHORS COPYING* README*"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
cd ${PRGNAM}
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
echo Building ...
|
||||||
|
mkdir -p build-${PRGNAM}
|
||||||
|
cd build-${PRGNAM}
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DMAN_INSTALL_DIR=/usr/man \
|
||||||
|
-DSYSCONF_INSTALL_DIR=/etc \
|
||||||
|
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||||
|
-DWITH_OPENEXR="ON" \
|
||||||
|
-DWITH_XCOMPOSITE="ON" \
|
||||||
|
-DWITH_XCURSOR="ON" \
|
||||||
|
-DWITH_SUDO_TDESU_BACKEND="ON" \
|
||||||
|
-DWITH_SUDO_KONSOLE_SUPER_USER_COMMAND="ON" \
|
||||||
|
-DWITH_PAM="OFF" \
|
||||||
|
-DWITH_SHADOW="ON" \
|
||||||
|
-DWITH_XFIXES="ON" \
|
||||||
|
-DWITH_XRANDR="ON" \
|
||||||
|
-DWITH_XRENDER="ON" \
|
||||||
|
-DWITH_OPENGL="ON" \
|
||||||
|
-DWITH_XSCREENSAVER="ON" \
|
||||||
|
-DWITH_XTEST="ON" \
|
||||||
|
-DWITH_LIBART="ON" \
|
||||||
|
-DWITH_LIBUSB="ON" \
|
||||||
|
-DWITH_XDMCP="ON" \
|
||||||
|
-DWITH_XINERAMA="ON" \
|
||||||
|
-DWITH_ARTS="ON" \
|
||||||
|
-DWITH_TDEHWLIB="ON" \
|
||||||
|
-DWITH_UPOWER="ON" \
|
||||||
|
-DBUILD_ALL="ON" \
|
||||||
|
..
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
cd -
|
||||||
|
|
||||||
|
# Add this to the doinst.sh:
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat <<EOINS >> $PKG/install/doinst.sh
|
||||||
|
# Update the desktop database:
|
||||||
|
if [ -x usr/bin/update-desktop-database ]; then
|
||||||
|
chroot . /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update hicolor theme cache:
|
||||||
|
if [ -d usr/share/icons/hicolor ]; then
|
||||||
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||||
|
chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update the mime database:
|
||||||
|
if [ -x usr/bin/update-mime-database ]; then
|
||||||
|
chroot . /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
EOINS
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
# Add xinitrc:
|
||||||
|
mkdir -p $PKG/etc/X11/xinit
|
||||||
|
cat $SRCDIR/xinitrc.tde > $PKG/etc/X11/xinit/xinitrc.tde
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -0,0 +1,37 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
## Merge in defaults and keymaps ##
|
||||||
|
########################################################################
|
||||||
|
|
||||||
|
userresources=$HOME/.Xresources
|
||||||
|
usermodmap=$HOME/.Xmodmap
|
||||||
|
sysresources=/etc/X11/xinit/.Xresources
|
||||||
|
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||||
|
|
||||||
|
if [ -f $sysresources ]; then
|
||||||
|
/usr/bin/xrdb -merge $sysresources
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f $sysmodmap ]; then
|
||||||
|
/usr/bin/xmodmap $sysmodmap
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f $userresources ]; then
|
||||||
|
/usr/bin/xrdb -merge $userresources
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f $usermodmap ]; then
|
||||||
|
/usr/bin/xmodmap $usermodmap
|
||||||
|
fi
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
## Start xfce Desktop Environment ##
|
||||||
|
########################################################################
|
||||||
|
|
||||||
|
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
|
||||||
|
exec ck-launch-session dbus-launch --exit-with-session /usr/bin/starttde
|
||||||
|
else
|
||||||
|
exec dbus-launch --exit-with-session /usr/bin/starttde
|
||||||
|
fi
|
||||||
|
|
@ -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------------------------------------------------------|
|
||||||
|
tdelibs: tdelibs (TDE libraries)
|
||||||
|
tdelibs:
|
||||||
|
tdelibs: This is version R14.0.0 of the Trinity Desktop Environment [TDE]
|
||||||
|
tdelibs: libraries. This package includes libraries that are central
|
||||||
|
tdelibs: to the development and execution of a KDE program, as well
|
||||||
|
tdelibs: as internationalization files for these libraries, misc HTML
|
||||||
|
tdelibs: documentation, theme modules, and regression tests.
|
||||||
|
tdelibs:
|
||||||
|
tdelibs:
|
||||||
|
tdelibs:
|
||||||
|
tdelibs: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,208 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=tdelibs
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="AUTHORS COPYING* README* TODO"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
# Place to build (TMP) package (PKG) and output (OUTPUT) the program:
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
cd ${PRGNAM}
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
# On Slackware current this wasn't building with CUPS support:
|
||||||
|
mkdir -p build-${PRGNAM}
|
||||||
|
cd build-${PRGNAM}
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DSYSCONF_INSTALL_DIR=/etc \
|
||||||
|
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||||
|
-DCMAKE_SKIP_RPATH="OFF" \
|
||||||
|
-DWITH_CUPS=OFF \
|
||||||
|
-DWITH_SUDO_TDESU_BACKEND=ON \
|
||||||
|
-DWITH_ASPELL=ON \
|
||||||
|
-DWITH_AVAHI=ON \
|
||||||
|
-DWITH_LIBART=ON \
|
||||||
|
..
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
cd -
|
||||||
|
|
||||||
|
# Add this to the doinst.sh:
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat <<EOINS >> $PKG/install/doinst.sh
|
||||||
|
# Update the desktop database:
|
||||||
|
if [ -x usr/bin/update-desktop-database ]; then
|
||||||
|
chroot . /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update hicolor theme cache:
|
||||||
|
if [ -d usr/share/icons/hicolor ]; then
|
||||||
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||||
|
chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update the mime database:
|
||||||
|
if [ -x usr/bin/update-mime-database ]; then
|
||||||
|
chroot . /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
EOINS
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -0,0 +1,8 @@
|
|||||||
|
1. tqt3
|
||||||
|
2. tqtinterface
|
||||||
|
3. arts
|
||||||
|
4. dbus-tqt
|
||||||
|
5. dbus-1-tqt
|
||||||
|
6. tqca-tls
|
||||||
|
7. libart-lgpl
|
||||||
|
8. avahi-tqt (require avahi)
|
@ -0,0 +1,181 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=arts
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="COPYING TRINITY*"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
mkdir -p build-${PRGNAM}
|
||||||
|
cd build-${PRGNAM}
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||||
|
-DCMAKE_SKIP_RPATH="OFF" \
|
||||||
|
..
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
cd -
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -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------------------------------------------------------|
|
||||||
|
arts: arts (arts)
|
||||||
|
arts:
|
||||||
|
arts: arts
|
||||||
|
arts:
|
||||||
|
arts:
|
||||||
|
arts:
|
||||||
|
arts:
|
||||||
|
arts:
|
||||||
|
arts:
|
||||||
|
arts:
|
||||||
|
arts: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,181 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=avahi-tqt
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="LICENSE"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
LDFLAGS="$SLKLDFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
./autogen.sh
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
|
--with-distro=slackware \
|
||||||
|
--enable-introspection=auto \
|
||||||
|
--disable-static \
|
||||||
|
--enable-shared \
|
||||||
|
--build=$ARCH-slackware-linux \
|
||||||
|
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -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------------------------------------------------------|
|
||||||
|
avahi-tqt: avahi-tqt (avahi-tqt)
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt: avahi-tqt
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt:
|
||||||
|
avahi-tqt: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,179 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=dbus-1-tqt
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="AUTHORS ChangeLog* COPYING* README* TODO"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
mkdir -p build-${PRGNAM}
|
||||||
|
cd build-${PRGNAM}
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||||
|
..
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
cd -
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -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------------------------------------------------------|
|
||||||
|
dbus-1-tqt: dbus-1-tqt (Backport of Harald Fernengel's Qt4 D-Bus bindings)
|
||||||
|
dbus-1-tqt:
|
||||||
|
dbus-1-tqt: Some Qt4 based code had no direct equivalent in Qt3. Cases where
|
||||||
|
dbus-1-tqt: this transition to Qt3 might not be fully correct are marked with
|
||||||
|
dbus-1-tqt: FIXME-QT4
|
||||||
|
dbus-1-tqt:
|
||||||
|
dbus-1-tqt:
|
||||||
|
dbus-1-tqt:
|
||||||
|
dbus-1-tqt:
|
||||||
|
dbus-1-tqt:
|
||||||
|
dbus-1-tqt: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,185 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=dbus-tqt
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="AUTHORS COPYING NEWS README*"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
mkdir -p build-${PRGNAM}
|
||||||
|
cd build-${PRGNAM}
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||||
|
..
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
cd -
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
# Compress the man page(s):
|
||||||
|
if [ -d $PKG/usr/man ]; then
|
||||||
|
find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
|
||||||
|
for i in $(find $PKG/usr/man -type l -name "*.?") ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||||
|
fi
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -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------------------------------------------------------|
|
||||||
|
dbus-tqt: dbus-tqt (simple IPC library)
|
||||||
|
dbus-tqt:
|
||||||
|
dbus-tqt: A core concept of the D-BUS implementation is that
|
||||||
|
dbus-tqt: "libdbus" is intended to be a low-level API, similar to
|
||||||
|
dbus-tqt: Xlib. Most programmers are intended to use the bindings to GLib,
|
||||||
|
dbus-tqt: Qt, Python, Mono, Java, or whatever. These bindings have varying
|
||||||
|
dbus-tqt: levels of completeness.
|
||||||
|
dbus-tqt:
|
||||||
|
dbus-tqt:
|
||||||
|
dbus-tqt:
|
||||||
|
dbus-tqt: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,178 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=libart-lgpl
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="AUTHORS ChangeLog* COPYING NEWS README*"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
LDFLAGS="$SLKLDFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||||
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
|
--disable-static \
|
||||||
|
--build=$ARCH-slackware-linux \
|
||||||
|
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -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------------------------------------------------------|
|
||||||
|
libart-lgpl: libart-lgpl (the LGPL'd component of libart)
|
||||||
|
libart-lgpl:
|
||||||
|
libart-lgpl: This is the LGPL'd component of libart. All functions needed
|
||||||
|
libart-lgpl: for running the Gnome canvas, and for printing support, will be
|
||||||
|
libart-lgpl: going in here. The GPL'd component will be getting various
|
||||||
|
libart-lgpl: enhanced functions for specific applications.
|
||||||
|
libart-lgpl:
|
||||||
|
libart-lgpl:
|
||||||
|
libart-lgpl:
|
||||||
|
libart-lgpl:
|
||||||
|
libart-lgpl: Home: https://www.trinitydesktop.org/index.php
|
@ -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------------------------------------------------------|
|
||||||
|
tqca-tls: tqca-tls (Plugin to provide SSL/TLS capability)
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls: This is a plugin to provide SSL/TLS capability to programs that
|
||||||
|
tqca-tls: utilize the TQt Cryptographic Architecture (TQCA).
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls:
|
||||||
|
tqca-tls: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,174 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=tqca-tls
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
DOCS="COPYING README"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
|
||||||
|
make || exit 1
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/tqt3-R14.0.0/plugins/crypto/
|
||||||
|
install -m 0755 libtqca-tls.so $PKG/usr/lib${LIBDIRSUFFIX}/tqt3-R14.0.0/plugins/crypto/
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/csh
|
||||||
|
# Environment path variables for the Qt package:
|
||||||
|
if ( ! $?QTDIR ) then
|
||||||
|
# It's best to use the generic directory to avoid
|
||||||
|
# compiling in a version-containing path:
|
||||||
|
if ( -d /usr/lib${LIBDIRSUFFIX}/tqt3 ) then
|
||||||
|
setenv QTDIR /usr/lib${LIBDIRSUFFIX}/tqt3
|
||||||
|
else
|
||||||
|
# Find the newest Qt directory and set $QTDIR to that:
|
||||||
|
foreach qtd ( /usr/lib${LIBDIRSUFFIX}/tqt3-* )
|
||||||
|
if ( -d $qtd ) then
|
||||||
|
setenv QTDIR $qtd
|
||||||
|
endif
|
||||||
|
end
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
set path = ( $path $QTDIR/bin )
|
||||||
|
if ( $?CPLUS_INCLUDE_PATH ) then
|
||||||
|
setenv CPLUS_INCLUDE_PATH $QTDIR/include:$CPLUS_INCLUDE_PATH
|
||||||
|
else
|
||||||
|
setenv CPLUS_INCLUDE_PATH $QTDIR/include
|
||||||
|
endif
|
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Environment variables for the Qt package.
|
||||||
|
#
|
||||||
|
# It's best to use the generic directory to avoid
|
||||||
|
# compiling in a version-containing path:
|
||||||
|
if [ -d /usr/lib${LIBDIRSUFFIX}/tqt3 ]; then
|
||||||
|
QTDIR=/usr/lib${LIBDIRSUFFIX}/tqt3
|
||||||
|
else
|
||||||
|
# Find the newest Qt directory and set $QTDIR to that:
|
||||||
|
for qtd in /usr/lib${LIBDIRSUFFIX}/tqt3-* ; do
|
||||||
|
if [ -d $qtd ]; then
|
||||||
|
QTDIR=$qtd
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
if [ ! "$CPLUS_INCLUDE_PATH" = "" ]; then
|
||||||
|
CPLUS_INCLUDE_PATH=$QTDIR/include:$CPLUS_INCLUDE_PATH
|
||||||
|
else
|
||||||
|
CPLUS_INCLUDE_PATH=$QTDIR/include
|
||||||
|
fi
|
||||||
|
PATH="$PATH:$QTDIR/bin"
|
||||||
|
export QTDIR
|
||||||
|
export CPLUS_INCLUDE_PATH
|
@ -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------------------------------------------------------|
|
||||||
|
tqt3: tqt3 (C++ GUI application framework)
|
||||||
|
tqt3:
|
||||||
|
tqt3: Qt is a multiplatform C++ GUI application framework
|
||||||
|
tqt3:
|
||||||
|
tqt3:
|
||||||
|
tqt3:
|
||||||
|
tqt3:
|
||||||
|
tqt3:
|
||||||
|
tqt3:
|
||||||
|
tqt3:
|
||||||
|
tqt3: Home: https://wiki.trinitydesktop.org/Trinity_Desktop_Environment
|
@ -0,0 +1,258 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide USA thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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.
|
||||||
|
|
||||||
|
# Much help from the 12.2 SlackBuild script of qt3. And from SBo qt3 script
|
||||||
|
|
||||||
|
PRGNAM=tqt3
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tgp}
|
||||||
|
|
||||||
|
DOCS="ChangeLog* FAQ LICENSE* README* TRINITY.RELEASE"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
# Place to build (TMP) package (PKG) and output (OUTPUT) the program:
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
# Force CFLAGS in qmake.conf
|
||||||
|
sed -i "/QMAKE_CFLAGS_RELEASE/s|-O2|$SLKCFLAGS|" mkspecs/linux-g++/qmake.conf
|
||||||
|
|
||||||
|
# Fix location of mysql.h
|
||||||
|
sed -i "s|mysql\.h|mysql/mysql\.h|" src/sql/drivers/mysql/qsql_mysql.h
|
||||||
|
|
||||||
|
echo "yes" | CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" ./configure \
|
||||||
|
-prefix /usr/lib${LIBDIRSUFFIX}/$PRGNAM-${VERSION} \
|
||||||
|
-release \
|
||||||
|
-system-zlib \
|
||||||
|
-system-libpng \
|
||||||
|
-qt-imgfmt-png \
|
||||||
|
-system-libmng \
|
||||||
|
-qt-imgfmt-mng \
|
||||||
|
-system-libjpeg \
|
||||||
|
-qt-imgfmt-jpeg \
|
||||||
|
-qt-gif \
|
||||||
|
-thread \
|
||||||
|
-stl \
|
||||||
|
-no-g++-exceptions \
|
||||||
|
-xft \
|
||||||
|
-plugin-sql-mysql \
|
||||||
|
-plugin-style-cde \
|
||||||
|
-plugin-style-compact \
|
||||||
|
-qt-style-motif \
|
||||||
|
-plugin-style-motifplus \
|
||||||
|
-plugin-style-platinum \
|
||||||
|
-plugin-style-sgi \
|
||||||
|
-plugin-style-windows \
|
||||||
|
-enable-opengl
|
||||||
|
|
||||||
|
make -i || exit 1
|
||||||
|
QTDIR=$PKG/usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION
|
||||||
|
LD_LIBRARY_PATH=$QTDIR/lib make install INSTALL_ROOT=$PKG || exit 1
|
||||||
|
|
||||||
|
make -i symlinks sub-src sub-tools || exit 1
|
||||||
|
make install INSTALL_ROOT=$PKG || exit 1
|
||||||
|
|
||||||
|
# Link the shared libraries
|
||||||
|
( cd $PKG/usr/lib${LIBDIRSUFFIX}
|
||||||
|
for file in $PRGNAM-$VERSION/lib/*.so* ; do
|
||||||
|
ln -sf $file .
|
||||||
|
done
|
||||||
|
)
|
||||||
|
|
||||||
|
# Add this to the doinst.sh:
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat <<EOINS >> $PKG/install/doinst.sh
|
||||||
|
# Update the desktop database:
|
||||||
|
if [ -x usr/bin/update-desktop-database ]; then
|
||||||
|
chroot . /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Update hicolor theme cache:
|
||||||
|
if [ -d usr/share/icons/hicolor ]; then
|
||||||
|
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||||
|
chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
EOINS
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
# Skipping the man pages: Will first need to see if they interfere with anything
|
||||||
|
|
||||||
|
mkdir -p $PKG/etc/profile.d
|
||||||
|
cat $SRCDIR/profile.d/${PRGNAM}.sh > $PKG/etc/profile.d/${PRGNAM}.sh
|
||||||
|
cat $SRCDIR/profile.d/${PRGNAM}.csh > $PKG/etc/profile.d/${PRGNAM}.csh
|
||||||
|
chmod 755 $PKG/etc/profile.d/*
|
||||||
|
|
||||||
|
# Strip binaries:
|
||||||
|
( 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
|
||||||
|
)
|
||||||
|
|
||||||
|
# Put a ton of links to more "normal" places.
|
||||||
|
mkdir -p $PKG/usr/bin
|
||||||
|
( cd $PKG/usr/bin
|
||||||
|
for file in tqassistant tqdesigner tqlinguist tqlrelease tqlupdate tqmoc tqm2ts tqmake tqtconfig tquic ; do
|
||||||
|
ln -sf /usr/lib${LIBDIRSUFFIX}/$PRGNAM-$VERSION/bin/$file .
|
||||||
|
done
|
||||||
|
)
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig
|
||||||
|
( cd $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig
|
||||||
|
ln -sf /usr/lib${LIBDIRSUFFIX}/${PRGNAM}-${VERSION}/lib/pkgconfig/tqt-mt.pc .
|
||||||
|
)
|
||||||
|
|
||||||
|
# Symlink is needed for a tde app during future complimation:
|
||||||
|
mkdir -p $PKG/usr/include
|
||||||
|
( cd $PKG/usr/include ; ln -sf /usr/lib${LIBDIRSUFFIX}/${PRGNAM}-${VERSION}/include qt3 )
|
||||||
|
|
||||||
|
# Symlink all of it:
|
||||||
|
( cd $PKG/usr/lib${LIBDIRSUFFIX} ; ln -sf ${PRGNAM}-${VERSION} ${PRGNAM})
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
@ -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------------------------------------------------------|
|
||||||
|
tqtinterface: tqtinterface (libraries that abstract the underlying Qt system)
|
||||||
|
tqtinterface:
|
||||||
|
tqtinterface: This package includes libraries that abstract the underlying
|
||||||
|
tqtinterface: Qt system from the actual Trinity code, allowing easy, complete
|
||||||
|
tqtinterface: upgrades to new versions of Qt.
|
||||||
|
tqtinterface:
|
||||||
|
tqtinterface:
|
||||||
|
tqtinterface:
|
||||||
|
tqtinterface:
|
||||||
|
tqtinterface:
|
||||||
|
tqtinterface: Home: https://www.trinitydesktop.org/index.php
|
@ -0,0 +1,179 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Generated by Alien's SlackBuild Toolkit: http://slackware.com/~alien/AST
|
||||||
|
# Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2015 Eric Hameleers, Eindhoven, Netherlands
|
||||||
|
# Copyright 2015 Thorn Inurcide thorn-inurcide@yandex.com
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, and distribute this software for
|
||||||
|
# any purpose with or without fee is hereby granted, provided that
|
||||||
|
# the above copyright notice and this permission notice appear in all
|
||||||
|
# copies.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 AUTHORS AND COPYRIGHT HOLDERS AND THEIR
|
||||||
|
# CONTRIBUTORS 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=tqtinterface
|
||||||
|
VERSION=${VERSION:-R14.0.0}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_tde}
|
||||||
|
|
||||||
|
DOCS="AUTHORS COPYING README* TRINITY.RELEASE"
|
||||||
|
|
||||||
|
# Where do we look for sources?
|
||||||
|
SRCDIR=$(cd $(dirname $0); pwd)
|
||||||
|
|
||||||
|
TMP=${TMP:-/tmp/build}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
SRCURL="http://tde-mirror.yosemite.net/trinity/releases/${VERSION}/dependencies/${PRGNAM}-${VERSION}.tar.bz2"
|
||||||
|
|
||||||
|
# You can use your own private machine.conf file to overrule machine defaults:
|
||||||
|
if [ -e $SRCDIR/machine.conf ]; then
|
||||||
|
. $SRCDIR/machine.conf
|
||||||
|
elif [ -e /etc/slackbuild/machine.conf ]; then
|
||||||
|
. /etc/slackbuild/machine.conf
|
||||||
|
else
|
||||||
|
# Automatically determine the architecture we're building on:
|
||||||
|
MARCH=$( uname -m )
|
||||||
|
if [ -z "$ARCH" ]; then
|
||||||
|
case "$MARCH" in
|
||||||
|
i?86) export ARCH=i486 ;;
|
||||||
|
armv7hl) export ARCH=$MARCH ;;
|
||||||
|
armv6hl) export ARCH=$MARCH ;;
|
||||||
|
arm*) export ARCH=arm ;;
|
||||||
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||||
|
*) export ARCH=$MARCH ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
# Set CFLAGS/CXXFLAGS and LIBDIRSUFFIX:
|
||||||
|
case "$ARCH" in
|
||||||
|
i486) SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
x86_64) SLKCFLAGS="-O2 -fPIC"
|
||||||
|
SLKLDFLAGS="-L/usr/lib64"; LIBDIRSUFFIX="64"
|
||||||
|
;;
|
||||||
|
armv7hl) SLKCFLAGS="-O2 -march=armv7-a -mfpu=vfpv3-d16"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
armv6hl) SLKCFLAGS="-O2 -march=armv6 -mfpu=vfp -mfloat-abi=hard"
|
||||||
|
SLKLDFLAGS=""; LIBDIRSUFFIX=""
|
||||||
|
;;
|
||||||
|
*) SLKCFLAGS=${SLKCFLAGS:-"O2"}
|
||||||
|
SLKLDFLAGS=${SLKLDFLAGS:-""}; LIBDIRSUFFIX=${LIBDIRSUFFIX:-""}
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$ARCH" in
|
||||||
|
arm*) TARGET=$ARCH-slackware-linux-gnueabi ;;
|
||||||
|
*) TARGET=$ARCH-slackware-linux ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Exit the script on errors:
|
||||||
|
set -e
|
||||||
|
trap 'echo "$0 FAILED at line ${LINENO}" | tee $OUTPUT/error-${PRGNAM}.log' ERR
|
||||||
|
# Catch unitialized variables:
|
||||||
|
set -u
|
||||||
|
P1=${1:-1}
|
||||||
|
|
||||||
|
# Save old umask and set to 0022:
|
||||||
|
_UMASK_=$(umask)
|
||||||
|
umask 0022
|
||||||
|
|
||||||
|
# Create working directories:
|
||||||
|
mkdir -p $OUTPUT
|
||||||
|
mkdir -p $TMP/tmp-$PRGNAM
|
||||||
|
mkdir -p $PKG
|
||||||
|
rm -rf $PKG/*
|
||||||
|
rm -rf $TMP/tmp-$PRGNAM/*
|
||||||
|
rm -rf $OUTPUT/{checkout,configure,make,install,error,makepkg,patch}-$PRGNAM.log
|
||||||
|
|
||||||
|
# Source file availability:
|
||||||
|
if ! [ -f ${SOURCE} ]; then
|
||||||
|
echo "Source '$(basename ${SOURCE})' not available yet..."
|
||||||
|
# Check if the $SRCDIR is writable at all - if not, download to $OUTPUT
|
||||||
|
[ -w "$SRCDIR" ] || SOURCE="$OUTPUT/$(basename $SOURCE)"
|
||||||
|
if [ -f ${SOURCE} ]; then echo "Ah, found it!"; continue; fi
|
||||||
|
if ! [ "x${SRCURL}" == "x" ]; then
|
||||||
|
echo "Will download file to $(dirname $SOURCE)"
|
||||||
|
wget -nv -T 20 -O "${SOURCE}" "${SRCURL}" || true
|
||||||
|
if [ $? -ne 0 -o ! -s "${SOURCE}" ]; then
|
||||||
|
echo "Downloading '$(basename ${SOURCE})' failed... aborting the build."
|
||||||
|
mv -f "${SOURCE}" "${SOURCE}".FAIL
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "File '$(basename ${SOURCE})' not available... aborting the build."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$P1" == "--download" ]; then
|
||||||
|
echo "Download complete."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd $TMP/tmp-$PRGNAM
|
||||||
|
echo "Extracting the source archive(s) for $PRGNAM..."
|
||||||
|
if $(file ${SOURCE} | grep -qi ": 7-zip"); then
|
||||||
|
7za x ${SOURCE}
|
||||||
|
elif $(file ${SOURCE} | grep -qi ": zip"); then
|
||||||
|
unzip ${SOURCE}
|
||||||
|
else
|
||||||
|
tar -xvf ${SOURCE}
|
||||||
|
fi
|
||||||
|
cd dependencies
|
||||||
|
cd ${PRGNAM}
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a+rX-st .
|
||||||
|
|
||||||
|
mkdir -p build-${PRGNAM}
|
||||||
|
cd build-${PRGNAM}
|
||||||
|
|
||||||
|
cmake \
|
||||||
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DLIB_SUFFIX=${LIBDIRSUFFIX} \
|
||||||
|
-DQT_VERSION=3 \
|
||||||
|
..
|
||||||
|
make || exit 1
|
||||||
|
make DESTDIR=$PKG install || exit 1
|
||||||
|
cd -
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
|
||||||
|
cat $SRCDIR/$(basename $0) > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
find $PKG/usr/doc -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
makepkg --linkadd y --chown n $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}
|
||||||
|
cd $OUTPUT
|
||||||
|
md5sum ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz} > ${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.${PKGTYPE:-txz}.md5
|
||||||
|
cd -
|
||||||
|
cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $OUTPUT/${PRGNAM}-${VERSION}-${ARCH}-${BUILD}${TAG}.txt
|
||||||
|
|
||||||
|
# Restore the original umask:
|
||||||
|
umask ${_UMASK_}
|
Loading…
Reference in new issue