diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2010-12-07 06:13:59 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2010-12-07 06:13:59 +0000 |
commit | d3a913680436cd2fd1963e16cccf2c49795769ba (patch) | |
tree | ef343c1c16b07d6a0fb4c8709deb5fb0a83e1711 /databases/java-mybatis | |
parent | b5f7a2ee91ced7a1c53b7b154064b8d7136a67c0 (diff) | |
download | ports-d3a913680436cd2fd1963e16cccf2c49795769ba.tar.gz ports-d3a913680436cd2fd1963e16cccf2c49795769ba.zip |
Notes
Diffstat (limited to 'databases/java-mybatis')
-rw-r--r-- | databases/java-mybatis/Makefile | 46 | ||||
-rw-r--r-- | databases/java-mybatis/distinfo | 4 | ||||
-rw-r--r-- | databases/java-mybatis/pkg-descr | 8 |
3 files changed, 58 insertions, 0 deletions
diff --git a/databases/java-mybatis/Makefile b/databases/java-mybatis/Makefile new file mode 100644 index 000000000000..74b552d3a6f5 --- /dev/null +++ b/databases/java-mybatis/Makefile @@ -0,0 +1,46 @@ +# New ports collection makefile for: mybatis +# Date created: 5 December 2010 +# Whom: glewis +# +# $FreeBSD$ +# + +PORTNAME= mybatis +PORTVERSION= 3.0.3 +CATEGORIES= databases devel java +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +PKGNAMEPREFIX= java- +DISTFILES= ${PORTNAME}-${PORTVERSION}-bundle${EXTRACT_SUFX} +.if !defined(NOPORTDOCS) +DISTFILES+= ${USER_GUIDE} +EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}-bundle${EXTRACT_SUFX} +.endif + +MAINTAINER= glewis@FreeBSD.org +COMMENT= SQL Mapping Framework + +USE_JAVA= yes +USE_ZIP= yes +LICENSE= ASL +NO_BUILD= yes + +JAR_FILE= ${PORTNAME}-${PORTVERSION}.jar +USER_GUIDE= MyBatis-${PORTVERSION}-User-Guide.pdf + +PLIST_FILES+= %%JAVAJARDIR%%/${JAR_FILE} + +.if !defined(NOPORTDOCS) +PORTDOCS= * +.endif + +do-install: + @${INSTALL_DATA} ${WRKSRC}/${JAR_FILE} ${JAVAJARDIR} +.if !defined(NOPORTDOCS) + @-${MKDIR} ${DOCSDIR} +.for f in LICENSE NOTICE + @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor + @${INSTALL_DATA} ${DISTDIR}/${USER_GUIDE} ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/databases/java-mybatis/distinfo b/databases/java-mybatis/distinfo new file mode 100644 index 000000000000..79d59cb93213 --- /dev/null +++ b/databases/java-mybatis/distinfo @@ -0,0 +1,4 @@ +SHA256 (mybatis-3.0.3-bundle.zip) = bc9285382a34385f2278446c23a2de92213c98d3357ecd758f4c97b88b865d80 +SIZE (mybatis-3.0.3-bundle.zip) = 3328302 +SHA256 (MyBatis-3.0.3-User-Guide.pdf) = b784682863b4b6148554fd46bfd3bca8cb21daa7dc63ddd8cd21ec5649921c71 +SIZE (MyBatis-3.0.3-User-Guide.pdf) = 533603 diff --git a/databases/java-mybatis/pkg-descr b/databases/java-mybatis/pkg-descr new file mode 100644 index 000000000000..bfdec8fa0884 --- /dev/null +++ b/databases/java-mybatis/pkg-descr @@ -0,0 +1,8 @@ +MyBatis is a first class persistence framework with support for custom +SQL, stored procedures and advanced mappings. MyBatis eliminates almost +all of the JDBC code and manual setting of parameters and retrieval of +results. MyBatis can use simple XML or Annotations for configuration and +map primitives, Map interfaces and Java POJOs (Plain Old Java Objects) +to database records. + +WWW: http://www.mybatis.org/ |