Fresco/Fresco-Python Makefile.in,1.15,1.16 configure.ac,1.20,1.21 setup.py.in,1.2,1.3
Stefan Seefeld <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Fresco-Python
In directory purcel:/tmp/cvs-serv19173
Modified Files:
Makefile.in configure.ac setup.py.in
Log Message:
some internal reorganization to make the python runtime actually installable. All add-on is in FrescoClient
Index: Makefile.in
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Python/Makefile.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile.in 3 Mar 2003 21:41:35 -0000 1.15
+++ Makefile.in 4 Mar 2003 05:30:00 -0000 1.16
@@ -45,7 +45,8 @@
xref: #do nothing
doc: #do nothing here
-install: all
+install:
+ $(MAKE) action="all"
./setup.py install --prefix=$(DESTDIR)$(prefix)
install-doc: #do nothing here
Index: configure.ac
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Python/configure.ac,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- configure.ac 3 Mar 2003 21:41:35 -0000 1.20
+++ configure.ac 4 Mar 2003 05:30:00 -0000 1.21
@@ -64,7 +64,7 @@
AC_CONFIG_FILES([config/local.mk])
AC_CONFIG_FILES([Makefile src/Makefile:config/Makefile.omniorb.in])
if test "$srcdir" != .; then
- AC_CONFIG_LINKS([Fresco/__init__.py:Fresco/__init__.py])
+ AC_CONFIG_LINKS([src/FrescoClient:src/FrescoClient])
fi
mkdir -p src/FrescoStubs
Index: setup.py.in
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Python/setup.py.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- setup.py.in 3 Mar 2003 21:41:35 -0000 1.2
+++ setup.py.in 4 Mar 2003 05:30:00 -0000 1.3
@@ -7,10 +7,12 @@
description="Fresco Python bindings",
url="http://www.fresco.org",
package_dir = {'' : 'src'},
- packages=["Fresco", "Fresco.Input",
+ packages=["Fresco", "Fresco__POA",
+ "Fresco.Input", "Fresco__POA.Input",
"Layout", "Layout__POA",
"Figure", "Figure__POA",
"Primitive", "Primitive__POA",
"Widget", "Widget__POA",
"Unidraw", "Unidraw__POA",
- "FrescoStubs"])
+ "FrescoStubs",
+ "FrescoClient"])