diff options
author | rudson <rudson@370017ae-e619-0410-ac65-c121f96126d4> | 2008-01-22 17:46:04 +0000 |
---|---|---|
committer | rudson <rudson@370017ae-e619-0410-ac65-c121f96126d4> | 2008-01-22 17:46:04 +0000 |
commit | 8d0b4dedc9b7cc88ccf250dc5ecf58b0742a0410 (patch) | |
tree | c7336cfaa6ee649296890344d8288a3f5c06085b /app | |
parent | ee9b0418a0461ff49331732932ecf7ce9c005c62 (diff) | |
download | slackbuilds-8d0b4dedc9b7cc88ccf250dc5ecf58b0742a0410.tar.gz slackbuilds-8d0b4dedc9b7cc88ccf250dc5ecf58b0742a0410.tar.bz2 |
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1602 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'app')
-rwxr-xr-x | app/cdr/k9copy/k9copy.SlackBuild | 2 | ||||
-rw-r--r-- | app/dicts/babytrans/babytrans.SlackBuild | 16 | ||||
-rw-r--r-- | app/doc/xmltoman/xmltoman.SlackBuild | 10 | ||||
-rwxr-xr-x | app/editors/kile/kile.SlackBuild | 2 | ||||
-rw-r--r-- | app/editors/kxmleditor/kxmleditor.SlackBuild | 2 | ||||
-rwxr-xr-x | app/emulation/wine/wine.SlackBuild | 8 | ||||
-rw-r--r-- | app/misc/wine-doors/wine-doors.SlackBuild | 20 | ||||
-rw-r--r-- | app/text/gnome-doc-utils/gnome-doc-utils.SlackBuild | 2 | ||||
-rw-r--r-- | app/text/rarian/rarian.SlackBuild | 2 | ||||
-rw-r--r-- | app/text/scrollkeeper/scrollkeeper.SlackBuild | 16 |
10 files changed, 40 insertions, 40 deletions
diff --git a/app/cdr/k9copy/k9copy.SlackBuild b/app/cdr/k9copy/k9copy.SlackBuild index e24071c1..029d7a20 100755 --- a/app/cdr/k9copy/k9copy.SlackBuild +++ b/app/cdr/k9copy/k9copy.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure diff --git a/app/dicts/babytrans/babytrans.SlackBuild b/app/dicts/babytrans/babytrans.SlackBuild index c3acd68a..306c88e3 100644 --- a/app/dicts/babytrans/babytrans.SlackBuild +++ b/app/dicts/babytrans/babytrans.SlackBuild @@ -87,7 +87,7 @@ fi # Get dictionaries DIC_LIST="EngtoDut.dic.gz EngtoEng.dic.gz EngtoFre.dic.gz EngtoGer.dic.gz EngtoHeb.dic.gz EngtoIta.dic.gz EngtoJpn.dic.gz - EngtoPor.dic.gz EngtoSpa.dic.gz english.dic.gz english2.dic.gz" + EngtoPor.dic.gz EngtoSpa.dic.gz english.dic.gz english2.dic.gz" for i in $DIC_LIST; do [ ! -e $SRC_DIR/$i ] && wget $DIC_URL/$i -P $SRC_DIR/ @@ -98,7 +98,7 @@ done # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure @@ -169,12 +169,12 @@ cat << EODESC > "$PKG/install/slack-desc" |-----handy-ruler----------------------------------------------------| babytrans: babytrans by Slack.Sarava babytrans: -babytrans: BabyTrans is a graphical interface for the Babylon Translator dictionaries (available -babytrans: under Windows). (More information: <http://www.babylon.com>) -babytrans: -babytrans: Copy the dictionary files from Babylon Translator either in the /usr/share/babytrans -babytrans: directory or in another directory that you indicate in the configuration. -babytrans: +babytrans: BabyTrans is a graphical interface for the Babylon Translator +babytrans: dictionaries (available under Windows). (More information: +babytrans: <http://www.babylon.com>) +babytrans: Copy the dictionary files from Babylon Translator either in the +babytrans: /usr/share/babytrans directory or in another directory that you +babytrans: indicate in the configuration. babytrans: The files to copy are: babytrans: - english.dic (common for all languages) babytrans: - Engto***.dic (with *** depending on the language) diff --git a/app/doc/xmltoman/xmltoman.SlackBuild b/app/doc/xmltoman/xmltoman.SlackBuild index 97ba99cb..c71c3ae2 100644 --- a/app/doc/xmltoman/xmltoman.SlackBuild +++ b/app/doc/xmltoman/xmltoman.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Patch source @@ -101,11 +101,11 @@ for patch in $patches; do fi done -# Buils package -make PREFIX=$PREFIX +# Compile +make PREFIX=$PREFIX || exit $ERROR_MAKE -# Install package -make install PREFIX=$PKG/usr +# Install +make install PREFIX=$PKG/usr || exit $ERROR_INSTALL # Strip binaries ( cd "$PKG" diff --git a/app/editors/kile/kile.SlackBuild b/app/editors/kile/kile.SlackBuild index 819c306a..6fd28322 100755 --- a/app/editors/kile/kile.SlackBuild +++ b/app/editors/kile/kile.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure diff --git a/app/editors/kxmleditor/kxmleditor.SlackBuild b/app/editors/kxmleditor/kxmleditor.SlackBuild index 51a951ad..d7359380 100644 --- a/app/editors/kxmleditor/kxmleditor.SlackBuild +++ b/app/editors/kxmleditor/kxmleditor.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure diff --git a/app/emulation/wine/wine.SlackBuild b/app/emulation/wine/wine.SlackBuild index 2fe6714a..60215813 100755 --- a/app/emulation/wine/wine.SlackBuild +++ b/app/emulation/wine/wine.SlackBuild @@ -16,7 +16,7 @@ # # slackbuild for wine, by Rudson R. Alves # requires: -# tested: wine-0.9.50 +# tested: wine-0.9.53 # # Look for slackbuildrc @@ -31,7 +31,7 @@ CWD="$(pwd)" SRC_NAME="wine" PKG_NAME="wine" ARCH=${ARCH:=i486} -SRC_VERSION=${VERSION:=0.9.51} +SRC_VERSION=${VERSION:=0.9.53} PKG_VERSION="$(echo "$SRC_VERSION" | tr '[[:blank:]-]' '_')" BUILD=${BUILD:=1rra} SRC_DIR=${SRC_DIR:=$CWD}/$PKG_NAME @@ -78,7 +78,7 @@ mkdir -p "$PKG_WORK" || exit $ERROR_MKDIR # Dowload source if necessary SRC="$SRC_NAME-$VERSION.tar.bz2" -URL="http://ibiblio.org/pub/linux/system/emulators/wine/$SRC" +URL="http://downloads.sourceforge.net/wine/$SRC" if [ ! -s "$SRC_DIR/$SRC" ] || ! bunzip2 -t "$SRC_DIR/$SRC" 2> /dev/null; then wget "$URL" -O "$SRC_DIR/$SRC" || exit $ERROR_WGET @@ -87,7 +87,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure diff --git a/app/misc/wine-doors/wine-doors.SlackBuild b/app/misc/wine-doors/wine-doors.SlackBuild index 583f4157..75abb46d 100644 --- a/app/misc/wine-doors/wine-doors.SlackBuild +++ b/app/misc/wine-doors/wine-doors.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Install winedoors in $DESTDIR @@ -114,15 +114,15 @@ cat << EODESC > "$PKG/install/slack-desc" |-----handy-ruler---------------------------------------------------| wine-doors: wine-doors by Slack.Sarava wine-doors: -wine-doors: Wine-doors is an application designed to make installing windows software on Linux, -wine-doors: Solaris or other Unix systems easier. Wine-doors is essentially a package management -wine-doors: tool for windows software on Linux systems. Most Linux desktop users are familiar -wine-doors: with package management style application delivery, so it made sense to apply this -wine-doors: model to windows software. -wine-doors: -wine-doors: Wine-doors works by leveraging the exquisite software, libraries and tools created -wine-doors: over at WineHQ, there are also plans to support Cedega, cvscedega and Crossover -wine-doors: Office. +wine-doors: Wine-doors is an application designed to make installing windows +wine-doors: software on Linux, Solaris or other Unix systems easier. Wine- +wine-doors: doors is essentially a package management tool for windows software +wine-doors: on Linux systems. Most Linux desktop users are familiar with +wine-doors: package management style application delivery, so it made sense to +wine-doors: apply this model to windows software. +wine-doors: Wine-doors works by leveraging the exquisite software, libraries +wine-doors: and tools created over at WineHQ, there are also plans to support +wine-doors: Cedega, cvscedega and Crossover Office. EODESC # Build the package diff --git a/app/text/gnome-doc-utils/gnome-doc-utils.SlackBuild b/app/text/gnome-doc-utils/gnome-doc-utils.SlackBuild index cdfe7f6c..f32e3146 100644 --- a/app/text/gnome-doc-utils/gnome-doc-utils.SlackBuild +++ b/app/text/gnome-doc-utils/gnome-doc-utils.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure diff --git a/app/text/rarian/rarian.SlackBuild b/app/text/rarian/rarian.SlackBuild index 0eff78ae..d50ef7b1 100644 --- a/app/text/rarian/rarian.SlackBuild +++ b/app/text/rarian/rarian.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure diff --git a/app/text/scrollkeeper/scrollkeeper.SlackBuild b/app/text/scrollkeeper/scrollkeeper.SlackBuild index 2fb11771..6b19aead 100644 --- a/app/text/scrollkeeper/scrollkeeper.SlackBuild +++ b/app/text/scrollkeeper/scrollkeeper.SlackBuild @@ -86,7 +86,7 @@ fi # Untar cd "$PKG_WORK" tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR -PKG_SRC=`ls -l | awk '/^d/ { print $8 }'` +PKG_SRC="$PWD/`ls -l | awk '/^d/ { print $8 }'`" cd "$PKG_SRC" # Configure @@ -131,13 +131,13 @@ cat << EODESC > "$PKG/install/slack-desc" |-----handy-ruler-------------------------------------------------| scrollkeeper: scrollkeeper by Slack.Sarava scrollkeeper: -scrollkeeper: ScrollKeeper is a cataloging system for documentation on open systems. It manages -scrollkeeper: documentation metadata (as specified by the Open Source Metadata Framework(OMF)) -scrollkeeper: and provides a simple API to allow help browsers to find, sort, and search the -scrollkeeper: document catalog. It will also be able to communicate with catalog servers on the -scrollkeeper: Net to search for documents which are not on the local system. -scrollkeeper: -scrollkeeper: +scrollkeeper: ScrollKeeper is a cataloging system for documentation on open +scrollkeeper: systems. It manages documentation metadata (as specified by the +scrollkeeper: Open Source Metadata Framework(OMF)) and provides a simple API +scrollkeeper: to allow help browsers to find, sort, and search the document +scrollkeeper: catalog. It will also be able to communicate with catalog +scrollkeeper: servers on the Net to search for documents which are not on the +scrollkeeper: local system. scrollkeeper: scrollkeeper: EODESC |