diff options
Diffstat (limited to 'sys-apps/systrace/systrace-1.0-r2.ebuild')
-rw-r--r-- | sys-apps/systrace/systrace-1.0-r2.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys-apps/systrace/systrace-1.0-r2.ebuild b/sys-apps/systrace/systrace-1.0-r2.ebuild index 0457100b9f0e..19e438082fe5 100644 --- a/sys-apps/systrace/systrace-1.0-r2.ebuild +++ b/sys-apps/systrace/systrace-1.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/systrace/systrace-1.0-r2.ebuild,v 1.4 2003/06/26 23:21:23 natey Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/systrace/systrace-1.0-r2.ebuild,v 1.5 2003/09/07 00:56:32 msterret Exp $ DESCRIPTION="Systrace userland binary" HOMEPAGE="http://www.systrace.org" @@ -18,7 +18,7 @@ IUSE="gtk" DEPEND="gtk? ( =x11-libs/gtk+-1.2* =dev-libs/glib-1.2* )" pkg_setup() { - if ! [ -f ${INCLUDE0} ] || ! [ -f ${INCLUDE1} ] ; + if ! [ -f ${INCLUDE0} ] || ! [ -f ${INCLUDE1} ] ; then einfo einfo "ERROR: It does not look like you have a systrace capable kernel. If" @@ -37,23 +37,23 @@ src_compile() { if [ "`use gtk`" ] then einfo - einfo "You are building systrace with gtk support; this version will not" - einfo "function without the sys-apps/gtk-systrace package installed. Please" - einfo "set the USE=\"-gtk\" to build the non-gui capable version of systrace." + einfo "You are building systrace with gtk support; this version will not" + einfo "function without the sys-apps/gtk-systrace package installed. Please" + einfo "set the USE=\"-gtk\" to build the non-gui capable version of systrace." einfo - sleep 7 + sleep 7 ./configure --host=${CHOST} || die elif [ -z "`use gtk`" ] then einfo - einfo "You are building systrace without gtk support; please set USE=\"gtk\"" + einfo "You are building systrace without gtk support; please set USE=\"gtk\"" einfo "to build the gui capable version of systrace." einfo - sleep 7 + sleep 7 cd ${S} epatch ../${PATCH1} || die ./configure --host=${CHOST} || die - fi + fi emake || die } |