summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>1998-11-13 23:16:25 +0000
committerJacques Vidrine <nectar@FreeBSD.org>1998-11-13 23:16:25 +0000
commit76fd954367a04f803436ddbbac0bb2944beb0f84 (patch)
treefb9ea9a515732b7cb0b7d35b9fd2f67ac12d8aa0 /databases
parentfix script path (diff)
Update for ELF.
Notes
Notes: svn path=/head/; revision=14506
Diffstat (limited to 'databases')
-rw-r--r--databases/py-PyGreSQL/files/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/databases/py-PyGreSQL/files/Makefile b/databases/py-PyGreSQL/files/Makefile
new file mode 100644
index 000000000000..291913ae6ac5
--- /dev/null
+++ b/databases/py-PyGreSQL/files/Makefile
@@ -0,0 +1,26 @@
+.SUFFIXES: .py .pyc
+
+all: pgmodule.so pgext.pyc pgtools.pyc
+
+install:
+ @${MKDIR} ${PREFIX}/lib/site-python
+ ${BSD_INSTALL_PROGRAM} pgmodule.so ${PREFIX}/lib/site-python
+ ${BSD_INSTALL_DATA} pgext.py pgext.pyc pgtools.py pgtools.pyc \
+ ${PREFIX}/lib/site-python
+
+clean:
+ rm -f *.so *.o *.pyc pgtools.py
+
+pgtools.py: tutorial/pgtools.py
+ ${LN} -fs ${.ALLSRC} ${.TARGET}
+
+pgmodule.so: pgmodule.o
+ ${LD} -Bshareable -lc_r -L${PREFIX}/lib/python1.5/config -lpython1.5 \
+ -L${PREFIX}/pgsql/lib -lpq ${.ALLSRC} -o ${.TARGET}
+
+pgmodule.o: pgmodule.c
+ ${CC} -c -I${PREFIX}/include/python1.5 -I${PREFIX}/pgsql/include \
+ ${.ALLSRC}
+
+.py.pyc:
+ ${SETENV} PYTHONPATH=${.CURDIR} ${PYTHON} -c 'import ${.IMPSRC:.py=}'