diff options
author | Joshua Kinard <kumba@gentoo.org> | 2004-06-10 07:09:04 +0000 |
---|---|---|
committer | Joshua Kinard <kumba@gentoo.org> | 2004-06-10 07:09:04 +0000 |
commit | 2673b187d86e7e1e8c743cb70451c624be4179b0 (patch) | |
tree | 8048497d4253099e1f8bf7e57431344d88ff161d /sys-apps/lcdutils/lcdutils-0.2.ebuild | |
parent | Changed the ebuild to allow installation on x86 systems, since newer Cobalt m... (diff) | |
download | gentoo-2-2673b187d86e7e1e8c743cb70451c624be4179b0.tar.gz gentoo-2-2673b187d86e7e1e8c743cb70451c624be4179b0.tar.bz2 gentoo-2-2673b187d86e7e1e8c743cb70451c624be4179b0.zip |
Left out a conditional...
Diffstat (limited to 'sys-apps/lcdutils/lcdutils-0.2.ebuild')
-rw-r--r-- | sys-apps/lcdutils/lcdutils-0.2.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys-apps/lcdutils/lcdutils-0.2.ebuild b/sys-apps/lcdutils/lcdutils-0.2.ebuild index cc3ac8798c6c..d76b43ecf75c 100644 --- a/sys-apps/lcdutils/lcdutils-0.2.ebuild +++ b/sys-apps/lcdutils/lcdutils-0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lcdutils/lcdutils-0.2.ebuild,v 1.2 2004/06/10 07:06:05 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lcdutils/lcdutils-0.2.ebuild,v 1.3 2004/06/10 07:09:04 kumba Exp $ DESCRIPTION="Cobalt RaQ/Qube LCD Writing and Button reading utilities" HOMEPAGE="" @@ -17,10 +17,12 @@ S=${WORKDIR}/${P} pkg_setup() { # This package is aimed primarily at Cobalt Microserver systems. Mips originally, but it # is reported to work on x86-based systems as well. - echo -e "" - ewarn "This package is only for Cobalt Microserver systems. Its use on other types of" - ewarn "hardware is untested." - echo -e "" + if [ "${PROFILE_ARCH}" != "cobalt" ]; then + echo -e "" + ewarn "This package is only for Cobalt Microserver systems. Its use on other types of" + ewarn "hardware is untested." + echo -e "" + fi } src_unpack() { |