New port pygtk, a set of wrappers around gtk for python.

This commit is contained in:
Thomas Gellekum 1998-06-02 07:41:06 +00:00
parent 89b9e89255
commit 27aa89a33a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=11208
20 changed files with 420 additions and 0 deletions

View File

@ -0,0 +1,32 @@
# New ports collection makefile for: pygtk
# Version required: 0.4.3
# Date created: 30 May 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= pygtk-0.4.3
CATEGORIES= x11
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/python/
MAINTAINER= tg@FreeBSD.ORG
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
LIB_DEPENDS= gtk\\.1\\.:${PORTSDIR}/x11/gtk
GNU_CONFIGURE= yes
ALL_TARGET= sharedmods
MAKE_FLAGS= OPT="${CFLAGS}"
post-install:
@${MKDIR} ${PREFIX}/share/examples/pygtk
@(cd ${WRKSRC}/examples; tar cf - *) | \
(cd ${PREFIX}/share/examples/pygtk; tar xf -)
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/pygtk
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pygtk
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (pygtk-0.4.3.tar.gz) = b1ad362caf67c54b44bc552c8bd4355a

View File

@ -0,0 +1 @@
Python wrapper for the GTK library.

View File

@ -0,0 +1,16 @@
Gtkmodule and Gtkinter
======================
Author: James Henstridge <james@daa.com.au>
This archive contains modules that allow you to use gtk in Python
programs. At this point, it is still very much a work in progress.
Despite the low version number, this peice of software is quite useful,
and is usable to write moderately complex programs. (see the examples
directory for some examples of the simpler programs you could write).
If you have any enhancements or bug reports, please send them to me at
james@daa.com.au. If you are going to send me diffs, my prefered
format is unified diff (ie. diff -u), although context diffs are OK as
well. Please don't send me diffs which don't have any context, as these
are almost useless if I try to apply them manually, or have a different
version of the source tree.

View File

@ -0,0 +1,55 @@
lib/python1.5/site-packages/GDK.py
lib/python1.5/site-packages/GDK.pyc
lib/python1.5/site-packages/GTK.py
lib/python1.5/site-packages/GTK.pyc
lib/python1.5/site-packages/GtkExtra.py
lib/python1.5/site-packages/GtkExtra.pyc
lib/python1.5/site-packages/Gtkinter.py
lib/python1.5/site-packages/Gtkinter.pyc
lib/python1.5/site-packages/gtkmodule.so
share/doc/pygtk/README
share/examples/pygtk/ide/README
share/examples/pygtk/ide/break.xpm
share/examples/pygtk/ide/browse.py
share/examples/pygtk/ide/continue.xpm
share/examples/pygtk/ide/edit.py
share/examples/pygtk/ide/edit.xpm
share/examples/pygtk/ide/gtkcons.py
share/examples/pygtk/ide/gtkdb.py
share/examples/pygtk/ide/gtkprof.py
share/examples/pygtk/ide/minibreak.xpm
share/examples/pygtk/ide/next.xpm
share/examples/pygtk/ide/pyide.py
share/examples/pygtk/ide/quit.xpm
share/examples/pygtk/ide/return.xpm
share/examples/pygtk/ide/run.xpm
share/examples/pygtk/ide/step.xpm
share/examples/pygtk/imlib/view.py
share/examples/pygtk/neil/README
share/examples/pygtk/neil/TAppli.py
share/examples/pygtk/neil/TAppli2.py
share/examples/pygtk/neil/TAppli3.py
share/examples/pygtk/neil/TAppli4.py
share/examples/pygtk/neil/TAppli5.py
share/examples/pygtk/neil/bomb.xpm
share/examples/pygtk/neil/gtk-logo.xpm
share/examples/pygtk/neil/notebook.py
share/examples/pygtk/neil/question.xpm
share/examples/pygtk/simple/README
share/examples/pygtk/simple/hello1.py
share/examples/pygtk/simple/hello2.py
share/examples/pygtk/simple/scribble.py
share/examples/pygtk/simple/simple1.py
share/examples/pygtk/simple/simple2.py
share/examples/pygtk/simple/tooltip1.py
share/examples/pygtk/simple/tooltip2.py
share/examples/pygtk/testgtk/README
share/examples/pygtk/testgtk/test.xpm
share/examples/pygtk/testgtk/testgtk.py
share/examples/pygtk/testgtk/testgtkrc
@dirrm share/examples/pygtk/testgtk
@dirrm share/examples/pygtk/simple
@dirrm share/examples/pygtk/neil
@dirrm share/examples/pygtk/imlib
@dirrm share/examples/pygtk/ide
@dirrm share/doc/pygtk

