diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-05 17:47:34 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-06-05 17:47:34 +0000 |
commit | 551b059c19b7b7be0fc5cc752794b437c24c494b (patch) | |
tree | 508bcee69a03a1e7ba35bbf90ce46808239c903b /net-misc/bridge-utils/bridge-utils-1.4.ebuild | |
parent | Removing older ebuilds. (diff) | |
download | gentoo-2-551b059c19b7b7be0fc5cc752794b437c24c494b.tar.gz gentoo-2-551b059c19b7b7be0fc5cc752794b437c24c494b.tar.bz2 gentoo-2-551b059c19b7b7be0fc5cc752794b437c24c494b.zip |
Version bump per bug #204744. Cross compile should work now.
(Portage version: 2.1.5.2)
Diffstat (limited to 'net-misc/bridge-utils/bridge-utils-1.4.ebuild')
-rw-r--r-- | net-misc/bridge-utils/bridge-utils-1.4.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/net-misc/bridge-utils/bridge-utils-1.4.ebuild b/net-misc/bridge-utils/bridge-utils-1.4.ebuild new file mode 100644 index 000000000000..214ca7ce4cab --- /dev/null +++ b/net-misc/bridge-utils/bridge-utils-1.4.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2008 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.1 2008/06/05 17:47:34 robbat2 Exp $ + +inherit toolchain-funcs eutils autotools + +DESCRIPTION="Tools for configuring the Linux kernel 802.1d Ethernet Bridge" +HOMEPAGE="http://bridge.sourceforge.net/" +SRC_URI="mirror://sourceforge/bridge/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~x86" +IUSE="" + +DEPEND="virtual/os-headers" +RDEPEND="" + +get_headers() { + CTARGET=${CTARGET:-${CHOST}} + dir=/usr/include + tc-is-cross-compiler && dir=/usr/${CTARGET}/usr/include + echo "${dir}" +} + +src_unpack() { + unpack ${A} + cd "${S}" + eautoreconf +} + +src_compile() { + # use santitized headers and not headers from /usr/src + econf \ + --prefix=/ \ + --libdir=/usr/$(get_libdir) \ + --includedir=/usr/include \ + --with-linux-headers="$(get_headers)" \ + || die "econf failed" + emake || die "make failed" +} + +src_install () { + emake install DESTDIR="${D}" || die "make install failed" + dodoc AUTHORS ChangeLog README THANKS TODO + dodoc doc/{FAQ,FIREWALL,HOWTO,PROJECTS,RPM-GPG-KEY,SMPNOTES,WISHLIST} +} + +pkg_postinst () { + ewarn "This package no longer provides a seperate init script." + ewarn "Please utilize the new bridge support in baselayout." +} |