summaryrefslogtreecommitdiff
path: root/emulators/dynagen/files/setup.py
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2015-03-28 14:38:49 +0000
committerKurt Jaeger <pi@FreeBSD.org>2015-03-28 14:38:49 +0000
commitb16c6167b18d6acfd526cd0b905e10d82bad6e59 (patch)
tree9c4e873c918956d0a0d15764d551d1843eb7ba2b /emulators/dynagen/files/setup.py
parentCheck the xorg-fonts package rather than the file the meta port will not carr... (diff)
emulators/dynagen: shebangfix for python in the scripts instead of patches
PR: 194215 Submitted by: Pavel Volkov <pavelivolkov@gmail.com> (maintainer) Reviewed by: marino
Notes
Notes: svn path=/head/; revision=382486
Diffstat (limited to 'emulators/dynagen/files/setup.py')
-rw-r--r--emulators/dynagen/files/setup.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/emulators/dynagen/files/setup.py b/emulators/dynagen/files/setup.py
new file mode 100644
index 000000000000..c5a3ca264629
--- /dev/null
+++ b/emulators/dynagen/files/setup.py
@@ -0,0 +1,21 @@
+#!/usr/bin/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.11.0",
+ description = "A frontend for dynamips",
+ author = "Greg Anuzelli",
+ author_email = "dynagen@gmail.com",
+ url = "http://sourceforge.net/projects/dyna-gen",
+ license = "GPLv2",
+ long_description = """Dynagen is a utility for use with the dynamips Cisco router simulator. It allows you to quickly provision and manage virtual networks using an INI like configuration file.""",
+ py_modules = ['confConsole','console','dynamips_lib','pemu_lib', 'pemubin', 'pemuwrapper']
+)
+
+print "If you have installed the modules, copy dynagen to some "
+print "place in your $PATH, like /usr/local/bin/."