mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
Add LICENSE. Switch to PLIST_FILES. PR: ports/168937 Submitted by: Pavel I Volkov <pavelivolkov@googlemail.com> (maintainer)
24 lines
773 B
Python
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/."
|