summaryrefslogtreecommitdiffstats
path: root/extra/source/kde3-compat/k3b3/k3b3.SlackBuild
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2011-04-25 13:37:00 +0000
committer Eric Hameleers <alien@slackware.com>2018-05-31 22:45:18 +0200
commit75a4a592e5ccda30715f93563d741b83e0dcf39e (patch)
tree502f745607e77a2c4386ad38d818ddcafe81489c /extra/source/kde3-compat/k3b3/k3b3.SlackBuild
parentb76270bf9e6dd375e495fec92140a79a79415d27 (diff)
downloadcurrent-75a4a592e5ccda30715f93563d741b83e0dcf39e.tar.gz
current-75a4a592e5ccda30715f93563d741b83e0dcf39e.tar.xz
Slackware 13.37slackware-13.37
Mon Apr 25 13:37:00 UTC 2011 Slackware 13.37 x86_64 stable is released! Thanks to everyone who pitched in on this release: the Slackware team, the folks producing upstream code, and linuxquestions.org for providing a great forum for collaboration and testing. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. As always, thanks to the Slackware community for testing, suggestions, and feedback. :-) Have fun!
Diffstat (limited to 'extra/source/kde3-compat/k3b3/k3b3.SlackBuild')
-rwxr-xr-xextra/source/kde3-compat/k3b3/k3b3.SlackBuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/extra/source/kde3-compat/k3b3/k3b3.SlackBuild b/extra/source/kde3-compat/k3b3/k3b3.SlackBuild
deleted file mode 100755
index 186fbe7b9..000000000
--- a/extra/source/kde3-compat/k3b3/k3b3.SlackBuild
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/bin/sh
-CWD=`pwd`
-TMP=${TMP:-/tmp}
-PKG=$TMP/package-k3b3
-
-VERSION=1.0.5
-ARCH=${ARCH:-x86_64}
-BUILD=opt1
-
-if [ "$ARCH" = "i386" ]; then
- SLKCFLAGS="-O2 -march=i386 -mcpu=i686"
-elif [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "s390" ]; then
- SLKCFLAGS="-O2"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2"
-fi
-
-if [ ! -d $TMP ]; then
- mkdir -p $TMP
-fi
-rm -rf $PKG
-mkdir -p $PKG
-cd $TMP
-rm -rf k3b-$VERSION
-tar xjvf $CWD/k3b-$VERSION.tar.bz2 || exit 1
-cd k3b-$VERSION
-chown -R root:root .
-find . -perm 777 -exec chmod 755 {} \;
-find . -perm 664 -exec chmod 644 {} \;
-
-QTDIR=/opt/kde3/lib64/qt3
-
-# ./configure --help lists --docdir, but it is ignored. Oh well.
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/opt/kde3 \
- --libdir=/opt/kde3/lib64 \
- --sysconfdir=/etc/kde \
- --docdir=/usr/doc \
- --without-cdrecord-suid-root \
- --program-prefix="" \
- --program-suffix="" \
- --build=$ARCH-slackware-linux
-make -j4 || exit 1
-make install DESTDIR=$PKG
-
-# Add a .desktop in the compatible location:
-mkdir -p $PKG/usr/share/applications/kde4
-( cd $PKG/usr/share/applications/kde4 ; ln -sf /opt/kde3/share/applications/kde/k3b.desktop k3b3.desktop )
-
-( 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
-)
-mkdir -p $PKG/usr/doc/k3b-$VERSION
-cp -a \
- AUTHORS COPYING COPYING-DOCS ChangeLog FAQ INSTALL KNOWNBUGS PERMISSIONS README RELEASE_HOWTO TODO k3b.lsm \
- $PKG/usr/doc/k3b-$VERSION
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-cd $PKG
-makepkg -l y -c n $TMP/k3b3-$VERSION-$ARCH-$BUILD.txz
-