add svg2swf
Convert an SVG file into a Macromedia Flash (swf) file
This commit is contained in:
parent
9b0cd25a28
commit
a088223262
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=47367
6 changed files with 48 additions and 0 deletions
|
@ -250,6 +250,7 @@
|
|||
SUBDIR += spigot
|
||||
SUBDIR += splitmpg
|
||||
SUBDIR += stamp
|
||||
SUBDIR += svg2swf
|
||||
SUBDIR += svgalib
|
||||
SUBDIR += synaesthesia
|
||||
SUBDIR += tcm
|
||||
|
|
41
graphics/svg2swf/Makefile
Normal file
41
graphics/svg2swf/Makefile
Normal file
|
@ -0,0 +1,41 @@
|
|||
# ex:ts=8
|
||||
# New ports collection makefile for: svg2swf
|
||||
# Date created: 24 August 2000
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= svg2swf
|
||||
PORTVERSION= 0.1.3
|
||||
CATEGORIES= graphics python
|
||||
MASTER_SITES= http://www.eskimo.com/~robla/svg2swf/
|
||||
DISTNAME= ${PORTNAME}
|
||||
EXTRACT_SUFX= # empty
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/${PACKAGE_DIR}/sax/saxexts.py:${PORTSDIR}/textproc/py-xml
|
||||
|
||||
USE_PYTHON= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PYTHON_VERSION} == "python1.5"
|
||||
PACKAGE_DIR= xml
|
||||
.else
|
||||
PACKAGE_DIR= _xmlplus
|
||||
.endif
|
||||
|
||||
do-extract:
|
||||
@${MKDIR} ${WRKSRC}
|
||||
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
||||
|
||||
post-patch:
|
||||
@${PERL} -pi -e "s,/usr/bin/python,${PYTHON_CMD},g" ${WRKSRC}/svg2swf
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/svg2swf ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.post.mk>
|
1
graphics/svg2swf/distinfo
Normal file
1
graphics/svg2swf/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (svg2swf) = 30b4edf2b7da3674214845346dc54555
|
1
graphics/svg2swf/pkg-comment
Normal file
1
graphics/svg2swf/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Convert an SVG file into a Macromedia Flash (swf) file
|
3
graphics/svg2swf/pkg-descr
Normal file
3
graphics/svg2swf/pkg-descr
Normal file
|
@ -0,0 +1,3 @@
|
|||
Convert an SVG file into a Macromedia Flash (swf) file
|
||||
|
||||
WWW: http://www.eskimo.com/~robla/svg2swf/
|
1
graphics/svg2swf/pkg-plist
Normal file
1
graphics/svg2swf/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/svg2swf
|
Loading…
Reference in a new issue