diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-10-07 18:53:22 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-10-07 18:53:22 +0800 |
commit | 63b40fff734b3be36ee6ba7b0c72002519847022 (patch) | |
tree | 9bdd5fc59f8a97919c837f99081471e6caa6e5dd /devel/py-cxx/Makefile | |
parent | 7e19282b7678def49506017eaf7722e9e625a84e (diff) | |
download | freebsd-ports-gnome-63b40fff734b3be36ee6ba7b0c72002519847022.tar.gz freebsd-ports-gnome-63b40fff734b3be36ee6ba7b0c72002519847022.tar.zst freebsd-ports-gnome-63b40fff734b3be36ee6ba7b0c72002519847022.zip |
add py-cxx
Make it easier to extend Python with C++
Diffstat (limited to 'devel/py-cxx/Makefile')
-rw-r--r-- | devel/py-cxx/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/devel/py-cxx/Makefile b/devel/py-cxx/Makefile new file mode 100644 index 000000000000..ec5efd8101c6 --- /dev/null +++ b/devel/py-cxx/Makefile @@ -0,0 +1,34 @@ +# ex:ts=8 +# New ports collection makefile for: PyCXX +# Date created: Oct 7, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= cxx +PORTVERSION= 5.1r1 +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= PyCXX-V${PORTVERSION:S/r/-rc/} + +MAINTAINER= ports@FreeBSD.org + +USE_PYTHON= yes +SETUP_CMD= cd ${WRKSRC} && ${PYTHON_CMD} setup.py + +do-build: + @${SETUP_CMD} build + +do-install: + @${SETUP_CMD} install + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Doc/PyCXX.html ${DOCSDIR} +.endif + +.include <bsd.port.mk> |