diff options
-rw-r--r-- | net-misc/r8168/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/r8168/r8168-8.032.00.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/net-misc/r8168/ChangeLog b/net-misc/r8168/ChangeLog index c70a07ccad3d..d7238ebd741c 100644 --- a/net-misc/r8168/ChangeLog +++ b/net-misc/r8168/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/r8168 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/r8168/ChangeLog,v 1.12 2012/06/02 22:05:05 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/r8168/ChangeLog,v 1.13 2012/08/25 18:20:28 joker Exp $ + +*r8168-8.032.00 (25 Aug 2012) + + 25 Aug 2012; Christian Birchinger <joker@gentoo.org> +r8168-8.032.00.ebuild: + Version bump *r8168-8.031.00 (02 Jun 2012) diff --git a/net-misc/r8168/r8168-8.032.00.ebuild b/net-misc/r8168/r8168-8.032.00.ebuild new file mode 100644 index 000000000000..fa389d10491d --- /dev/null +++ b/net-misc/r8168/r8168-8.032.00.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/r8168/r8168-8.032.00.ebuild,v 1.1 2012/08/25 18:20:28 joker Exp $ + +EAPI=4 + +inherit linux-mod eutils + +DESCRIPTION="r8168 driver for Realtek 8111/8168 PCI-E NICs" +HOMEPAGE="http://www.realtek.com.tw" +SRC_URI="http://r8168.googlecode.com/files/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +KEYWORDS="~amd64 ~x86" + +MODULE_NAMES="r8168(net:${S}/src)" +BUILD_TARGETS="modules" +CONFIG_CHECK="!R8169" + +ERROR_R8169="${P} requires Realtek 8169 PCI Gigabit Ethernet adapter (CONFIG_R8169) to be DISABLED" + +pkg_setup() { + linux-mod_pkg_setup + BUILD_PARAMS="KERNELDIR=${KV_DIR}" +} + +src_install() { + linux-mod_src_install + dodoc README +} |