View File

@ -0,0 +1,32 @@
# New ports collection makefile for: pygtk
# Version required: 0.4.3
# Date created: 30 May 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= pygtk-0.4.3
CATEGORIES= x11
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/python/
MAINTAINER= tg@FreeBSD.ORG
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
LIB_DEPENDS= gtk\\.1\\.:${PORTSDIR}/x11/gtk
GNU_CONFIGURE= yes
ALL_TARGET= sharedmods
MAKE_FLAGS= OPT="${CFLAGS}"
post-install:
@${MKDIR} ${PREFIX}/share/examples/pygtk
@(cd ${WRKSRC}/examples; tar cf - *) | \
(cd ${PREFIX}/share/examples/pygtk; tar xf -)
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/pygtk
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pygtk
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (pygtk-0.4.3.tar.gz) = b1ad362caf67c54b44bc552c8bd4355a

View File

@ -0,0 +1 @@
Python wrapper for the GTK library.

View File

@ -0,0 +1,16 @@
Gtkmodule and Gtkinter
======================
Author: James Henstridge <james@daa.com.au>
This archive contains modules that allow you to use gtk in Python
programs. At this point, it is still very much a work in progress.
Despite the low version number, this peice of software is quite useful,
and is usable to write moderately complex programs. (see the examples
directory for some examples of the simpler programs you could write).
If you have any enhancements or bug reports, please send them to me at
james@daa.com.au. If you are going to send me diffs, my prefered
format is unified diff (ie. diff -u), although context diffs are OK as
well. Please don't send me diffs which don't have any context, as these
are almost useless if I try to apply them manually, or have a different
version of the source tree.

View File

@ -0,0 +1,55 @@
lib/python1.5/site-packages/GDK.py
lib/python1.5/site-packages/GDK.pyc
lib/python1.5/site-packages/GTK.py
lib/python1.5/site-packages/GTK.pyc
lib/python1.5/site-packages/GtkExtra.py
lib/python1.5/site-packages/GtkExtra.pyc
lib/python1.5/site-packages/Gtkinter.py
lib/python1.5/site-packages/Gtkinter.pyc
lib/python1.5/site-packages/gtkmodule.so
share/doc/pygtk/README
share/examples/pygtk/ide/README
share/examples/pygtk/ide/break.xpm
share/examples/pygtk/ide/browse.py
share/examples/pygtk/ide/continue.xpm
share/examples/pygtk/ide/edit.py
share/examples/pygtk/ide/edit.xpm
share/examples/pygtk/ide/gtkcons.py
share/examples/pygtk/ide/gtkdb.py
share/examples/pygtk/ide/gtkprof.py
share/examples/pygtk/ide/minibreak.xpm
share/examples/pygtk/ide/next.xpm
share/examples/pygtk/ide/pyide.py
share/examples/pygtk/ide/quit.xpm
share/examples/pygtk/ide/return.xpm
share/examples/pygtk/ide/run.xpm
share/examples/pygtk/ide/step.xpm
share/examples/pygtk/imlib/view.py
share/examples/pygtk/neil/README
share/examples/pygtk/neil/TAppli.py
share/examples/pygtk/neil/TAppli2.py
share/examples/pygtk/neil/TAppli3.py
share/examples/pygtk/neil/TAppli4.py
share/examples/pygtk/neil/TAppli5.py
share/examples/pygtk/neil/bomb.xpm
share/examples/pygtk/neil/gtk-logo.xpm
share/examples/pygtk/neil/notebook.py
share/examples/pygtk/neil/question.xpm
share/examples/pygtk/simple/README
share/examples/pygtk/simple/hello1.py
share/examples/pygtk/simple/hello2.py
share/examples/pygtk/simple/scribble.py
share/examples/pygtk/simple/simple1.py
share/examples/pygtk/simple/simple2.py
share/examples/pygtk/simple/tooltip1.py
share/examples/pygtk/simple/tooltip2.py
share/examples/pygtk/testgtk/README
share/examples/pygtk/testgtk/test.xpm
share/examples/pygtk/testgtk/testgtk.py
share/examples/pygtk/testgtk/testgtkrc
@dirrm share/examples/pygtk/testgtk
@dirrm share/examples/pygtk/simple
@dirrm share/examples/pygtk/neil
@dirrm share/examples/pygtk/imlib
@dirrm share/examples/pygtk/ide
@dirrm share/doc/pygtk

