diff options
Diffstat (limited to 'sys-apps/tar/tar-1.13.25-r3.ebuild')
-rw-r--r-- | sys-apps/tar/tar-1.13.25-r3.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys-apps/tar/tar-1.13.25-r3.ebuild b/sys-apps/tar/tar-1.13.25-r3.ebuild index 298220e1a466..d987a78048d3 100644 --- a/sys-apps/tar/tar-1.13.25-r3.ebuild +++ b/sys-apps/tar/tar-1.13.25-r3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/tar-1.13.25-r3.ebuild,v 1.4 2002/10/16 19:10:17 bjb Exp $ +# $Header: -IUSE="nls static build" +IUSE="nls static build icc" S=${WORKDIR}/${P} DESCRIPTION="Use this to try make tarballs :)" @@ -15,7 +15,8 @@ KEYWORDS="x86 alpha" DEPEND="sys-apps/gzip sys-apps/bzip2 - app-arch/ncompress" + app-arch/ncompress + icc? ( >=dev-lang/icc-7.0 )" RDEPEND="nls? ( >=sys-devel/gettext-0.10.35 )" @@ -26,6 +27,7 @@ src_unpack() { } src_compile() { + use icc && CC="iccbin" LD="iccbin" local myconf [ -z "`use nls`" ] && myconf="--disable-nls" econf \ @@ -39,6 +41,7 @@ src_compile() { else emake LDFLAGS=-static || die fi + } src_install() { |