graphics/kipi-plugins: Updated for version 0.1.5
This commit is contained in:
parent
e007950e02
commit
0318a98bed
|
@ -4,7 +4,5 @@ and Gwenview). They can add extra menus and shortcuts,
|
||||||
and extend the host programs features. You can install
|
and extend the host programs features. You can install
|
||||||
as many or as few as you like, from within host programs.
|
as many or as few as you like, from within host programs.
|
||||||
|
|
||||||
The following programs are required to build Kipi Plugins:
|
exiv2, libgphoto2, libkdcraw, libkexiv2, and libkipi (also
|
||||||
(also available at http://www.slackbuilds.org/)
|
available at SBo) are required to build Kipi Plugins.
|
||||||
|
|
||||||
exiv2, imlib2, libgphoto2, libkdcraw, libkipi
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Slackware build script for Kipi Plugins
|
# Slackware build script for Kipi Plugins
|
||||||
|
|
||||||
# Copyright 2007 Frank Caraballo <fecaraballo{at}gmail{dot}com>
|
# Copyright 2007-2008 Frank Caraballo <fecaraballo{at}gmail{dot}com>
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use of this script, with or without modification, is
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
@ -23,17 +23,17 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=kipi-plugins
|
PRGNAM=kipi-plugins
|
||||||
VERSION=0.1.4
|
VERSION=0.1.5
|
||||||
ARCH=${ARCH:-i486}
|
ARCH=${ARCH:-i486}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
CWD=$(pwd)
|
CWD=$(pwd)
|
||||||
TMP=${TMP:-/tmp/SBo}
|
TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=$TMP/package-$PRGNAM
|
PKG=$TMP/package-$PRGNAM
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
KDEPREF=$(kde-config --prefix)
|
|
||||||
|
|
||||||
PDOCS="AUTHORS ChangeLog COPYING INSTALL NEWS PACKAGING README RELEASE.rev TODO"
|
DOCS="AUTHORS ChangeLog COPYING INSTALL NEWS PACKAGING README RELEASE.rev TODO"
|
||||||
|
|
||||||
if [ "$ARCH" = "i486" ]; then
|
if [ "$ARCH" = "i486" ]; then
|
||||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
@ -45,18 +45,22 @@ rm -rf $PKG
|
||||||
mkdir -p $TMP $PKG $OUTPUT
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
cd $TMP || exit 1
|
cd $TMP || exit 1
|
||||||
rm -rf $PRGNAM-$VERSION
|
rm -rf $PRGNAM-$VERSION
|
||||||
tar -xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
|
||||||
cd $PRGNAM-$VERSION || exit 1
|
cd $PRGNAM-$VERSION || exit 1
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
chmod -R u+w,go+r-w,a-s .
|
find . \
|
||||||
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||||
|
-exec chmod 755 {} \; -o \
|
||||||
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=$KDEPREF \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--mandir=$KDEPREF/man \
|
--mandir=/usr/man \
|
||||||
--program-prefix="" \
|
--program-prefix="" \
|
||||||
--program-suffix="" \
|
--program-suffix="" \
|
||||||
--disable-debug \
|
--disable-debug \
|
||||||
|
@ -67,14 +71,15 @@ CXXFLAGS="$SLKCFLAGS" \
|
||||||
make || exit 1
|
make || exit 1
|
||||||
make install-strip DESTDIR=$PKG || exit 1
|
make install-strip DESTDIR=$PKG || exit 1
|
||||||
|
|
||||||
( cd $PKG/$KDEPREF/man
|
( cd $PKG//usr/man
|
||||||
find . -type f -exec gzip -9 {} \;
|
find . -type f -exec gzip -9 {} \;
|
||||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||||
)
|
)
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a $PDOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
mkdir -p $PKG/install
|
||||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
PRGNAM="kipi-plugins"
|
PRGNAM="kipi-plugins"
|
||||||
VERSION="0.1.4"
|
VERSION="0.1.5"
|
||||||
HOMEPAGE="http://extragear.kde.org/apps/kipi/"
|
HOMEPAGE="http://extragear.kde.org/apps/kipi/"
|
||||||
DOWNLOAD="http://downloads.sourceforge.net/kipi/kipi-plugins-0.1.4.tar.bz2"
|
DOWNLOAD="http://downloads.sourceforge.net/kipi/kipi-plugins-0.1.5.tar.bz2"
|
||||||
MD5SUM="62469960593284b62302bde75a898c46"
|
MD5SUM="099122d802530d22e69b314b3e97e30b"
|
||||||
MAINTAINER="Frank Caraballo"
|
MAINTAINER="Frank Caraballo"
|
||||||
EMAIL="fecaraballo{at}gmail{dot}com"
|
EMAIL="fecaraballo{at}gmail{dot}com"
|
||||||
APPROVED="rworkman"
|
APPROVED="rworkman"
|
||||||
|
|
Loading…
Reference in New Issue