diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2006-09-19 02:11:07 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2006-09-19 02:11:07 +0000 |
commit | 64cb341a666ce49fde93def0618113fd5af46447 (patch) | |
tree | 2f72f26cdaf28911085310c8f0df1e6bf7263ca7 /sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild | |
parent | tcltk -> tk USE flag change as per bug #17808 (diff) | |
download | historical-64cb341a666ce49fde93def0618113fd5af46447.tar.gz historical-64cb341a666ce49fde93def0618113fd5af46447.tar.bz2 historical-64cb341a666ce49fde93def0618113fd5af46447.zip |
tcltk -> tk USE flag change as per bug #17808
Package-Manager: portage-2.1.2_pre1
Diffstat (limited to 'sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild')
-rw-r--r-- | sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild b/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild index 6244f145ce73..f5a7b408bc7b 100644 --- a/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild +++ b/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild,v 1.8 2005/02/05 21:20:43 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/hfsutils-3.2.6-r3.ebuild,v 1.9 2006/09/19 02:11:06 cardoe Exp $ inherit eutils @@ -11,11 +11,12 @@ SRC_URI="ftp://ftp.mars.org/pub/hfs/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ppc ~sparc ppc64" -IUSE="tcltk" +IUSE="tcl tk" DEPEND="virtual/libc - tcltk? ( dev-lang/tcl dev-lang/tk )" -RDEPEND="" + tcl? ( dev-lang/tcl ) + tk? ( dev-lang/tk )" +RDEPEND="${RDEPEND}" src_unpack() { unpack ${A} @@ -25,7 +26,8 @@ src_unpack() { src_compile() { local myconf - use tcltk && myconf="--with-tcl --with-tk" + use tcl && myconf="--with-tcl" + use tk && myconf="--with-tk" econf ${myconf} || die emake PREFIX=/usr MANDIR=/usr/share/man || die |