aboutsummaryrefslogtreecommitdiff
path: root/src/createpkg
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2006-10-19 18:06:14 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2006-10-19 18:06:14 +0000
commit2a7ea754924b46ee8f70c6ff654bfec993c03976 (patch)
treed406f193aa888340447c15b5291a1ef2a6a4e62e /src/createpkg
parentaefb82a795b8666a3c5e1145f1024fb20e20e2f7 (diff)
downloadsimplepkg-2a7ea754924b46ee8f70c6ff654bfec993c03976.tar.gz
simplepkg-2a7ea754924b46ee8f70c6ff654bfec993c03976.tar.bz2
minor changes for 0.4.9
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@21 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'src/createpkg')
-rw-r--r--src/createpkg9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/createpkg b/src/createpkg
index c7b35a8..f4b8f82 100644
--- a/src/createpkg
+++ b/src/createpkg
@@ -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`