libraries/GConf: Miscellaneous cleanups.
This commit is contained in:
parent
eb7c90aa31
commit
23cb2d2942
|
@ -25,10 +25,19 @@
|
|||
|
||||
PRGNAM=GConf
|
||||
VERSION=2.26.0
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
|
@ -43,6 +52,9 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -79,7 +91,7 @@ make install-strip DESTDIR=$PKG
|
|||
mv $PKG/etc/gconf/2/path $PKG/etc/gconf/2/path.new
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a ABOUT-NLS AUTHORS COPYING ChangeLog NEWS README TODO \
|
||||
cp -a AUTHORS COPYING ChangeLog NEWS README TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
( cd $PKG/usr/doc/$PRGNAM-$VERSION ; ln -s /usr/share/gtk-doc/html/gconf html )
|
||||
|
|
|
@ -11,9 +11,9 @@ GConf:
|
|||
GConf: GConf is a system for storing application preferences.
|
||||
GConf: It is intended for user preferences. GNOME desktop relies
|
||||
GConf: on this package.
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
GConf:
|
||||
|
|
Loading…
Reference in New Issue