diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-08 00:38:58 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-08 00:38:58 +0000 |
commit | edb706aa199291395e30eedb3e51d2e5c6500f18 (patch) | |
tree | f5f529f0ae0a69313c671603c8a03e91189f2252 /net-misc/vmpsd | |
parent | remove cross USE flag (diff) | |
download | gentoo-2-edb706aa199291395e30eedb3e51d2e5c6500f18.tar.gz gentoo-2-edb706aa199291395e30eedb3e51d2e5c6500f18.tar.bz2 gentoo-2-edb706aa199291395e30eedb3e51d2e5c6500f18.zip |
New package. Initial ebuild partially from bug #61571 by Chris Verges <squirrel@headnut.org>, but heavily modified by Robin H. Johnson <robbat2@gentoo.org>.
Diffstat (limited to 'net-misc/vmpsd')
-rw-r--r-- | net-misc/vmpsd/ChangeLog | 12 | ||||
-rw-r--r-- | net-misc/vmpsd/Manifest | 2 | ||||
-rw-r--r-- | net-misc/vmpsd/files/digest-vmpsd-1.3 | 1 | ||||
-rw-r--r-- | net-misc/vmpsd/metadata.xml | 8 | ||||
-rw-r--r-- | net-misc/vmpsd/vmpsd-1.3.ebuild | 33 |
5 files changed, 56 insertions, 0 deletions
diff --git a/net-misc/vmpsd/ChangeLog b/net-misc/vmpsd/ChangeLog new file mode 100644 index 000000000000..2698e66f6cce --- /dev/null +++ b/net-misc/vmpsd/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for net-misc/vmpsd +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vmpsd/ChangeLog,v 1.1 2004/12/08 00:38:58 robbat2 Exp $ + +*vmpsd-1.3 (07 Dec 2004) + + 07 Dec 2004; Robin H. Johnson <robbat2@gentoo.org> +metadata.xml, + +vmpsd-1.3.ebuild: + New package. Initial ebuild partially from bug #61571 by Chris Verges + <squirrel@headnut.org>, but heavily modified by Robin H. Johnson + <robbat2@gentoo.org>. + diff --git a/net-misc/vmpsd/Manifest b/net-misc/vmpsd/Manifest new file mode 100644 index 000000000000..851b69649f01 --- /dev/null +++ b/net-misc/vmpsd/Manifest @@ -0,0 +1,2 @@ +MD5 ce767f98116739ea7043865d04fb4254 vmpsd-1.3.ebuild 535 +MD5 d792e8dbf7b9f22201dbcfb493118d81 files/digest-vmpsd-1.3 60 diff --git a/net-misc/vmpsd/files/digest-vmpsd-1.3 b/net-misc/vmpsd/files/digest-vmpsd-1.3 new file mode 100644 index 000000000000..4b7e9060c3bd --- /dev/null +++ b/net-misc/vmpsd/files/digest-vmpsd-1.3 @@ -0,0 +1 @@ +MD5 07ad86343ad715c94b9de4c54c62d3db vmpsd-1.3.tar.gz 95202 diff --git a/net-misc/vmpsd/metadata.xml b/net-misc/vmpsd/metadata.xml new file mode 100644 index 000000000000..f2da6b81903a --- /dev/null +++ b/net-misc/vmpsd/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>robbat2@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/net-misc/vmpsd/vmpsd-1.3.ebuild b/net-misc/vmpsd/vmpsd-1.3.ebuild new file mode 100644 index 000000000000..e6f182e778ca --- /dev/null +++ b/net-misc/vmpsd/vmpsd-1.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/vmpsd/vmpsd-1.3.ebuild,v 1.1 2004/12/08 00:38:58 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="An open-source VLAN management system" +HOMEPAGE="http://vmps.sourceforge.net" +SRC_URI="mirror://sourceforge/vmps/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" # snmp support is totally broken in this package +DEPEND="virtual/libc" +S="${WORKDIR}/${PN}" + +src_compile() { + # SNMP support is broken in this package + # It was written for old GCC + UCD-SNMP only. + econf \ + --sysconfdir=/etc/vmpsd \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + cd ${S} + emake DESTDIR=${D} install || die + dodoc README INSTALL AUTHORS doc/*txt + newdoc external/README README.external + newdoc tools/README README.tools + dodoc external/simple tools/vqpcli.pl +} |