Add barbecue 1.0.6d, a Java barcode generator.

This commit is contained in:
Thierry Thomas 2005-06-12 19:15:30 +00:00
parent 6c3a9a104d
commit cf1691877a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=137339
4 changed files with 69 additions and 0 deletions

View file

@ -25,6 +25,7 @@
SUBDIR += aview
SUBDIR += ayam
SUBDIR += backfract
SUBDIR += barbecue
SUBDIR += barcode
SUBDIR += batik
SUBDIR += bbrb

View file

@ -0,0 +1,59 @@
# New ports collection makefile for: barbecue
# Date created: 21 May 2005
# Whom: Thierry Thomas <thierry@pompo.net>
#
# $FreeBSD$
#
PORTNAME= barbecue
PORTVERSION= 1.0.6d
CATEGORIES= graphics print java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= thierry@FreeBSD.org
COMMENT= A Java barcode generator
RUN_DEPENDS= ${JAVALIBDIR}/jdom.jar:${PORTSDIR}/java/jdom
USE_JAVA= yes
JAVA_VERSION= 1.3+
NO_BUILD= yes
JARFILES= ${PORTNAME}-${PORTVERSION}.jar
PLIST_FILES+= %%JAVAJARDIR%%/${JARFILES:S|-${PORTVERSION}||} \
%%JAVAJARDIR%%/LICENSE.barbecue.txt
.if defined(WITH_TOMCAT41)
RUN_DEPENDS+= ${LOCALBASE}/bin/tomcat41ctl:${PORTSDIR}/www/jakarta-tomcat41
JAKARTA_HOME= ${LOCALBASE}/jakarta-tomcat4.1
PLIST_FILES+= ${JAKARTA_HOME:S|^${LOCALBASE}/||}/webapps/${PORTNAME}.war
.endif
PORTDOCS= *
pre-everything::
.if !defined(WITH_TOMCAT41)
@${ECHO_MSG} '*********************************************************'
@${ECHO_MSG} '* To use Barbecue as a servlet, define WITH_TOMCAT41. *'
@${ECHO_MSG} '*********************************************************'
.endif
post-extract:
${MV} ${WRKSRC}/${JARFILES} ${WRKSRC}/${JARFILES:S|-${PORTVERSION}||}
do-install:
${INSTALL_DATA} ${JARFILES:S|-${PORTVERSION}||:S|^|${WRKSRC}/|} ${JAVAJARDIR}
${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${JAVAJARDIR}/LICENSE.barbecue.txt
.if defined(WITH_TOMCAT41)
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.war ${JAKARTA_HOME}/webapps
.endif
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}
@${CP} -R ${WRKSRC}/docs/* ${DOCSDIR}
@${CP} -R ${WRKSRC}/examples ${DOCSDIR}
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
.endif
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
MD5 (barbecue-1.0.6d.tar.gz) = 1e1265be5fb88254ae51e3da714effc2
SIZE (barbecue-1.0.6d.tar.gz) = 421847

View file

@ -0,0 +1,7 @@
Barbecue is an open-source, Java barcode library that provides the means to
create barcodes for printing and display in Java applications. A number of
barcode formats are supported and many more can be added via the flexible
barcode API. Barcodes can be outputted to Graphics objects, or used as a Swing
component, or written out as SVG.
WWW: http://barbecue.sourceforge.net/