View File

@ -0,0 +1,32 @@
# New ports collection makefile for: pygtk
# Version required: 0.4.3
# Date created: 30 May 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= pygtk-0.4.3
CATEGORIES= x11
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/python/
MAINTAINER= tg@FreeBSD.ORG
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
LIB_DEPENDS= gtk\\.1\\.:${PORTSDIR}/x11/gtk
GNU_CONFIGURE= yes
ALL_TARGET= sharedmods
MAKE_FLAGS= OPT="${CFLAGS}"
post-install:
@${MKDIR} ${PREFIX}/share/examples/pygtk
@(cd ${WRKSRC}/examples; tar cf - *) | \
(cd ${PREFIX}/share/examples/pygtk; tar xf -)
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/pygtk
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pygtk
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (pygtk-0.4.3.tar.gz) = b1ad362caf67c54b44bc552c8bd4355a

View File

@ -0,0 +1 @@
Python wrapper for the GTK library.

View File

@ -0,0 +1,16 @@
Gtkmodule and Gtkinter
======================
Author: James Henstridge <james@daa.com.au>
This archive contains modules that allow you to use gtk in Python
programs. At this point, it is still very much a work in progress.
Despite the low version number, this peice of software is quite useful,
and is usable to write moderately complex programs. (see the examples
directory for some examples of the simpler programs you could write).
If you have any enhancements or bug reports, please send them to me at
james@daa.com.au. If you are going to send me diffs, my prefered
format is unified diff (ie. diff -u), although context diffs are OK as
well. Please don't send me diffs which don't have any context, as these
are almost useless if I try to apply them manually, or have a different
version of the source tree.

View File

@ -0,0 +1,55 @@
lib/python1.5/site-packages/GDK.py
lib/python1.5/site-packages/GDK.pyc
lib/python1.5/site-packages/GTK.py
lib/python1.5/site-packages/GTK.pyc
lib/python1.5/site-packages/GtkExtra.py
lib/python1.5/site-packages/GtkExtra.pyc
lib/python1.5/site-packages/Gtkinter.py
lib/python1.5/site-packages/Gtkinter.pyc
lib/python1.5/site-packages/gtkmodule.so
share/doc/pygtk/README
share/examples/pygtk/ide/README
share/examples/pygtk/ide/break.xpm
share/examples/pygtk/ide/browse.py
share/examples/pygtk/ide/continue.xpm
share/examples/pygtk/ide/edit.py
share/examples/pygtk/ide/edit.xpm
share/examples/pygtk/ide/gtkcons.py
share/examples/pygtk/ide/gtkdb.py
share/examples/pygtk/ide/gtkprof.py
share/examples/pygtk/ide/minibreak.xpm
share/examples/pygtk/ide/next.xpm
share/examples/pygtk/ide/pyide.py
share/examples/pygtk/ide/quit.xpm
share/examples/pygtk/ide/return.xpm
share/examples/pygtk/ide/run.xpm
share/examples/pygtk/ide/step.xpm
share/examples/pygtk/imlib/view.py
share/examples/pygtk/neil/README
share/examples/pygtk/neil/TAppli.py
share/examples/pygtk/neil/TAppli2.py
share/examples/pygtk/neil/TAppli3.py
share/examples/pygtk/neil/TAppli4.py
share/examples/pygtk/neil/TAppli5.py
share/examples/pygtk/neil/bomb.xpm
share/examples/pygtk/neil/gtk-logo.xpm
share/examples/pygtk/neil/notebook.py
share/examples/pygtk/neil/question.xpm
share/examples/pygtk/simple/README
share/examples/pygtk/simple/hello1.py
share/examples/pygtk/simple/hello2.py
share/examples/pygtk/simple/scribble.py
share/examples/pygtk/simple/simple1.py
share/examples/pygtk/simple/simple2.py
share/examples/pygtk/simple/tooltip1.py
share/examples/pygtk/simple/tooltip2.py
share/examples/pygtk/testgtk/README
share/examples/pygtk/testgtk/test.xpm
share/examples/pygtk/testgtk/testgtk.py
share/examples/pygtk/testgtk/testgtkrc
@dirrm share/examples/pygtk/testgtk
@dirrm share/examples/pygtk/simple
@dirrm share/examples/pygtk/neil
@dirrm share/examples/pygtk/imlib
@dirrm share/examples/pygtk/ide
@dirrm share/doc/pygtk

