summaryrefslogtreecommitdiffstats
path: root/wine
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2007-03-20 21:34:43 +0000
committer Eric Hameleers <alien@slackware.com>2007-03-20 21:34:43 +0000
commit19b384f4de5a62a8a35af81e6574c837d9968ecb (patch)
tree06b9f8f0293db0d143a1aff3a9e895ab3ae16954 /wine
parent4372f0dd1a35a9cda77936bf2af20da80e3a9841 (diff)
downloadasb-19b384f4de5a62a8a35af81e6574c837d9968ecb.tar.gz
asb-19b384f4de5a62a8a35af81e6574c837d9968ecb.tar.xz
Update to 0.9.33, also added a warning when fontforge is missing (this bit me twice at least up to now)
Diffstat (limited to 'wine')
-rwxr-xr-xwine/build/wine.SlackBuild45
1 files changed, 28 insertions, 17 deletions
diff --git a/wine/build/wine.SlackBuild b/wine/build/wine.SlackBuild
index e0f5feb9..16ccf142 100755
--- a/wine/build/wine.SlackBuild
+++ b/wine/build/wine.SlackBuild
@@ -3,22 +3,23 @@
# Copyright (c) 2006,2007 Eric Hameleers <alien@slackware.com>
# All rights reserved.
#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
+# Permission to use, copy, modify, and distribute this software for
+# any purpose with or without fee is hereby granted, provided that
+# the above copyright notice and this permission notice appear in all
+# copies.
#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+# IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
# -----------------------------------------------------------------------------
# Slackware SlackBuild script
# ===========================
@@ -39,6 +40,8 @@
# 0.9.32-1: 02/mar/2007 by Eric Hameleers <alien@slackware.com>
# * Update. I wasn't so happy with 0.9.31, it would not run HL2
# anywhere near reliably.
+# 0.9.33-1: 20/mar/2007 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh wine.SlackBuild --cleanup' to build a Slackware package.
# The package (.tgz) plus descriptive .txt file are created in /tmp .
@@ -50,7 +53,7 @@
# Set initial variables:
PRGNAM=wine
-VERSION=${VERSION:-0.9.32}
+VERSION=${VERSION:-0.9.33}
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
@@ -70,7 +73,6 @@ TMP=${TMP:-/tmp/build}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-# Input URL: http://ibiblio.org/pub/linux/system/emulators/wine/wine-0.9.23.tar.bz2
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.bz2"
SRCURL="http://ibiblio.org/pub/linux/system/emulators/${PRGNAM}/${PRGNAM}-${VERSION}.tar.bz2"
@@ -167,6 +169,15 @@ echo "++"
echo "|| $PRGNAM-$VERSION"
echo "++"
+if [ ! `which fontforge >/dev/null 2>&1` ]; then
+ echo "##"
+ echo "## The 'fontforge' program does not seem to be installed."
+ echo "## wine uses fontforge to generate TTF fonts that your Windows programs may want to use!"
+ echo "## Continuing the build anyway, but you were warned..."
+ echo "##"
+ sleep 5
+fi
+
cd $TMP/tmp-$PRGNAM
echo "Extracting the source archive(s) for $PRGNAM..."