summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-10-02 10:28:57 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-10-02 10:28:57 +0000
commit0dbbc42601fe1d4f73c05087c2ea585f833054df (patch)
treeeacf534f3cfebaa41e8fd3535a6d352acd5af3ec
parentStable on ppc-macos (Manifest recommit) (diff)
downloadgentoo-2-0dbbc42601fe1d4f73c05087c2ea585f833054df.tar.gz
gentoo-2-0dbbc42601fe1d4f73c05087c2ea585f833054df.tar.bz2
gentoo-2-0dbbc42601fe1d4f73c05087c2ea585f833054df.zip
two new stable ebuilds
-rw-r--r--net-misc/e100/ChangeLog8
-rw-r--r--net-misc/e100/Manifest8
-rw-r--r--net-misc/e100/e100-3.0.27.ebuild45
-rw-r--r--net-misc/e100/e100-3.1.4.ebuild45
-rw-r--r--net-misc/e100/files/digest-e100-3.0.271
-rw-r--r--net-misc/e100/files/digest-e100-3.1.41
6 files changed, 105 insertions, 3 deletions
diff --git a/net-misc/e100/ChangeLog b/net-misc/e100/ChangeLog
index c31e03e8cb7e..9e213f56cc41 100644
--- a/net-misc/e100/ChangeLog
+++ b/net-misc/e100/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/e100
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/e100/ChangeLog,v 1.18 2004/06/24 23:42:32 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/e100/ChangeLog,v 1.19 2004/10/02 10:28:57 mholzer Exp $
+
+*e100-3.1.4 (02 Oct 2004)
+
+ 02 Oct 2004; Martin Holzer <mholzer@gentoo.org> +e100-3.0.27.ebuild,
+ +e100-3.1.4.ebuild:
+ two ned stable ebuilds
03 Jun 2004; David Holm <dholm@gentoo.org> e100-2.3.43.ebuild:
Added to ~ppc.
diff --git a/net-misc/e100/Manifest b/net-misc/e100/Manifest
index 15c6f3b99d21..ce2129a443a9 100644
--- a/net-misc/e100/Manifest
+++ b/net-misc/e100/Manifest
@@ -1,7 +1,11 @@
-MD5 a11c7026532b9c630a37fe43189df174 e100-2.3.43.ebuild 1323
MD5 5ed5fb6aa905cd76f8b7fc85c5965965 e100-2.3.40.ebuild 1338
+MD5 a11c7026532b9c630a37fe43189df174 e100-2.3.43.ebuild 1323
MD5 3ded3f6a3cef774b10f14f5e650ca41d e100-2.3.38.ebuild 1337
MD5 1293e2eb606050c542e0537b3c298a95 ChangeLog 2154
+MD5 a11c7026532b9c630a37fe43189df174 e100-3.0.27.ebuild 1323
+MD5 a11c7026532b9c630a37fe43189df174 e100-3.1.4.ebuild 1323
+MD5 4f0dd6379b1822a15c1a045f9ab3bdbb files/digest-e100-2.3.43 62
MD5 456a2fadd965714c35b513211b9026d4 files/digest-e100-2.3.38 62
MD5 030ad45e9b529643af0e9373951c8585 files/digest-e100-2.3.40 62
-MD5 4f0dd6379b1822a15c1a045f9ab3bdbb files/digest-e100-2.3.43 62
+MD5 7109598eaf156258c3d57464c7db076b files/digest-e100-3.0.27 62
+MD5 9836bcc64e3aeed83ba061c5cc260676 files/digest-e100-3.1.4 61
diff --git a/net-misc/e100/e100-3.0.27.ebuild b/net-misc/e100/e100-3.0.27.ebuild
new file mode 100644
index 000000000000..a08d485f11ea
--- /dev/null
+++ b/net-misc/e100/e100-3.0.27.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/e100/e100-3.0.27.ebuild,v 1.1 2004/10/02 10:28:57 mholzer Exp $
+
+DESCRIPTION="Linux base driver for the Intel(R) PRO/100 family of adapters"
+HOMEPAGE="http://support.intel.com/support/network/adapter/index.htm"
+LICENSE="GPL-2"
+DEPEND="virtual/linux-sources"
+
+SRC_URI="mirror://sourceforge/e1000/${P}.tar.gz"
+SLOT="${KV}"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+src_compile() {
+ check_KV
+ cd "${S}/src"
+ emake KSRC=/usr/src/linux clean e100.o || die
+}
+
+src_install () {
+ insinto "/lib/modules/${KV}/kernel/drivers/net"
+ doins ${S}/src/e100.o
+ doman e100.7
+ dodoc LICENSE README SUMS e100.spec ldistrib.txt
+}
+
+pkg_postinst() {
+ einfo ""
+ einfo "If you are already running the eepro100 driver, you will need "
+ einfo "to remove it before loading the e100 driver as they cannot "
+ einfo "be used simulaneously."
+ einfo ""
+ einfo "To load the module at boot up, add e100 to /etc/modules.autoload "
+ einfo "and remove eepro100"
+ einfo ""
+ einfo "To load the module now without rebooting, use the "
+ einfo "following command:"
+ einfo "modprobe e100"
+ einfo ""
+ einfo "For more detailed information about this driver, "
+ einfo "see the man page by typing:"
+ einfo "man 7 e100"
+ einfo ""
+}
diff --git a/net-misc/e100/e100-3.1.4.ebuild b/net-misc/e100/e100-3.1.4.ebuild
new file mode 100644
index 000000000000..ebfb2dae6356
--- /dev/null
+++ b/net-misc/e100/e100-3.1.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/e100/e100-3.1.4.ebuild,v 1.1 2004/10/02 10:28:57 mholzer Exp $
+
+DESCRIPTION="Linux base driver for the Intel(R) PRO/100 family of adapters"
+HOMEPAGE="http://support.intel.com/support/network/adapter/index.htm"
+LICENSE="GPL-2"
+DEPEND="virtual/linux-sources"
+
+SRC_URI="mirror://sourceforge/e1000/${P}.tar.gz"
+SLOT="${KV}"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+src_compile() {
+ check_KV
+ cd "${S}/src"
+ emake KSRC=/usr/src/linux clean e100.o || die
+}
+
+src_install () {
+ insinto "/lib/modules/${KV}/kernel/drivers/net"
+ doins ${S}/src/e100.o
+ doman e100.7
+ dodoc LICENSE README SUMS e100.spec ldistrib.txt
+}
+
+pkg_postinst() {
+ einfo ""
+ einfo "If you are already running the eepro100 driver, you will need "
+ einfo "to remove it before loading the e100 driver as they cannot "
+ einfo "be used simulaneously."
+ einfo ""
+ einfo "To load the module at boot up, add e100 to /etc/modules.autoload "
+ einfo "and remove eepro100"
+ einfo ""
+ einfo "To load the module now without rebooting, use the "
+ einfo "following command:"
+ einfo "modprobe e100"
+ einfo ""
+ einfo "For more detailed information about this driver, "
+ einfo "see the man page by typing:"
+ einfo "man 7 e100"
+ einfo ""
+}
diff --git a/net-misc/e100/files/digest-e100-3.0.27 b/net-misc/e100/files/digest-e100-3.0.27
new file mode 100644
index 000000000000..51cd997460fc
--- /dev/null
+++ b/net-misc/e100/files/digest-e100-3.0.27
@@ -0,0 +1 @@
+MD5 d192f412995f4361aecfc8a3b47e96b5 e100-3.0.27.tar.gz 47974
diff --git a/net-misc/e100/files/digest-e100-3.1.4 b/net-misc/e100/files/digest-e100-3.1.4
new file mode 100644
index 000000000000..b3e0b72c6edb
--- /dev/null
+++ b/net-misc/e100/files/digest-e100-3.1.4
@@ -0,0 +1 @@
+MD5 2c7a45fff2c93a90f1b16ac5801f4878 e100-3.1.4.tar.gz 49388