1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
"""Setup script for the GNS3 packages."""
import sys, os
sys.path.append('./src')
from distutils.core import setup, Extension
from glob import glob
# current version of GNS3
VERSION = '0.7.2'
if sys.platform.startswith('win'):
# Path to Qt directory (Windows)
QTDIR = r'C:\Qt\4.6.2'
try:
import py2exe
except ImportError:
raise RuntimeError, "Cannot import py2exe"
data_files = [("Langs", glob(r'src\GNS3\Langs\*.qm')),
('src\GNS3\Dynagen\configspec'),
('LICENSE'),
("plugins\iconengines", glob(QTDIR + r'\plugins\iconengines\*.dll')),
("plugins\imageformats", glob(QTDIR + r'\plugins\imageformats\*.dll')),
(QTDIR + r'\bin\QtSvg4.dll'),
(QTDIR + r'\bin\QtXml4.dll'),
("", glob(r'..\GNS3 Windows Files\*'))]
# Settings for py2exe, packages values are to tell to py2exe about hidden imports
setup(windows=[{"script":"gns3",
"icon_resources": [(1, "C:\gns3.ico")]}],
zipfile=None,
data_files=data_files,
options={"py2exe":
{
"includes": ["sip"],
"optimize": 2,
"packages": ["GNS3.Ui.ConfigurationPages.Page_ATMSW",
"GNS3.Ui.ConfigurationPages.Page_ATMBR",
"GNS3.Ui.ConfigurationPages.Page_Cloud",
"GNS3.Ui.ConfigurationPages.Page_ETHSW",
"GNS3.Ui.ConfigurationPages.Page_FRSW",
"GNS3.Ui.ConfigurationPages.Page_IOSRouter",
"GNS3.Ui.ConfigurationPages.Page_FW",
"GNS3.Ui.ConfigurationPages.Page_ASA",
"GNS3.Ui.ConfigurationPages.Page_JunOS",
"GNS3.Ui.ConfigurationPages.Page_IDS",
"GNS3.Ui.ConfigurationPages.Page_Qemu",
"GNS3.Ui.ConfigurationPages.Page_DecorativeNode",
"GNS3.Ui.ConfigurationPages.Page_PreferencesDynamips",
"GNS3.Ui.ConfigurationPages.Page_PreferencesGeneral",
"GNS3.Ui.ConfigurationPages.Page_PreferencesCapture",
"GNS3.Ui.ConfigurationPages.Page_PreferencesQemu",
]
}
}
)
# Compile qemuwrapper
sys.path.append('./qemuwrapper')
setup(console=["qemuwrapper\qemuwrapper.py"], zipfile=None)
elif sys.platform.startswith('darwin'):
import setuptools
QTDIR = r'/usr/local/Trolltech/Qt-4.7.0/'
data_files = [('', glob(r'src/GNS3/Langs/*.qm')),
('src/GNS3/Dynagen/configspec'),
('qemuwrapper/qemuwrapper.py'),
('LICENSE'),
("../PlugIns/iconengines", [QTDIR + r'/plugins/iconengines/libqsvgicon.dylib']),
("../PlugIns/imageformats", [QTDIR + r'/plugins/imageformats/libqgif.dylib',
QTDIR + r'/plugins/imageformats/libqjpeg.dylib',
QTDIR + r'/plugins/imageformats/libqsvg.dylib'])
]
APP = ['gns3.py']
OPTIONS = {'argv_emulation': True,
'semi_standalone': False,
'site_packages': True,
'optimize': 2,
'iconfile': 'gns3.icns',
'includes': ['sip',
'PyQt4.QtCore',
'PyQt4.QtGui',
'PyQt4.QtSvg',
'PyQt4.QtXml',
'PyQt4.QtNetwork',
'GNS3.Ui.ConfigurationPages.Page_ATMSW',
'GNS3.Ui.ConfigurationPages.Page_ATMBR',
'GNS3.Ui.ConfigurationPages.Page_Cloud',
'GNS3.Ui.ConfigurationPages.Page_ETHSW',
'GNS3.Ui.ConfigurationPages.Page_FRSW',
'GNS3.Ui.ConfigurationPages.Page_IOSRouter',
'GNS3.Ui.ConfigurationPages.Page_FW',
'GNS3.Ui.ConfigurationPages.Page_ASA',
'GNS3.Ui.ConfigurationPages.Page_JunOS',
'GNS3.Ui.ConfigurationPages.Page_IDS',
'GNS3.Ui.ConfigurationPages.Page_Qemu',
'GNS3.Ui.ConfigurationPages.Page_DecorativeNode',
'GNS3.Ui.ConfigurationPages.Page_PreferencesDynamips',
'GNS3.Ui.ConfigurationPages.Page_PreferencesGeneral',
'GNS3.Ui.ConfigurationPages.Page_PreferencesCapture',
'GNS3.Ui.ConfigurationPages.Page_PreferencesQemu'
],
'plist' : { 'CFBundleDisplayName': 'GNS3',
'CFBundleGetInfoString' : 'GNS3, Graphical Network Simulator',
'CFBundleIdentifier':'net.gns3',
'CFBundleShortVersionString':VERSION,
'CFBundleVersion': 'GNS3 ' + VERSION,
'LSMinimumSystemVersion':'10.5',
'LSMultipleInstancesProhibited':'true',
'NSHumanReadableCopyright':'GNU General Public License (GPL), Jeremy Grossmann',
'CFBundleDocumentTypes': [{
'CFBundleTypeExtensions': ['net'],
'CFBundleTypeName': 'GNS3 Topology',
'CFBundleTypeRole': 'Viewer',
'CFBundleTypeIconFile': 'gns3.icns',
}]
}
}
setuptools.setup(
name='GNS3',
app=APP,
data_files=data_files,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
print '*** Removing Qt debug libs ***'
for root, dirs, files in os.walk('./dist'):
for file in files:
if 'debug' in file:
print 'Deleting', file
os.remove(os.path.join(root,file))
print '*** Making DMG ***'
os.chdir('dist')
os.system(QTDIR + r'/bin/macdeployqt GNS3.app -dmg')
os.system('cp ../dynamips-0.2.8-RC2-OSX-Leopard.intel.bin ./GNS3.app/Contents/Resources')
else:
setup( # Distribution meta-data
name = "GNS3",
version = VERSION,
description = "GNS3 is a graphical network simulator based on Dynamips, an IOS emulator which allows users to run IOS binary images from Cisco Systems and Qemu for emulating PIX & ASA firewalls as well as Juniper routers and Cisco IDS/IPS (binary images are not part of this package).",
license = 'GNU General Public License (GPL), see the LICENSE file for detailed info',
author = "Jeremy Grossmann, David Ruiz, Romain Lamaison, Aurelien Levesque, Xavier Alt",
author_email = "code@gns3.net",
platforms = 'Windows, Unix and MacOSX',
url = "http://www.gns3.net/",
scripts = [ 'gns3' ],
package_dir = { '': 'src' },
packages = [
'GNS3',
'GNS3.Config',
'GNS3.Globals',
'GNS3.Dynagen',
'GNS3.Defaults',
'GNS3.External',
'GNS3.Link',
'GNS3.Node',
'GNS3.Ui',
'GNS3.Ui.ConfigurationPages',
'GNS3.Langs'],
package_data = { 'GNS3': ['Langs/*.qm', 'Dynagen/configspec'] }
)
|