mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
dcacd097d0
- Fix USE_PYTHON as pySVG does not build with Python 3.x - Fix PLIST for users not using Python 2.6 Changes: http://codeboje.de/pysvg/ ("Release/History" section) Added: - Added kwargs to make life a bit easier when instantiating objects - Added dropshadows (contributed by Bastian) - Added patterns - Added turtle graphics - Added clip element - Added use element - Added some methods to get size/edge points or move an element (depends on element) - Implemented feMergeNode subclassing - Added filterprimitiveswithin Corrections: - Setfilter had wrong parameter - Corrected intendation - Documentation corrected PR: ports/155084 Submitted by: sunpoet (myself) Approved by: Olivier Duchateau <duchateau.olivier@gmail.com> (maintainer)
23 lines
452 B
Makefile
23 lines
452 B
Makefile
# New ports collection makefile for: pysvg
|
|
# Date created: 2009-08-26
|
|
# Whom: Olivier Duchateau <duchateau.olivier@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pysvg
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
|
|
MAINTAINER= duchateau.olivier@gmail.com
|
|
COMMENT= pySVG - creating svg with python
|
|
|
|
USE_PYDISTUTILS=yes
|
|
USE_PYTHON= -2.7
|
|
USE_ZIP= yes
|
|
|
|
PLIST_SUB= PYDISTUTILS_EGGINFO=${PYDISTUTILS_EGGINFO}
|
|
|
|
.include <bsd.port.mk>
|