diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2009-10-11 17:00:04 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2009-10-11 17:00:04 +0000 |
commit | c48799cbb5ebde3731078b1828c037e2b70c594b (patch) | |
tree | a3a60661e3b61d8c7ca3886ab4c96df208344e65 | |
parent | alpha/ia64/sparc stable wrt #286653 (diff) | |
download | gentoo-2-c48799cbb5ebde3731078b1828c037e2b70c594b.tar.gz gentoo-2-c48799cbb5ebde3731078b1828c037e2b70c594b.tar.bz2 gentoo-2-c48799cbb5ebde3731078b1828c037e2b70c594b.zip |
Replace built_with_use with has_version.
(Portage version: 2.2_rc45/cvs/Linux i686)
-rw-r--r-- | app-emulation/xen-tools/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-emulation/xen-tools/ChangeLog b/app-emulation/xen-tools/ChangeLog index d254c0a34038..3b649f460a6a 100644 --- a/app-emulation/xen-tools/ChangeLog +++ b/app-emulation/xen-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/xen-tools # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v 1.52 2009/09/01 09:56:36 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v 1.53 2009/10/11 17:00:04 betelgeuse Exp $ + + 11 Oct 2009; Petteri Räty <betelgeuse@gentoo.org> + xen-tools-3.4.1-r1.ebuild: + Replace built_with_use with has_version. *xen-tools-3.4.1-r1 (01 Sep 2009) diff --git a/app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild b/app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild index 3442d44fa1b9..bf8196aa3ccf 100644 --- a/app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild +++ b/app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild,v 1.1 2009/09/01 09:56:36 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-3.4.1-r1.ebuild,v 1.2 2009/10/11 17:00:04 betelgeuse Exp $ EAPI="2" @@ -204,13 +204,13 @@ pkg_postinst() { ewarn "This probablem may be resolved as of Xen 3.0.4, if not post in the bug." fi - if ! built_with_use dev-lang/python ncurses; then + if ! has_version "dev-lang/python[ncurses]"; then echo ewarn "NB: Your dev-lang/python is built without USE=ncurses." ewarn "Please rebuild python with USE=ncurses to make use of xenmon.py." fi - if built_with_use sys-apps/iproute2 minimal; then + if has_version "sys-apps/iproute2[minimal]"; then echo ewarn "Your sys-apps/iproute2 is built with USE=minimal. Networking" ewarn "will not work until you rebuild iproute2 without USE=minimal." |