diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-02-12 17:50:14 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-02-12 17:50:14 +0000 |
commit | d7b442ad8d223c13d8b5af018117a5cd7cfbebac (patch) | |
tree | 75c4fd71da449744eb72c73f37f1d869d0be2eed /net-misc/bridge-utils | |
parent | Really removed mpi dep now (diff) | |
download | gentoo-2-d7b442ad8d223c13d8b5af018117a5cd7cfbebac.tar.gz gentoo-2-d7b442ad8d223c13d8b5af018117a5cd7cfbebac.tar.bz2 gentoo-2-d7b442ad8d223c13d8b5af018117a5cd7cfbebac.zip |
Add warning message for lack of CONFIG_BRIDGE, and add ~ppc64 keyword per request by JoseJX.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/bridge-utils')
-rw-r--r-- | net-misc/bridge-utils/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/bridge-utils/bridge-utils-1.4.ebuild | 11 |
2 files changed, 14 insertions, 6 deletions
diff --git a/net-misc/bridge-utils/ChangeLog b/net-misc/bridge-utils/ChangeLog index 110af3bd346c..dd5bc2fdb696 100644 --- a/net-misc/bridge-utils/ChangeLog +++ b/net-misc/bridge-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/bridge-utils -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bridge-utils/ChangeLog,v 1.54 2009/05/09 16:00:13 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/bridge-utils/ChangeLog,v 1.55 2010/02/12 17:50:14 robbat2 Exp $ + + 12 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> + bridge-utils-1.4.ebuild: + Add warning message for lack of CONFIG_BRIDGE, and add ~ppc64 keyword per + request by JoseJX. 09 May 2009; Raúl Porcel <armin76@gentoo.org> bridge-utils-1.4.ebuild: sparc stable wrt #268323 diff --git a/net-misc/bridge-utils/bridge-utils-1.4.ebuild b/net-misc/bridge-utils/bridge-utils-1.4.ebuild index 6c78532fafed..3ef858cf8143 100644 --- a/net-misc/bridge-utils/bridge-utils-1.4.ebuild +++ b/net-misc/bridge-utils/bridge-utils-1.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bridge-utils/bridge-utils-1.4.ebuild,v 1.8 2009/05/09 16:00:13 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bridge-utils/bridge-utils-1.4.ebuild,v 1.9 2010/02/12 17:50:14 robbat2 Exp $ -inherit toolchain-funcs eutils autotools +inherit toolchain-funcs eutils autotools linux-info DESCRIPTION="Tools for configuring the Linux kernel 802.1d Ethernet Bridge" HOMEPAGE="http://bridge.sourceforge.net/" @@ -10,12 +10,15 @@ SRC_URI="mirror://sourceforge/bridge/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 hppa ia64 ppc sparc x86" +KEYWORDS="amd64 hppa ia64 ppc sparc x86 ~ppc64" IUSE="" DEPEND="virtual/os-headers" RDEPEND="" +CONFIG_CHECK="~BRIDGE" +WARNING_BRIDGE="CONFIG_BRIDGE is required to get bridge devices in the kernel" + get_headers() { CTARGET=${CTARGET:-${CHOST}} dir=/usr/include |