diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-04-07 08:37:29 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-04-07 08:37:29 +0000 |
commit | 41fb7ad5deacc31bbe0f54ed9559a3c7bea9df8d (patch) | |
tree | 447ee7c03ac44ff9ac4c992678d1ed210303ecc7 | |
parent | 831a4ed8b838c42ce435996179158443a696394b (diff) | |
download | ports-41fb7ad5deacc31bbe0f54ed9559a3c7bea9df8d.tar.gz ports-41fb7ad5deacc31bbe0f54ed9559a3c7bea9df8d.zip |
Notes
-rw-r--r-- | java/Makefile | 1 | ||||
-rw-r--r-- | java/jcalendar/Makefile | 38 | ||||
-rw-r--r-- | java/jcalendar/distinfo | 2 | ||||
-rw-r--r-- | java/jcalendar/pkg-descr | 7 |
4 files changed, 48 insertions, 0 deletions
diff --git a/java/Makefile b/java/Makefile index 6e6c6343676e..2a11f458afc8 100644 --- a/java/Makefile +++ b/java/Makefile @@ -60,6 +60,7 @@ SUBDIR += jboss2 SUBDIR += jboss3 SUBDIR += jc + SUBDIR += jcalendar SUBDIR += jce-aba SUBDIR += jcommon SUBDIR += jdbcpool diff --git a/java/jcalendar/Makefile b/java/jcalendar/Makefile new file mode 100644 index 000000000000..cd976c1855f9 --- /dev/null +++ b/java/jcalendar/Makefile @@ -0,0 +1,38 @@ +# ex:ts=8 +# Ports collection makefile for: jcalendar +# Date created: Apr 2, 2004 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= jcalendar +PORTVERSION= 1.1.4 +CATEGORIES= java +MASTER_SITES= http://www.toedter.com/download/ +DISTNAME= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Java Date Chooser + +USE_ZIP= yes +USE_JAVA= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes +PLIST_FILES= ${JAVAJARDIR:S,^${PREFIX}/,,}/jcalendar.jar \ + ${JAVAJARDIR:S,^${PREFIX}/,,}/kunststoff.jar + +.if !defined(NOPORTDOCS) +PORTDOCS= * +.endif + +do-install: +.for file in jcalendar.jar kunststoff.jar + ${INSTALL_DATA} ${WRKSRC}/lib/${file} ${JAVAJARDIR} +.endfor +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${CP} -R ${WRKSRC}/docs/ ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/java/jcalendar/distinfo b/java/jcalendar/distinfo new file mode 100644 index 000000000000..3925c2eac02f --- /dev/null +++ b/java/jcalendar/distinfo @@ -0,0 +1,2 @@ +MD5 (jcalendar.zip) = 9e5b1b9e270b52cc3ca1f3870ce28a14 +SIZE (jcalendar.zip) = 243739 diff --git a/java/jcalendar/pkg-descr b/java/jcalendar/pkg-descr new file mode 100644 index 000000000000..8b6ee2edce05 --- /dev/null +++ b/java/jcalendar/pkg-descr @@ -0,0 +1,7 @@ +JCalendar is a Java date chooser bean for graphically picking a date. JCalendar +is composed of several other Java beans, a JDayChooser, a JMonthChooser and a +JYearChooser. All these beans have a locale property, provide several icons +(Color 16x16, Color 32x32, Mono 16x16 and Mono 32x32) and their own locale +property editor. So they can easily be used in GUI builders. + +WWW: http://www.toedter.com/en/jcalendar/ |