View File

@ -0,0 +1,32 @@
# New ports collection makefile for: pygtk
# Version required: 0.4.3
# Date created: 30 May 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id$
#
DISTNAME= pygtk-0.4.3
CATEGORIES= x11
MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/python/
MAINTAINER= tg@FreeBSD.ORG
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
LIB_DEPENDS= gtk\\.1\\.:${PORTSDIR}/x11/gtk
GNU_CONFIGURE= yes
ALL_TARGET= sharedmods
MAKE_FLAGS= OPT="${CFLAGS}"
post-install:
@${MKDIR} ${PREFIX}/share/examples/pygtk
@(cd ${WRKSRC}/examples; tar cf - *) | \
(cd ${PREFIX}/share/examples/pygtk; tar xf -)
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/pygtk
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pygtk
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (pygtk-0.4.3.tar.gz) = b1ad362caf67c54b44bc552c8bd4355a

View File

@ -0,0 +1 @@
Python wrapper for the GTK library.

View File

@ -0,0 +1,16 @@
Gtkmodule and Gtkinter
======================
Author: James Henstridge <james@daa.com.au>
This archive contains modules that allow you to use gtk in Python
programs. At this point, it is still very much a work in progress.
Despite the low version number, this peice of software is quite useful,
and is usable to write moderately complex programs. (see the examples
directory for some examples of the simpler programs you could write).
If you have any enhancements or bug reports, please send them to me at
james@daa.com.au. If you are going to send me diffs, my prefered
format is unified diff (ie. diff -u), although context diffs are OK as
well. Please don't send me diffs which don't have any context, as these
are almost useless if I try to apply them manually, or have a different
version of the source tree.

View File

@ -0,0 +1,55 @@
lib/python1.5/site-packages/GDK.py
lib/python1.5/site-packages/GDK.pyc
lib/python1.5/site-packages/GTK.py
lib/python1.5/site-packages/GTK.pyc
lib/python1.5/site-packages/GtkExtra.py
lib/python1.5/site-packages/GtkExtra.pyc
lib/python1.5/site-packages/Gtkinter.py
lib/python1.5/site-packages/Gtkinter.pyc
lib/python1.5/site-packages/gtkmodule.so
share/doc/pygtk/README
share/examples/pygtk/ide/README
share/examples/pygtk/ide/break.xpm
share/examples/pygtk/ide/browse.py
share/examples/pygtk/ide/continue.xpm
share/examples/pygtk/ide/edit.py
share/examples/pygtk/ide/edit.xpm
share/examples/pygtk/ide/gtkcons.py
share/examples/pygtk/ide/gtkdb.py
share/examples/pygtk/ide/gtkprof.py
share/examples/pygtk/ide/minibreak.xpm
share/examples/pygtk/ide/next.xpm
share/examples/pygtk/ide/pyide.py
share/examples/pygtk/ide/quit.xpm
share/examples/pygtk/ide/return.xpm
share/examples/pygtk/ide/run.xpm
share/examples/pygtk/ide/step.xpm
share/examples/pygtk/imlib/view.py
share/examples/pygtk/neil/README
share/examples/pygtk/neil/TAppli.py
share/examples/pygtk/neil/TAppli2.py
share/examples/pygtk/neil/TAppli3.py
share/examples/pygtk/neil/TAppli4.py
share/examples/pygtk/neil/TAppli5.py
share/examples/pygtk/neil/bomb.xpm
share/examples/pygtk/neil/gtk-logo.xpm
share/examples/pygtk/neil/notebook.py
share/examples/pygtk/neil/question.xpm
share/examples/pygtk/simple/README
share/examples/pygtk/simple/hello1.py
share/examples/pygtk/simple/hello2.py
share/examples/pygtk/simple/scribble.py
share/examples/pygtk/simple/simple1.py
share/examples/pygtk/simple/simple2.py
share/examples/pygtk/simple/tooltip1.py
share/examples/pygtk/simple/tooltip2.py
share/examples/pygtk/testgtk/README
share/examples/pygtk/testgtk/test.xpm
share/examples/pygtk/testgtk/testgtk.py
share/examples/pygtk/testgtk/testgtkrc
@dirrm share/examples/pygtk/testgtk
@dirrm share/examples/pygtk/simple
@dirrm share/examples/pygtk/neil
@dirrm share/examples/pygtk/imlib
@dirrm share/examples/pygtk/ide
@dirrm share/doc/pygtk