summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-10-18 22:47:25 +0000
committerMike Frysinger <vapier@gentoo.org>2011-10-18 22:47:25 +0000
commitc15f627a2af14db00b8b4762f26927d17d5b053f (patch)
treea10602bc3d12d37afcf72d005edc056213388fec /sys-apps/coreutils
parentVersion bump (diff)
downloadgentoo-2-c15f627a2af14db00b8b4762f26927d17d5b053f.tar.gz
gentoo-2-c15f627a2af14db00b8b4762f26927d17d5b053f.tar.bz2
gentoo-2-c15f627a2af14db00b8b4762f26927d17d5b053f.zip
Extend man page hack to missing perl #387091 by nzqr.
(Portage version: 2.2.0_alpha65/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/coreutils')
-rw-r--r--sys-apps/coreutils/ChangeLog5
-rw-r--r--sys-apps/coreutils/coreutils-8.14.ebuild11
2 files changed, 11 insertions, 5 deletions
diff --git a/sys-apps/coreutils/ChangeLog b/sys-apps/coreutils/ChangeLog
index f9cc238f7946..d5383e77068f 100644
--- a/sys-apps/coreutils/ChangeLog
+++ b/sys-apps/coreutils/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/coreutils
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.325 2011/10/13 16:12:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/ChangeLog,v 1.326 2011/10/18 22:47:25 vapier Exp $
+
+ 18 Oct 2011; Mike Frysinger <vapier@gentoo.org> coreutils-8.14.ebuild:
+ Extend man page hack to missing perl #387091 by nzqr.
*coreutils-8.14 (13 Oct 2011)
diff --git a/sys-apps/coreutils/coreutils-8.14.ebuild b/sys-apps/coreutils/coreutils-8.14.ebuild
index d7d758e2d861..59f3a1db644a 100644
--- a/sys-apps/coreutils/coreutils-8.14.ebuild
+++ b/sys-apps/coreutils/coreutils-8.14.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-8.14.ebuild,v 1.1 2011/10/13 16:12:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/coreutils/coreutils-8.14.ebuild,v 1.2 2011/10/18 22:47:25 vapier Exp $
EAPI="3"
@@ -45,9 +45,6 @@ src_prepare() {
epatch
fi
- # Avoid perl dep for compiled in dircolors default #348642
- has_version dev-lang/perl || touch src/dircolors.h
-
# Since we've patched many .c files, the make process will try to
# re-build the manpages by running `./bin --help`. When doing a
# cross-compile, we can't do that since 'bin' isn't a native bin.
@@ -55,6 +52,12 @@ src_prepare() {
# so let's just update the timestamps and skip the help2man step.
set -- man/*.x
tc-is-cross-compiler && touch ${@/%x/1}
+
+ # Avoid perl dep for compiled in dircolors default #348642
+ if ! has_version dev-lang/perl ; then
+ touch src/dircolors.h
+ touch ${@/%x/1}
+ fi
}
src_configure() {