mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
graphics/djview4: Updated for version 4.5
This commit is contained in:
parent
340d099eb8
commit
2e381d9829
5 changed files with 65 additions and 36 deletions
|
@ -1,3 +1,12 @@
|
|||
DjView4 is a new portable DjVu viewer and browser plugin.
|
||||
DjView4 is a portable DjVu viewer and browser plugin.
|
||||
|
||||
Requires djvulibre, xdg-utils, qt4 (all available from SlackBuilds.org)
|
||||
- Entirely based on the public djvulibre api.
|
||||
- Continuous scrolling of pages
|
||||
- Side-by-side display of pages
|
||||
- Ability to specify a url to the djview command
|
||||
- All plugin and cgi options available from the command line
|
||||
- All silly annotations implemented
|
||||
- Display thumbnails as a grid
|
||||
- Display outlines
|
||||
- Page names supported (see djvused command set-page-title)
|
||||
- Metadata dialog (see djvused command set-meta)
|
||||
|
|
|
@ -1,11 +1,29 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for djview4
|
||||
# Slackware build script for DjView4
|
||||
|
||||
# Written by Murat D. Kadirov <banderols@gmail.com
|
||||
# Copyright 2008-2009 Murat D. Kadirov <banderols@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=djview4
|
||||
VERSION=${VERSION:-4.4}
|
||||
VERSION=${VERSION:-4.5}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -17,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -38,17 +59,14 @@ find . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
|
||||
# We don't want configure to think we're trying to build with qt3, so:
|
||||
unset QTDIR
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--infodir=/usr/info \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
|
@ -56,7 +74,11 @@ make
|
|||
make install DESTDIR=$PKG
|
||||
|
||||
# This plugin *should* work with Mozilla-based browsers
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
mv $PKG/usr/lib$LIBDIRSUFFIX/netscape $PKG/usr/lib$LIBDIRSUFFIX/mozilla
|
||||
else
|
||||
mv $PKG/usr/lib/netscape $PKG/usr/lib/mozilla
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps,}
|
||||
cp $PKG/usr/share/djvu/djview4/desktop/*.desktop \
|
||||
|
@ -65,8 +87,10 @@ cp $PKG/usr/share/djvu/djview4/desktop/hi32-djview4.png \
|
|||
$PKG/usr/share/pixmaps/djvulibre-djview4.png
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
|
||||
( cd $PKG/usr/man
|
||||
|
@ -74,17 +98,8 @@ cp $PKG/usr/share/djvu/djview4/desktop/hi32-djview4.png \
|
|||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
( cd $PKG
|
||||
# Remove 'special' files
|
||||
find . -name perllocal.pod \
|
||||
-o -name ".packlist" \
|
||||
-o -name "*.bs" \
|
||||
| xargs rm -f
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYRIGHT COPYING INSTALL NEWS README* TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYRIGHT COPYING INSTALL NEWS README* TODO $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
@ -92,4 +107,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
|
|||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
PRGNAM="djview4"
|
||||
VERSION="4.4"
|
||||
VERSION="4.5"
|
||||
HOMEPAGE="http://djvu.sourceforge.net/djview4.html"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/djvu/djview4-4.4.tar.gz"
|
||||
MD5SUM="466225c5546aed90008d612cdb490a4e"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/djvu/djview4-4.5.tar.gz"
|
||||
MD5SUM="0461a26dbcac33dcc5eb7955ac357504"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Murat D. Kadirov"
|
||||
EMAIL="banderols@gmail.com"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
if [ -x /usr/share/djvu/djview4/desktop/register-djview-menu ]; then
|
||||
/usr/share/djvu/djview4/desktop/register-djview-menu install
|
||||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -x /usr/bin/update-mime-database ]; then
|
||||
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||
fi
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
djview4: DjView4 (viewer and plugin using djvulibre)
|
||||
djview4: djview4 (viewer and plugin using djvulibre)
|
||||
djview4:
|
||||
djview4: djview4 is an open source (GPL'ed) implementation of DjVu,
|
||||
djview4: DjView4 is an open source (GPL'ed) implementation of DjVu,
|
||||
djview4: including viewer & browser plugin using djview4 to view djvu files.
|
||||
djview4:
|
||||
djview4: This uses QT4 and requires djvulibre.
|
||||
djview4: Homepage: http://djvu.sourceforge.net/djview4.html
|
||||
djview4:
|
||||
djview4:
|
||||
djview4:
|
||||
|
|
Loading…
Reference in a new issue