1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/emulators/dynagui/files/patch-setup.py
Martin Wilke b003deb680 Dynagui is a GUI frontend to the dynamips Cisco 7200/36XX router
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
2009-02-14 19:25:53 +00:00

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'],
+ )
+