mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
b003deb680
simulator. It uses the dyna-gen library in order to communicate with the dynamips hypervisor. WWW: http://dynagui.sourceforge.net PR: ports/131544 Submitted by: Andrew Greenwood
24 lines
525 B
Python
24 lines
525 B
Python
--- setup.py.orig 1969-12-31 19:00:00.000000000 -0500
|
|
+++ setup.py 2009-02-09 11:03:10.000000000 -0500
|
|
@@ -0,0 +1,20 @@
|
|
+#!/usr/bin/env python
|
|
+
|
|
+from distutils.core import setup
|
|
+import os
|
|
+
|
|
+try:
|
|
+ os.rename('libs','dynagui_libs')
|
|
+except:
|
|
+ pass
|
|
+
|
|
+setup( name='dynagui',
|
|
+ version='0.4',
|
|
+ description='GUI-based frontend for the dynamips emulator',
|
|
+ author='',
|
|
+ author_email='',
|
|
+ url='',
|
|
+ py_modules=['dynagui'],
|
|
+ packages=['dynagui_libs'],
|
|
+ )
|
|
+
|