Browse Source

"Alan J. Wylie" <ebpxyvahk@wylie.me.uk>:

fixed multiple forgotten '$' before variable names in gnubg and smpeg


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2152 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
2ab3994108
2 changed files with 15 additions and 15 deletions
  1. +7
    -7
      package/kasc/gnubg/gnubg.conf
  2. +8
    -8
      package/kasc/smpeg/smpeg.conf

+ 7
- 7
package/kasc/gnubg/gnubg.conf

@ -34,18 +34,18 @@ gnubg_preconf()
preconf=gnubg_preconf
[ "ROCKCFG_PKG_GNUBG_READLINE" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_READLINE" == "1" ] && \
var_append extraconfopt " " "--with-readline"
[ "ROCKCFG_PKG_GNUBG_GDBM" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_GDBM" == "1" ] && \
var_append extraconfopt " " "--with-gdbm"
[ "ROCKCFG_PKG_GNUBG_GTK" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_GTK" == "1" ] && \
var_append extraconfopt " " "--with-gtk"
[ "ROCKCFG_PKG_GNUBG_GTK2" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_GTK2" == "1" ] && \
var_append extraconfopt " " "--with-gtk2"
[ "ROCKCFG_PKG_GNUBG_GTKEXTRA" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_GTKEXTRA" == "1" ] && \
var_append extraconfopt " " "--with-gtkextra"
[ "ROCKCFG_PKG_GNUBG_GUILE" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_GUILE" == "1" ] && \
var_append extraconfopt " " "--with-guile"
[ "ROCKCFG_PKG_GNUBG_SOUND" == "1" ] && \
[ "$ROCKCFG_PKG_GNUBG_SOUND" == "1" ] && \
var_append extraconfopt " " "--with-sound"

+ 8
- 8
package/kasc/smpeg/smpeg.conf

@ -28,42 +28,42 @@ smpeg_preconf()
ACLOCAL_FLAGS="-I $root/$ROCKCFG_PKG_GNOME14_CORE_PREFIX/share/aclocal"
export ACLOCAL_FLAGS
if [ ROCKCFG_PKG_SMPEG_MMX == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_MMX == 1 ] ; then
var_append extraconfopt " " "--enable-mmx"
else
var_append extraconfopt " " "--disable-mmx"
fi
if [ ROCKCFG_PKG_SMPEG_ATI == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_ATI == 1 ] ; then
var_append extraconfopt " " "--enable-ati"
else
var_append extraconfopt " " "--disable-ati"
fi
if [ ROCKCFG_PKG_SMPEG_SYNC == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_SYNC == 1 ] ; then
var_append extraconfopt " " "--enable-timestamp-sync"
else
var_append extraconfopt " " "--disable-timestamp-sync"
fi
if [ ROCKCFG_PKG_SMPEG_THSYS == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_THSYS == 1 ] ; then
var_append extraconfopt " " "--enable-threaded-system"
else
var_append extraconfopt " " "--disable-threaded-system"
fi
if [ ROCKCFG_PKG_SMPEG_THAUDIO == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_THAUDIO == 1 ] ; then
var_append extraconfopt " " "--enable-threaded-audio"
else
var_append extraconfopt " " "--disable-threaded-audio"
fi
if [ ROCKCFG_PKG_SMPEG_GTKPLAY == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_GTKPLAY == 1 ] ; then
var_append extraconfopt " " "--enable-gtk-player"
else
var_append extraconfopt " " "--disable-gtk-player"
fi
if [ ROCKCFG_PKG_SMPEG_GLPLAY == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_GLPLAY == 1 ] ; then
var_append extraconfopt " " "--enable-opengl-player"
else
var_append extraconfopt " " "--disable-opengl-player"
fi
if [ ROCKCFG_PKG_SMPEG_ASSERT == 1 ] ; then
if [ $ROCKCFG_PKG_SMPEG_ASSERT == 1 ] ; then
var_append extraconfopt " " "--enable-assertions"
else
var_append extraconfopt " " "--disable-assertions"

Loading…
Cancel
Save