mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-02 13:04:42 +01:00
libraries/rlog: Updated for version 1.4
This commit is contained in:
parent
135a1f540f
commit
6a27b08bfc
3 changed files with 18 additions and 14 deletions
|
@ -1,9 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for rlog
|
||||
# Written by ppr:kut <hmwiesinger@gmx.at>
|
||||
|
||||
# Copyright 2007 Heinz Wiesinger
|
||||
# Copyright 2007-2008 Heinz Wiesinger <pprkut@liwjatan.at>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,13 +22,12 @@
|
|||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=rlog
|
||||
VERSION=1.3.7
|
||||
VERSION=1.4
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -39,13 +37,17 @@ if [ "$ARCH" = "i486" ]; then
|
|||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tgz
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
@ -56,7 +58,9 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--disable-static
|
||||
--disable-static \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--host=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="rlog"
|
||||
VERSION="1.3.7"
|
||||
VERSION="1.4"
|
||||
HOMEPAGE="http://www.arg0.net/rlog"
|
||||
DOWNLOAD="http://rlog.googlecode.com/files/rlog-1.3.7.tgz"
|
||||
MD5SUM="b84df0d8a57ea676c4bf594c7a35cd25"
|
||||
DOWNLOAD="http://rlog.googlecode.com/files/rlog-1.4.tar.gz"
|
||||
MD5SUM="c29f74e0f50d66b20312d049b683ff82"
|
||||
MAINTAINER="ppr:kut"
|
||||
EMAIL="HMWiesinger@gmx.at"
|
||||
APPROVED="rworkman"
|
||||
EMAIL="pprkut@liwjatan.at"
|
||||
APPROVED="David Somero"
|
|
@ -5,13 +5,13 @@
|
|||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
|-----handy-ruler--------------------------------------------------------|
|
||||
rlog: rlog (C++ Logging Library)
|
||||
rlog:
|
||||
rlog: RLog provides a flexible message logging facility for C++ programs and
|
||||
rlog: libraries. It is meant to be fast enough to leave in production code.
|
||||
rlog:
|
||||
rlog: Homepage: http://pobox.com/~vgough/rlog
|
||||
rlog: Homepage: http://www.arg0.net/rlog
|
||||
rlog:
|
||||
rlog:
|
||||
rlog:
|
||||
|
|
Loading…
Reference in a new issue