mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/gajim: Initial import
This commit is contained in:
parent
14220dd89f
commit
2d46527920
5 changed files with 94 additions and 0 deletions
7
network/gajim/README
Normal file
7
network/gajim/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
gajim - GTK jabber client
|
||||
|
||||
Gajim is a GTK+ jabber client written in Python.
|
||||
|
||||
Requirements: pygtk, pysqlite2 and their respective requirements. The
|
||||
SlackBuild Scripts for these are available at SlackBuilds.org.
|
||||
|
5
network/gajim/doinst.sh
Normal file
5
network/gajim/doinst.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
63
network/gajim/gajim.SlackBuild
Normal file
63
network/gajim/gajim.SlackBuild
Normal file
|
@ -0,0 +1,63 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gajim
|
||||
# Written by Martin Lefebvre (dadexter@sekurity.com)
|
||||
|
||||
# Slightly modified by the SlackBuild Project
|
||||
set -e
|
||||
|
||||
PRGNAM=gajim
|
||||
VERSION=0.11.1
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
|
||||
# Fix icon path in .desktop file
|
||||
sed -i 's|gajim.png|/usr/share/pixmaps/gajim.png|g' $PKG/usr/share/applications/gajim.desktop
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
# --docdir takes care of the program documentation
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
network/gajim/gajim.info
Normal file
8
network/gajim/gajim.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gajim"
|
||||
VERSION="0.11.1"
|
||||
HOMEPAGE="http://www.gajim.org"
|
||||
DOWNLOAD="http://www.gajim.org/downloads/gajim-0.11.1.tar.bz2"
|
||||
MD5SUM="cc587e7617f53ae8d5e0b30d7324e89c"
|
||||
MAINTAINER="Martin Lefebvre"
|
||||
EMAIL="dadexter@slackadelic.com"
|
||||
APPROVED="BP{k}"
|
11
network/gajim/slack-desc
Normal file
11
network/gajim/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
gajim: gajim - GTK+ jabber client
|
||||
gajim:
|
||||
gajim: Gajim is a GTK+ jabber client written in Python.
|
||||
gajim:
|
||||
gajim:
|
||||
gajim:
|
||||
gajim:
|
||||
gajim:
|
||||
gajim:
|
||||
gajim:
|
||||
gajim:
|
Loading…
Reference in a new issue