diff options
author | Fabian Groffen <grobian@gentoo.org> | 2012-05-26 12:22:37 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2012-05-26 12:22:37 +0000 |
commit | a36902e60e021368fbf36173a38a07d6c3129569 (patch) | |
tree | 13c71361c51dc966bc0a1da6de49d4c5713ef1ea /virtual/shadow/shadow-0.ebuild | |
parent | Bump to 2.6, fixes security bug 417625. Thanks to Agostino Sarubbo <ago@gento... (diff) | |
download | gentoo-2-a36902e60e021368fbf36173a38a07d6c3129569.tar.gz gentoo-2-a36902e60e021368fbf36173a38a07d6c3129569.tar.bz2 gentoo-2-a36902e60e021368fbf36173a38a07d6c3129569.zip |
Make a no-op for Prefix, instead of requiring a package.provided package
(Portage version: 2.2.01.20430-prefix/cvs/Darwin i386)
Diffstat (limited to 'virtual/shadow/shadow-0.ebuild')
-rw-r--r-- | virtual/shadow/shadow-0.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/virtual/shadow/shadow-0.ebuild b/virtual/shadow/shadow-0.ebuild index 63bee00de0a2..f16a7068d310 100644 --- a/virtual/shadow/shadow-0.ebuild +++ b/virtual/shadow/shadow-0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/virtual/shadow/shadow-0.ebuild,v 1.3 2012/03/30 02:58:41 heroxbd Exp $ +# $Header: /var/cvsroot/gentoo-x86/virtual/shadow/shadow-0.ebuild,v 1.4 2012/05/26 12:22:37 grobian Exp $ DESCRIPTION="Virtual for user account management utilities" HOMEPAGE="" @@ -8,9 +8,11 @@ SRC_URI="" LICENSE="" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~x64-macos" IUSE="" # >=shadow-4-1 is required because of bug #367633 (user.eclass needs it). +# On Prefix installations we sort of have to hope there is some shadow +# available, on UNIX-like (or emulated) systems this usually is the case. DEPEND="" -RDEPEND="|| ( >=sys-apps/shadow-4.1 sys-apps/hardened-shadow )" +RDEPEND="!prefix? ( || ( >=sys-apps/shadow-4.1 sys-apps/hardened-shadow ) )" |