diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-01-05 11:59:01 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-01-05 11:59:01 +0800 |
commit | 02bdff10efe89910a7b92e45b007f4fe22435c75 (patch) | |
tree | 4e324f17e512413bb7f61872d9fa27d00486dde1 | |
parent | 99f152356b2b28a083626634c6ef77a41fe47c68 (diff) | |
download | freebsd-ports-graphics-02bdff10efe89910a7b92e45b007f4fe22435c75.tar.gz freebsd-ports-graphics-02bdff10efe89910a7b92e45b007f4fe22435c75.tar.zst freebsd-ports-graphics-02bdff10efe89910a7b92e45b007f4fe22435c75.zip |
add py-wmgeneral 0.1
A library that makes it possible to write WindowMaker dockapps in Python
-rw-r--r-- | x11-toolkits/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/py-wmdockapps/Makefile | 23 | ||||
-rw-r--r-- | x11-toolkits/py-wmdockapps/distinfo | 1 | ||||
-rw-r--r-- | x11-toolkits/py-wmdockapps/pkg-descr | 16 | ||||
-rw-r--r-- | x11-toolkits/py-wmdockapps/pkg-plist | 4 | ||||
-rw-r--r-- | x11-toolkits/py-wmgeneral/Makefile | 23 | ||||
-rw-r--r-- | x11-toolkits/py-wmgeneral/distinfo | 1 | ||||
-rw-r--r-- | x11-toolkits/py-wmgeneral/pkg-descr | 16 | ||||
-rw-r--r-- | x11-toolkits/py-wmgeneral/pkg-plist | 4 |
9 files changed, 89 insertions, 0 deletions
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index 2268886d7b2..45ba2df1ca1 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -156,6 +156,7 @@ SUBDIR += py-kde SUBDIR += py-qt SUBDIR += py-tkinter + SUBDIR += py-wmgeneral SUBDIR += py-wxPython SUBDIR += py-xlib SUBDIR += qscintilla diff --git a/x11-toolkits/py-wmdockapps/Makefile b/x11-toolkits/py-wmdockapps/Makefile new file mode 100644 index 00000000000..c5b3826ea49 --- /dev/null +++ b/x11-toolkits/py-wmdockapps/Makefile @@ -0,0 +1,23 @@ +# ex:ts=8 +# Ports collection makefile for: pywmgeneral +# Date created: Jan 5, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= wmgeneral +PORTVERSION= 0.1 +CATEGORIES= x11-toolkits python windowmaker +MASTER_SITES= http://foo.unix.se/pywmdockapps/downloads/current/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py${PORTNAME}-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A library that makes it possible to write WindowMaker dockapps in Python + +USE_XLIB= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +.include <bsd.port.mk> diff --git a/x11-toolkits/py-wmdockapps/distinfo b/x11-toolkits/py-wmdockapps/distinfo new file mode 100644 index 00000000000..b37366ce12b --- /dev/null +++ b/x11-toolkits/py-wmdockapps/distinfo @@ -0,0 +1 @@ +MD5 (pywmgeneral-0.1.tar.gz) = a393198a17f0c3f14920525cffc82669 diff --git a/x11-toolkits/py-wmdockapps/pkg-descr b/x11-toolkits/py-wmdockapps/pkg-descr new file mode 100644 index 00000000000..6e25ae5ebbf --- /dev/null +++ b/x11-toolkits/py-wmdockapps/pkg-descr @@ -0,0 +1,16 @@ +Pywmgeneral is a python module that will help you develope WindowMaker +dockapps in python. It is mostly a wrapper around the functions from the +popular wmgeneral.c, but some new functions are added too. + +It also contains the Python written module pywmhelpers.py which contains +functions to aid the development of wm dockapps. This module contains python +functions that wrap up the functions which the extension module provides. They +ease up argument passing and give nicer return values. Some additional +functions, like help for handling a simple configuration file is also +available. This module is better documented than the pywmgeneral. It is +adviced to only use pywmhelpers and not touch the pywmgeneral module directly +at all. For information about how to use the module, see the documentation in +pywmhelpers.py. It is also possible to import it in the interactive interpreter +and issue 'help(pywmhelpers)'. + +WWW: http://foo.unix.se/pywmdockapps/ diff --git a/x11-toolkits/py-wmdockapps/pkg-plist b/x11-toolkits/py-wmdockapps/pkg-plist new file mode 100644 index 00000000000..d092e4f645b --- /dev/null +++ b/x11-toolkits/py-wmdockapps/pkg-plist @@ -0,0 +1,4 @@ +%%PYTHON_SITELIBDIR%%/pywmgeneral.so +%%PYTHON_SITELIBDIR%%/pywmhelpers.py +%%PYTHON_SITELIBDIR%%/pywmhelpers.pyc +%%PYTHON_SITELIBDIR%%/pywmhelpers.pyo diff --git a/x11-toolkits/py-wmgeneral/Makefile b/x11-toolkits/py-wmgeneral/Makefile new file mode 100644 index 00000000000..c5b3826ea49 --- /dev/null +++ b/x11-toolkits/py-wmgeneral/Makefile @@ -0,0 +1,23 @@ +# ex:ts=8 +# Ports collection makefile for: pywmgeneral +# Date created: Jan 5, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= wmgeneral +PORTVERSION= 0.1 +CATEGORIES= x11-toolkits python windowmaker +MASTER_SITES= http://foo.unix.se/pywmdockapps/downloads/current/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= py${PORTNAME}-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A library that makes it possible to write WindowMaker dockapps in Python + +USE_XLIB= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +.include <bsd.port.mk> diff --git a/x11-toolkits/py-wmgeneral/distinfo b/x11-toolkits/py-wmgeneral/distinfo new file mode 100644 index 00000000000..b37366ce12b --- /dev/null +++ b/x11-toolkits/py-wmgeneral/distinfo @@ -0,0 +1 @@ +MD5 (pywmgeneral-0.1.tar.gz) = a393198a17f0c3f14920525cffc82669 diff --git a/x11-toolkits/py-wmgeneral/pkg-descr b/x11-toolkits/py-wmgeneral/pkg-descr new file mode 100644 index 00000000000..6e25ae5ebbf --- /dev/null +++ b/x11-toolkits/py-wmgeneral/pkg-descr @@ -0,0 +1,16 @@ +Pywmgeneral is a python module that will help you develope WindowMaker +dockapps in python. It is mostly a wrapper around the functions from the +popular wmgeneral.c, but some new functions are added too. + +It also contains the Python written module pywmhelpers.py which contains +functions to aid the development of wm dockapps. This module contains python +functions that wrap up the functions which the extension module provides. They +ease up argument passing and give nicer return values. Some additional +functions, like help for handling a simple configuration file is also +available. This module is better documented than the pywmgeneral. It is +adviced to only use pywmhelpers and not touch the pywmgeneral module directly +at all. For information about how to use the module, see the documentation in +pywmhelpers.py. It is also possible to import it in the interactive interpreter +and issue 'help(pywmhelpers)'. + +WWW: http://foo.unix.se/pywmdockapps/ diff --git a/x11-toolkits/py-wmgeneral/pkg-plist b/x11-toolkits/py-wmgeneral/pkg-plist new file mode 100644 index 00000000000..d092e4f645b --- /dev/null +++ b/x11-toolkits/py-wmgeneral/pkg-plist @@ -0,0 +1,4 @@ +%%PYTHON_SITELIBDIR%%/pywmgeneral.so +%%PYTHON_SITELIBDIR%%/pywmhelpers.py +%%PYTHON_SITELIBDIR%%/pywmhelpers.pyc +%%PYTHON_SITELIBDIR%%/pywmhelpers.pyo |