Fresco/Fresco-Python Makefile.in,1.14,1.15 setup.py.in,1.1,1.2 configure.ac,1.19,1.20
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-serv8369
Modified Files:
Makefile.in setup.py.in configure.ac
Log Message:
fixes for the python module layout
Index: Makefile.in
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Python/Makefile.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- Makefile.in 20 Feb 2003 15:30:34 -0000 1.14
+++ Makefile.in 3 Mar 2003 21:41:35 -0000 1.15
@@ -25,7 +25,7 @@
top_srcdir := @top_srcdir@
srcdir := @srcdir@
-subdirs := Fresco
+subdirs := src
# insert inter-directory dependencies below
# Overridden by the clean-targets, allowing the same subdirs-rule to be used
@@ -45,7 +45,7 @@
xref: #do nothing
doc: #do nothing here
-install:
+install: all
./setup.py install --prefix=$(DESTDIR)$(prefix)
install-doc: #do nothing here
Index: setup.py.in
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Python/setup.py.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- setup.py.in 11 Feb 2003 02:58:37 -0000 1.1
+++ setup.py.in 3 Mar 2003 21:41:35 -0000 1.2
@@ -6,4 +6,11 @@
version="@PACKAGE_VERSION@",
description="Fresco Python bindings",
url="http://www.fresco.org",
- packages=["Fresco"])
+ package_dir = {'' : 'src'},
+ packages=["Fresco", "Fresco.Input",
+ "Layout", "Layout__POA",
+ "Figure", "Figure__POA",
+ "Primitive", "Primitive__POA",
+ "Widget", "Widget__POA",
+ "Unidraw", "Unidraw__POA",
+ "FrescoStubs"])
Index: configure.ac
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Python/configure.ac,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- configure.ac 20 Feb 2003 22:21:47 -0000 1.19
+++ configure.ac 3 Mar 2003 21:41:35 -0000 1.20
@@ -62,9 +62,11 @@
AC_CONFIG_FILES([setup.py], [chmod +x setup.py])
AC_CONFIG_FILES([config/local.mk])
-AC_CONFIG_FILES([Makefile Fresco/Makefile:config/Makefile.omniorb.in])
+AC_CONFIG_FILES([Makefile src/Makefile:config/Makefile.omniorb.in])
if test "$srcdir" != .; then
AC_CONFIG_LINKS([Fresco/__init__.py:Fresco/__init__.py])
fi
+
+mkdir -p src/FrescoStubs
AC_OUTPUT