ports/emulators/dynagen/files/patch-setup.py
Wesley Shields b19a109f0d Fix RUN_DEPENDS.
Add LICENSE.
Switch to PLIST_FILES.

PR:		ports/168937
Submitted by:	Pavel I Volkov <pavelivolkov@googlemail.com> (maintainer)
2012-06-22 01:49:00 +00:00

24 lines
773 B
Python

--- /dev/null 2008-06-11 11:33:00.000000000 +0400
+++ setup.py 2008-06-11 11:38:41.000000000 +0400
@@ -0,0 +1,21 @@
+#!/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.11.0",
+ description = "A frontend for dynamips",
+ author = "Greg Anuzelli",
+ author_email = "dynagen@gmail.com",
+ url = "http://sourceforge.net/projects/dyna-gen",
+
+ 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/."