summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Jezak <josejx@gentoo.org>2006-11-13 09:09:19 +0000
committerJoseph Jezak <josejx@gentoo.org>2006-11-13 09:09:19 +0000
commit6bab54b57a4eeb5aceab3ff7edd4bff6083dc7e1 (patch)
tree30cfb2eea396119bc48abff228b16c4ada07aafc /sys-fs/hfsutils
parent"Stable x86, bug #147570" (diff)
downloadgentoo-2-6bab54b57a4eeb5aceab3ff7edd4bff6083dc7e1.tar.gz
gentoo-2-6bab54b57a4eeb5aceab3ff7edd4bff6083dc7e1.tar.bz2
gentoo-2-6bab54b57a4eeb5aceab3ff7edd4bff6083dc7e1.zip
Fixed bug #150437. Removed old versions.
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'sys-fs/hfsutils')
-rw-r--r--sys-fs/hfsutils/ChangeLog7
-rw-r--r--sys-fs/hfsutils/hfsutils-3.2.6-r5.ebuild15
2 files changed, 16 insertions, 6 deletions
diff --git a/sys-fs/hfsutils/ChangeLog b/sys-fs/hfsutils/ChangeLog
index 6f32bb897ff1..370b5d2828f5 100644
--- a/sys-fs/hfsutils/ChangeLog
+++ b/sys-fs/hfsutils/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-fs/hfsutils
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/ChangeLog,v 1.15 2006/09/19 02:11:06 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/ChangeLog,v 1.16 2006/11/13 09:09:19 josejx Exp $
+
+ 13 Nov 2006; Joseph Jezak <josejx@gentoo.org> -hfsutils-3.2.6.ebuild,
+ -hfsutils-3.2.6-r1.ebuild, -hfsutils-3.2.6-r2.ebuild,
+ -hfsutils-3.2.6-r3.ebuild, hfsutils-3.2.6-r5.ebuild:
+ Fixed bug #150437. Removed old versions.
19 Sep 2006; Doug Goldstein <cardoe@gentoo.org> hfsutils-3.2.6-r1.ebuild,
hfsutils-3.2.6-r2.ebuild, hfsutils-3.2.6-r3.ebuild,
diff --git a/sys-fs/hfsutils/hfsutils-3.2.6-r5.ebuild b/sys-fs/hfsutils/hfsutils-3.2.6-r5.ebuild
index 9faa500fd47b..0c00fd223ccc 100644
--- a/sys-fs/hfsutils/hfsutils-3.2.6-r5.ebuild
+++ b/sys-fs/hfsutils/hfsutils-3.2.6-r5.ebuild
@@ -1,6 +1,6 @@
# 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-r5.ebuild,v 1.2 2006/09/19 02:11:06 cardoe Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsutils/hfsutils-3.2.6-r5.ebuild,v 1.3 2006/11/13 09:09:19 josejx Exp $
inherit eutils toolchain-funcs
@@ -26,10 +26,15 @@ src_unpack() {
src_compile() {
tc-export CC CPP LD RANLIB
- econf \
- $(use_with tcl) \
- $(use_with tk) \
- || die
+ ### use tk implies --with-tcl - bug #150437
+ if use tk; then
+ econf --with-tcl --with-tk || die
+ else
+ econf \
+ $(use_with tcl) \
+ $(use_with tk) \
+ || die
+ fi
emake PREFIX=/usr MANDIR=/usr/share/man || die
emake -C hfsck PREFIX=/usr MANDIR=/usr/share/man || die
}