diff options
author | 2005-11-12 13:11:17 +0000 | |
---|---|---|
committer | 2005-11-12 13:11:17 +0000 | |
commit | e12db5ea005099067942c9f96a59ecea0e98efe7 (patch) | |
tree | d373f9fa68288cb943254f631063b5439d9c8e9e /net-misc/vconfig | |
parent | New dep for app-misc/bins (diff) | |
download | gentoo-2-e12db5ea005099067942c9f96a59ecea0e98efe7.tar.gz gentoo-2-e12db5ea005099067942c9f96a59ecea0e98efe7.tar.bz2 gentoo-2-e12db5ea005099067942c9f96a59ecea0e98efe7.zip |
- version bump. This release fixes return error codes in vconfig.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'net-misc/vconfig')
-rw-r--r-- | net-misc/vconfig/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/vconfig/Manifest | 6 | ||||
-rw-r--r-- | net-misc/vconfig/files/digest-vconfig-1.9 | 1 | ||||
-rw-r--r-- | net-misc/vconfig/vconfig-1.9.ebuild | 46 |
4 files changed, 57 insertions, 3 deletions
diff --git a/net-misc/vconfig/ChangeLog b/net-misc/vconfig/ChangeLog index 6c543e0be95f..df1dbf56beb4 100644 --- a/net-misc/vconfig/ChangeLog +++ b/net-misc/vconfig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/vconfig # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vconfig/ChangeLog,v 1.14 2005/06/27 14:30:21 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vconfig/ChangeLog,v 1.15 2005/11/12 13:11:17 solar Exp $ + +*vconfig-1.9 (12 Nov 2005) + + 12 Nov 2005; <solar@gentoo.org> +vconfig-1.9.ebuild: + - version bump. This release fixes return error codes in vconfig. 27 Jun 2005; David Holm <dholm@gentoo.org> vconfig-1.8.ebuild: Added to ~ppc. diff --git a/net-misc/vconfig/Manifest b/net-misc/vconfig/Manifest index 0c25b873dd42..3b536b21db97 100644 --- a/net-misc/vconfig/Manifest +++ b/net-misc/vconfig/Manifest @@ -1,4 +1,6 @@ -MD5 86bd4d60c8ba18b7eb9ffa9fa9c70c33 ChangeLog 2190 +MD5 57dac5daddc6fff2a14c2a4a26db3fe9 ChangeLog 2342 +MD5 4522407c3158529f4f2c56dce0c498b5 files/digest-vconfig-1.8 60 +MD5 4dd77294f21b543a02d809ac585aa12b files/digest-vconfig-1.9 60 MD5 5a9b16815d29150da06fa36dba3535f2 metadata.xml 500 MD5 cdadfe60a8f4b0dfd4a7f55002ff3bdb vconfig-1.8.ebuild 1515 -MD5 4522407c3158529f4f2c56dce0c498b5 files/digest-vconfig-1.8 60 +MD5 152315b61df6008e1a4b03af5679f512 vconfig-1.9.ebuild 1416 diff --git a/net-misc/vconfig/files/digest-vconfig-1.9 b/net-misc/vconfig/files/digest-vconfig-1.9 new file mode 100644 index 000000000000..2c16ca896bf3 --- /dev/null +++ b/net-misc/vconfig/files/digest-vconfig-1.9 @@ -0,0 +1 @@ +MD5 5f0c6060b33956fb16e11a15467dd394 vlan.1.9.tar.gz 176135 diff --git a/net-misc/vconfig/vconfig-1.9.ebuild b/net-misc/vconfig/vconfig-1.9.ebuild new file mode 100644 index 000000000000..cee345e4a5bc --- /dev/null +++ b/net-misc/vconfig/vconfig-1.9.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vconfig/vconfig-1.9.ebuild,v 1.1 2005/11/12 13:11:17 solar Exp $ + +inherit eutils flag-o-matic toolchain-funcs + +MY_PN="vlan" +S=${WORKDIR}/${MY_PN} + +DESCRIPTION="802.1Q vlan control utility" +HOMEPAGE="http://www.candelatech.com/~greear/vlan.html" +SRC_URI="http://www.candelatech.com/~greear/vlan/${MY_PN}.${PV}.tar.gz" +# mirror://gentoo/vconfig-1.7-gcc33-multiline.patch" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="static" +DEPEND="virtual/libc virtual/os-headers" +RDEPEND="!static? ( virtual/libc )" + +src_unpack() { + unpack ${MY_PN}.${PV}.tar.gz +} + +src_compile() { + use static && appened-ldflags -static + emake CC="$(tc-getCC)" CCFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die +} + +src_install() { + into / + dosbin vconfig || die "dosbin error" + + sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test.pl + sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test2.pl + + doman vconfig.8 || die "doman error" + dohtml howto.html vlan.html || die "dohtml error" + dodoc CHANGELOG README vlan_test*.pl || die "dodoc error" +} + +pkg_postinst() { + einfo "802.1Q VLAN support is now in the linux kernel as of 2.4.14." + ewarn "MTU problems exist for many ethernet drivers." + ewarn "Reduce the MTU on the interface to 1496 to work around them." +} |