aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-05-29 14:48:11 +0000
committerMike Frysinger <vapier@gentoo.org>2005-05-29 14:48:11 +0000
commit1b3aa79122cbf3c201278f649b0a29dea219ab48 (patch)
tree739a304be70498dfb0edb7ae54ab184d1a2f6e4a /bin
parentblah, fix syntax error in scanelf checks (diff)
downloadportage-cvs-1b3aa79122cbf3c201278f649b0a29dea219ab48.tar.gz
portage-cvs-1b3aa79122cbf3c201278f649b0a29dea219ab48.tar.bz2
portage-cvs-1b3aa79122cbf3c201278f649b0a29dea219ab48.zip
add status banners to compile/package steps
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild-default-functions.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/ebuild-default-functions.sh b/bin/ebuild-default-functions.sh
index 84b4a5d..48746e0 100755
--- a/bin/ebuild-default-functions.sh
+++ b/bin/ebuild-default-functions.sh
@@ -2,7 +2,7 @@
# ebuild-default-functions.sh; default functions for ebuild env that aren't saved- specific to the portage instance.
# Copyright 2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/ebuild-default-functions.sh,v 1.27 2005/05/29 05:59:37 vapier Exp $
+# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/ebuild-default-functions.sh,v 1.28 2005/05/29 14:48:11 vapier Exp $
has_version() {
# if there is a predefined portageq call, use it.
@@ -293,6 +293,8 @@ dyn_compile() {
sleep 3
fi
+ echo ">>> Compiling source ..."
+
cd "${PORTAGE_BUILDDIR}"
if [ ! -e "build-info" ]; then
mkdir build-info
@@ -345,10 +347,13 @@ dyn_compile() {
touch DEBUGBUILD
fi
trap SIGINT SIGQUIT
+
+ echo ">>> Finished compiling"
}
dyn_package() {
trap "abort_package" SIGINT SIGQUIT
+ echo ">>> Generating binary package ..."
cd "${PORTAGE_BUILDDIR}/image"
tar cpvf - ./ | bzip2 -f > ../bin.tar.bz2 || die "Failed to create tarball"
cd ..