network/centerim: Updated for version 4.22.2
This commit is contained in:
parent
5f658af54a
commit
74660190b3
|
@ -2,8 +2,5 @@ CenterIM is a multi-protocol command-line instant messenger.
|
|||
It supports most major protocols such as MSN, ICQ, Yahoo and Jabber.
|
||||
|
||||
CenterIM was forked from the CenterICQ project, and includes many patches
|
||||
previously submitted, including the hefty patch to resolve seg faults when
|
||||
previously submitted, including the hefty patch to resolve segfaults when
|
||||
connecting to MSN.
|
||||
|
||||
CenterIM requires gpgme (which requies libgpg-error). SlackBuilds for both
|
||||
are available at slackbuilds.org
|
||||
|
|
|
@ -22,15 +22,13 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
# Modified by the SlackBuilds.org project
|
||||
set -e
|
||||
|
||||
PRGNAM=centerim
|
||||
VERSION=4.22.0
|
||||
VERSION=4.22.2
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
@ -41,13 +39,14 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
SLKCFLAGS="-O2 -march=i686"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+w,go+r-w .
|
||||
|
||||
|
@ -57,14 +56,13 @@ CFLAGS="$SLKCFLAGS" \
|
|||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--with-ssl \
|
||||
|| exit 1
|
||||
--with-ssl
|
||||
|
||||
make || exit 1
|
||||
make install DESTDIR=$PKG || exit 1
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | 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
|
||||
)
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="centerim"
|
||||
VERSION="4.22.0"
|
||||
VERSION="4.22.2"
|
||||
HOMEPAGE="http://www.centerim.org"
|
||||
DOWNLOAD="http://www.centerim.org/download/centerim-4.22.0.tar.gz"
|
||||
MD5SUM="8fd90f8fab50262b553e81158a0db0aa"
|
||||
DOWNLOAD="http://www.centerim.org/download/releases/centerim-4.22.2.tar.gz"
|
||||
MD5SUM="dcced736e2f261e08e667403c42dc78f"
|
||||
MAINTAINER="Martin Lefevbre"
|
||||
EMAIL="dadexter@gmail.com"
|
||||
APPROVED="BP{k}"
|
||||
EMAIL="dadexter@sekurity.com"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
centerim: CenterIM - console based instant messaging client
|
||||
# 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------------------------------------------------------|
|
||||
centerim: CenterIM (console based instant messaging client)
|
||||
centerim:
|
||||
centerim: CenterIM is a multi-protocol command-line instant messenger.
|
||||
centerim: It supports most major protocols such as MSN, ICQ, Yahoo and
|
||||
|
@ -6,3 +14,6 @@ centerim: Jabber.
|
|||
centerim:
|
||||
centerim:
|
||||
centerim:
|
||||
centerim:
|
||||
centerim:
|
||||
centerim:
|
||||
|
|
Loading…
Reference in New Issue