diff options
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/itext/Makefile | 32 | ||||
-rw-r--r-- | devel/itext/distinfo | 2 | ||||
-rw-r--r-- | devel/itext/pkg-descr | 9 |
4 files changed, 44 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 3833dea..543cb91 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -333,6 +333,7 @@ SUBDIR += initutil SUBDIR += invitation_to_ruby SUBDIR += ipython + SUBDIR += itext SUBDIR += ixlib SUBDIR += jakelib2 SUBDIR += jam diff --git a/devel/itext/Makefile b/devel/itext/Makefile new file mode 100644 index 0000000..ec0449c --- /dev/null +++ b/devel/itext/Makefile @@ -0,0 +1,32 @@ +# ex:ts=8 +# Ports collection makefile for: itext +# Date created: Apr 2, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= itext +PORTVERSION= 1.02b +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION} +EXTRACT_SUFX= .jar + +MAINTAINER= ports@FreeBSD.org +COMMENT= A Java-PDF Library + +USE_JAVA= 1.2+ +NO_BUILD= yes +NO_WRKSUBDIR= yes +EXTRACT_CMD= ${CP} +EXTRACT_BEFORE_ARGS= # empty +EXTRACT_AFTER_ARGS= ${WRKSRC} + +PLIST_FILES= ${JAVAJARDIR:S,^${PREFIX}/,,}/${PORTNAME}.jar + +do-install: + ${INSTALL_DATA} ${WRKSRC}/${DISTFILES} ${JAVAJARDIR}/${PORTNAME}.jar + +.include <bsd.port.mk> diff --git a/devel/itext/distinfo b/devel/itext/distinfo new file mode 100644 index 0000000..776c738 --- /dev/null +++ b/devel/itext/distinfo @@ -0,0 +1,2 @@ +MD5 (itext-1.02b.jar) = fa434e705a0385bbaec4d55c45a8606b +SIZE (itext-1.02b.jar) = 766153 diff --git a/devel/itext/pkg-descr b/devel/itext/pkg-descr new file mode 100644 index 0000000..ead87ae --- /dev/null +++ b/devel/itext/pkg-descr @@ -0,0 +1,9 @@ +iText is a library that allows you to generate PDF files on the fly. + +The iText classes are very useful for people who need to generate read-only, +platform independent documents containing text, lists, tables and images. +The library is especially useful in combination with Java(TM) technology-based +Servlets: The look and feel of HTML is browser dependent; with iText and PDF +you can control exactly how your servlet's output will look. + +WWW: http://www.lowagie.com/iText/ |