network/konversation: Updated for version 1.0.1
This commit is contained in:
parent
227edd54d4
commit
1870920366
|
@ -7,4 +7,3 @@ Konversation features include:
|
|||
* interaction with KAddressBook * themable nicklist icons
|
||||
* OSD (On Screen Display) * IPv6 support
|
||||
* multiserver support * [Secure Sockets Layer|SSL]]
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ VERSION=1.0.1
|
|||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$NAME
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
@ -23,8 +23,6 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
elif [ "$ARCH" = "athlon_xp" ]; then
|
||||
SLKCFLAGS="-O3 -march=athlon-xp -mtune=athlon-xp -pipe -fomit-frame-pointer -f fast-math -mmmx -m3dnow -msse -mfpmath=sse"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
|
@ -37,10 +35,12 @@ cd $NAME-$VERSION || exit 1
|
|||
chown -R root:root .
|
||||
chmod -R a-s,u+w,go+r-w .
|
||||
|
||||
KDEPREF=$(kde-config --prefix)
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/opt/kde \
|
||||
--prefix=$KDEPREF \
|
||||
--localstatedir=/var \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/man \
|
||||
|
@ -67,7 +67,7 @@ find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs st
|
|||
if [ -d $PKG/usr/man ]; then
|
||||
( 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
|
||||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
fi
|
||||
|
||||
|
|
|
@ -5,4 +5,4 @@ DOWNLOAD="http://download.berlios.de/konversation/konversation-1.0.1.tar.bz2 "
|
|||
MD5SUM="60c2c5f94d4a916055db09728304b19f"
|
||||
MAINTAINER="Michiel van Wessem"
|
||||
EMAIL="michiel.van.wessem@gmail.com"
|
||||
APPROVED="robw810"
|
||||
APPROVED="rworkman"
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
# 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------------------------------------------------------|
|
||||
konversation: Konversation (KDE IRC client)
|
||||
konversation:
|
||||
konversation: Konversation is a user-friendly and highly configurable
|
||||
|
|
Loading…
Reference in New Issue