add batik 1.5.1
SVG Toolkit
This commit is contained in:
parent
8e70ae1644
commit
c6b1453b2b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102692
4 changed files with 52 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
SUBDIR += ayam
|
||||
SUBDIR += backfract
|
||||
SUBDIR += barcode
|
||||
SUBDIR += batik
|
||||
SUBDIR += bbrb
|
||||
SUBDIR += blender
|
||||
SUBDIR += blender-devel
|
||||
|
|
44
graphics/batik/Makefile
Normal file
44
graphics/batik/Makefile
Normal file
|
@ -0,0 +1,44 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: batik
|
||||
# Date created: Feb 25, 2004
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= batik
|
||||
PORTVERSION= 1.5.1
|
||||
CATEGORIES= graphics java
|
||||
MASTER_SITES= ${MASTER_SITE_APACHE_XML}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= SVG Toolkit
|
||||
|
||||
BUILD_DEPENDS= ${ANT}:${PORTSDIR}/devel/apache-ant
|
||||
|
||||
USE_ZIP= yes
|
||||
USE_JAVA= 1.3+
|
||||
NEED_JAVAC= yes
|
||||
WRKSRC= ${WRKDIR}/xml-${PORTNAME}
|
||||
ANT?= /usr/local/bin/ant
|
||||
ANT_ALL_TARGET= jars
|
||||
BATIK_HOME= ${PREFIX}/batik
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
ANT_ALL_TARGET+= html
|
||||
.endif
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && ${ANT} ${ANT_ALL_TARGET}
|
||||
|
||||
do-install:
|
||||
@${MKDIR} ${BATIK_HOME}
|
||||
@${CP} -R ${WRKSRC}/${PORTNAME}-${PORTVERSION} ${BATIK_HOME}
|
||||
@${FIND} ${BATIK_HOME} -type f | \
|
||||
${SED} -e "s,^${PREFIX}/,," >> ${TMPPLIST}
|
||||
@${FIND} ${BATIK_HOME} -type d | ${SORT} -r | \
|
||||
${SED} -e "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST}
|
||||
|
||||
.include <bsd.port.mk>
|
2
graphics/batik/distinfo
Normal file
2
graphics/batik/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (batik-src-1.5.1.zip) = 8a3ba8b76dcef9415216d6a5b9685a9c
|
||||
SIZE (batik-src-1.5.1.zip) = 11474737
|
5
graphics/batik/pkg-descr
Normal file
5
graphics/batik/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
Batik is a Java(tm) technology based toolkit for applications or applets that
|
||||
want to use images in the Scalable Vector Graphics (SVG) format for various
|
||||
purposes, such as viewing, generation or manipulation.
|
||||
|
||||
WWW: http://xml.apache.org/batik/
|
Loading…
Reference in a new issue