]> gitweb.fluxo.info Git - simplepkg.git/commitdiff
minor changes for 0.4.9
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Thu, 19 Oct 2006 18:06:14 +0000 (18:06 +0000)
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Thu, 19 Oct 2006 18:06:14 +0000 (18:06 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@21 04377dda-e619-0410-9926-eae83683ac58

simplepkg.SlackBuild
src/createpkg

index 1eab6746e1fdfceefd558df67b94f1e6b49fc30b..bb087f65ee89921bd89c4da758be3d601c904cba 100755 (executable)
@@ -6,7 +6,7 @@
 PACKAGE="simplepkg"
 PACK_DIR="package-$PACKAGE"
 BUILD="1rha"
-VERSION="0.4.9pre6"
+VERSION="0.4.9"
 ARCH="noarch"
 LIBEXEC="/usr/libexec/$PACKAGE"
 BINDIR="/usr/bin"
index c7b35a813dbaec51738c29f9f496163e52463d7a..f4b8f82de670e66bdb3d836c8b708b4f1a22680b 100644 (file)
@@ -220,6 +220,7 @@ if [ -z "$BUILD_SCRIPT" ]; then
 fi
 
 SCRIPT_BASE="`dirname $BUILD_SCRIPT`"
+echo $BASENAME: found script $PACKAGE.SlackBuild, now checking for dependencies
 
 # sets the package's slack-required
 if [ -f "$SCRIPT_BASE/$PACKAGE.slack-required" ]; then
@@ -228,12 +229,8 @@ elif [ -f "$SCRIPT_BASE/slack-required" ]; then
   SLACK_REQ="$SCRIPT_BASE/slack-required"
 fi
 
-echo $BASENAME: found script $PACKAGE.SlackBuild, now checking for dependencies
-
 if [ ! -z "$SLACK_REQ" ] && [ "$NO_DEPS" != "1" ]; then
-
   # this routine checks for dependencies in package's slack-required
-
   while read dep; do
     if [ ! -z "$dep" ]; then
       program="`echo $dep | awk '{ print $1 }'`"
@@ -242,7 +239,9 @@ if [ ! -z "$SLACK_REQ" ] && [ "$NO_DEPS" != "1" ]; then
       solve_dep $program $condition $version
     fi
   done < <( cat $SLACK_REQ )
-
+  echo $BASNEMAE: done checking for $PACKAGE dependencies
+else
+  echo $BASENAME: no unmet dependencies for $PACKAGE
 fi
 
 echo $BASENAME: processing `basename $BUILD_SCRIPT`