diff options
author | Fabio Erculiani <lxnay@gentoo.org> | 2012-04-28 12:49:21 +0000 |
---|---|---|
committer | Fabio Erculiani <lxnay@gentoo.org> | 2012-04-28 12:49:21 +0000 |
commit | 5a704c30d9ed84ea056ed4f344425ec46c0a4464 (patch) | |
tree | 022b81353c3e2f9e3a2b1c41902bfd44c2b0a402 /sys-apps | |
parent | Bump to 0.73-r1. Added dependency on dev-texlive/texlive-latexextra. Removed ... (diff) | |
download | gentoo-2-5a704c30d9ed84ea056ed4f344425ec46c0a4464.tar.gz gentoo-2-5a704c30d9ed84ea056ed4f344425ec46c0a4464.tar.bz2 gentoo-2-5a704c30d9ed84ea056ed4f344425ec46c0a4464.zip |
do not die in pkg_setup for build related matters
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/v86d/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/v86d/v86d-0.1.10.ebuild | 11 |
2 files changed, 12 insertions, 6 deletions
diff --git a/sys-apps/v86d/ChangeLog b/sys-apps/v86d/ChangeLog index d205692d797c..cf4ca9a8867d 100644 --- a/sys-apps/v86d/ChangeLog +++ b/sys-apps/v86d/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/v86d -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.34 2011/02/27 15:59:44 fauli Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.35 2012/04/28 12:49:21 lxnay Exp $ + + 28 Apr 2012; Fabio Erculiani <lxnay@gentoo.org> v86d-0.1.10.ebuild: + do not die in pkg_setup for build related matters 27 Feb 2011; Christian Faulhammer <fauli@gentoo.org> v86d-0.1.10.ebuild: stable x86, security bug 356557 diff --git a/sys-apps/v86d/v86d-0.1.10.ebuild b/sys-apps/v86d/v86d-0.1.10.ebuild index eff72872548e..1bbe5021940a 100644 --- a/sys-apps/v86d/v86d-0.1.10.ebuild +++ b/sys-apps/v86d/v86d-0.1.10.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/v86d-0.1.10.ebuild,v 1.3 2011/02/27 15:59:44 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/v86d-0.1.10.ebuild,v 1.4 2012/04/28 12:49:21 lxnay Exp $ EAPI=2 @@ -21,12 +21,15 @@ RDEPEND="" S="${WORKDIR}/${P//_*/}" pkg_setup() { - if [ -z "$(grep V86D /usr/$(get_libdir)/klibc/include/linux/connector.h)" ]; then + linux-info_pkg_setup +} + +src_prepare() { + if [ -z "$(grep V86D ${ROOT}/usr/$(get_libdir)/klibc/include/linux/connector.h)" ]; then eerror "You need to compile klibc against a kernel tree patched with uvesafb" eerror "prior to merging this package." die "Kernel not patched with uvesafb." fi - linux-info_pkg_setup } src_configure() { |