diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2001-07-08 16:47:15 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2001-07-08 16:47:15 +0000 |
commit | bb8b021e51c49dc5abd9c24ca914766520641026 (patch) | |
tree | 966b9ea93f69d08ca05b5ed80cb562fe9c96c1f1 /graphics | |
parent | 5ac643444a5ab8fd654bfd0dbc8fc97e0f3ca201 (diff) | |
download | ports-bb8b021e51c49dc5abd9c24ca914766520641026.tar.gz ports-bb8b021e51c49dc5abd9c24ca914766520641026.zip |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/py-paint/Makefile | 57 | ||||
-rw-r--r-- | graphics/py-paint/distinfo | 1 | ||||
-rw-r--r-- | graphics/py-paint/files/optpatch-aa | 12 | ||||
-rw-r--r-- | graphics/py-paint/pkg-comment | 1 | ||||
-rw-r--r-- | graphics/py-paint/pkg-descr | 5 | ||||
-rw-r--r-- | graphics/py-paint/pkg-plist | 5 |
7 files changed, 82 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index 162f6ea7c687..2945050eead7 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -204,6 +204,7 @@ SUBDIR += py-imaging-handbook SUBDIR += py-ming SUBDIR += py-opengl + SUBDIR += py-paint SUBDIR += qcread SUBDIR += qdraw SUBDIR += qiv diff --git a/graphics/py-paint/Makefile b/graphics/py-paint/Makefile new file mode 100644 index 000000000000..ec391c0a3c55 --- /dev/null +++ b/graphics/py-paint/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: py-paint +# Date created: 8 July 2001 +# Whom: Hye-Shik Chang <perky@python.or.kr> +# +# $FreeBSD$ +# + +PORTNAME= paint +PORTVERSION= 0.1 +CATEGORIES= graphics python +MASTER_SITES= http://object-craft.com.au/projects/paint/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= perky@python.or.kr + +BUILD_DEPENDS= ${PYDISTUTILS} +LIB_DEPENDS= ttf.4:${PORTSDIR}/print/freetype \ + png.4:${PORTSDIR}/graphics/png \ + art_lgpl.5:${PORTSDIR}/graphics/libart + +USE_PYTHON= yes +PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S,^${LOCALBASE}/,,g} \ + SHARE_SUBDIR=${SHARE_SUBDIR} +WRKSRC= ${WRKDIR}/${PORTNAME} +SHARE_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME} +PYDIST_SETUP= cd ${WRKSRC} && ${PYTHON_CMD} setup.py + +INC_DIRS= ["${LOCALBASE}/include","${LOCALBASE}/include/freetype"] +LIB_DIRS= ["${LOCALBASE}/lib"] +REPATCH= cd ${WRKSRC} && ${SED} +REPATCHSUBST= -e 's@^\(.*libraries.*\)$$@\1include_dirs=${INC_DIRS},library_dirs=${LIB_DIRS},@g' +REPATCHFILES= setup.py +TMPSUFFIX= .temp +EXAMPLES= test_bar.py test_paint.py testpie.py + +.include <bsd.port.pre.mk> + +post-patch: +.if ${PYTHON_REL} >= 160 + cd ${WRKSRC} && ${PATCH} -s <${PATCHDIR}/optpatch-aa +.endif +.for file in ${REPATCHFILES} + ${REPATCH} ${REPATCHSUBST} ${file} > ${file}${TMPSUFFIX} && \ + ${CAT} ${file}${TMPSUFFIX} > ${file} +.endfor + +do-build: + ${PYDIST_SETUP} build + +do-install: + ${PYDIST_SETUP} install +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/examples/${SHARE_SUBDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${PREFIX}/share/examples/${SHARE_SUBDIR} +.endif + +.include <bsd.port.post.mk> diff --git a/graphics/py-paint/distinfo b/graphics/py-paint/distinfo new file mode 100644 index 000000000000..f5cb901b8de5 --- /dev/null +++ b/graphics/py-paint/distinfo @@ -0,0 +1 @@ +MD5 (paint-0.1.tar.gz) = 0021c2e7bbbe82ba2f31e44192b1abfb diff --git a/graphics/py-paint/files/optpatch-aa b/graphics/py-paint/files/optpatch-aa new file mode 100644 index 000000000000..2fadcd45df3a --- /dev/null +++ b/graphics/py-paint/files/optpatch-aa @@ -0,0 +1,12 @@ +--- paint.h.orig Thu May 10 10:12:07 2001 ++++ paint.h Mon Jul 9 00:01:22 2001 +@@ -39,6 +39,9 @@ + #include <libart_lgpl/art_svp_vpath_stroke.h> + + #include "Python.h" ++#define Py_Malloc(n) PyMem_Malloc(n) ++#define Py_Realloc(p, n) PyMem_Realloc((p), (n)) ++#define Py_Free(p) PyMem_Free(p) + + typedef struct { + PyObject_HEAD diff --git a/graphics/py-paint/pkg-comment b/graphics/py-paint/pkg-comment new file mode 100644 index 000000000000..e624d200c72f --- /dev/null +++ b/graphics/py-paint/pkg-comment @@ -0,0 +1 @@ +Simple and flexible painting adaptor to libart for Python diff --git a/graphics/py-paint/pkg-descr b/graphics/py-paint/pkg-descr new file mode 100644 index 000000000000..1710ae72e0e3 --- /dev/null +++ b/graphics/py-paint/pkg-descr @@ -0,0 +1,5 @@ +The paint module provides a simple and flexible facility for +painting PNG images files. The paint module depends upon +three free libraries: freetype, libart, libpng. + +WWW: http://object-craft.com.au/projects/paint/ diff --git a/graphics/py-paint/pkg-plist b/graphics/py-paint/pkg-plist new file mode 100644 index 000000000000..c6b01fa807aa --- /dev/null +++ b/graphics/py-paint/pkg-plist @@ -0,0 +1,5 @@ +%%PYTHON_SITELIBDIR%%/paint.so +%%PORTDOCS%%share/examples/%%SHARE_SUBDIR%%/test_bar.py +%%PORTDOCS%%share/examples/%%SHARE_SUBDIR%%/test_paint.py +%%PORTDOCS%%share/examples/%%SHARE_SUBDIR%%/testpie.py +%%PORTDOCS%%@dirrm share/examples/%%SHARE_SUBDIR%% |