diff options
Diffstat (limited to 'dev-lang/icon/icon-9.4.2.ebuild')
-rw-r--r-- | dev-lang/icon/icon-9.4.2.ebuild | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/dev-lang/icon/icon-9.4.2.ebuild b/dev-lang/icon/icon-9.4.2.ebuild index 65e5509b284e..e656cef28307 100644 --- a/dev-lang/icon/icon-9.4.2.ebuild +++ b/dev-lang/icon/icon-9.4.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.4.2.ebuild,v 1.1 2004/07/31 01:20:54 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/icon/icon-9.4.2.ebuild,v 1.1.1.1 2005/11/30 09:58:06 chriswhite Exp $ MY_PV=${PV//./} SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon.v${MY_PV}src.tgz" @@ -9,7 +9,7 @@ DESCRIPTION="very high level language" LICENSE="as-is" SLOT="0" -KEYWORDS="~x86 ~amd64" +KEYWORDS="~alpha ~amd64 ~ppc-macos ~x86" IUSE="X" S=${WORKDIR}/icon.v${MY_PV}src @@ -25,10 +25,20 @@ src_unpack() { } src_compile() { + # select the right compile target. Note there are many platforms + # available + local mytarget; + if use ppc-macos; + then + mytarget="ppc_macos" + else + mytarget="linux" + fi + if use X; then - emake X-Configure name=linux -j1 || die + emake X-Configure name=${mytarget} -j1 || die else - emake Configure name=linux -j1 || die + emake Configure name=${mytarget} -j1 || die fi emake -j1 || die |