summaryrefslogtreecommitdiff
path: root/emulators/dynagen-devel/files/patch-setup.py
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2007-09-23 04:22:40 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2007-09-23 04:22:40 +0000
commit1e2b51f63416f0f0d5f4394b9180fa2f06dfefc5 (patch)
treefc9484cd57b3f6f5d762a9d26bea915579451e2f /emulators/dynagen-devel/files/patch-setup.py
parent[PATCH]: lang/gdc: update to 0.24 (diff)
[NEW PORT] emulators/dynagen-devel: Text-based front end for Dynamips development version
Dynagen is a front-end for use with the Dynamips Cisco router emulator. It uses an INI-like configuration file to provision Dynamips emulator networks. It takes care of specifying the right port adapters, generating and matching up those pesky NIO descriptors, specifying bridges, frame-relay, ATM switches, etc. It also provides a management CLI for listing devices, suspending and reloading instances, etc. WWW: http://dyna-gen.sourceforge.net/ PR: ports/116343 Submitted by: Pavel I Volkov <pol@opk.ru>
Diffstat (limited to 'emulators/dynagen-devel/files/patch-setup.py')
-rw-r--r--emulators/dynagen-devel/files/patch-setup.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/emulators/dynagen-devel/files/patch-setup.py b/emulators/dynagen-devel/files/patch-setup.py
new file mode 100644
index 000000000000..3bffa985ea88
--- /dev/null
+++ b/emulators/dynagen-devel/files/patch-setup.py
@@ -0,0 +1,25 @@
+--- /dev/null Sat Nov 25 10:03:22 2006
++++ setup.py Wed Oct 11 02:08:24 2006
+@@ -0,0 +1,22 @@
++#!/usr/bin/env python
++
++"""Setup script for the dynagen module distribution."""
++# run this like python setup --root=/usr/local
++
++from distutils.core import setup, Extension
++
++setup( # Distribution meta-data
++ name = "dynagen",
++ version = "0.4.4",
++ description = "A frontend for dynamips",
++ author = "Greg Anuzelli",
++ author_email = "dynagen@gmail.com",
++ url = "http://sourceforge.net/projects/dyna-gen",
++
++ #py_modules = [ 'console', 'dynamips_lib']
++ py_modules = [ 'configobj', 'console', 'dynamips_lib',
++ 'validate']
++)
++
++print "If you have installed the modules, copy dynagen to some "
++print "place in your $PATH, like /usr/local/bin/."