mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
7382aa2905
This package allows you to create, and extract tar archives. Since the package uses InputStream and OutputStream, it is possible to combine this package with the java.util.zip package to handle .tar.gz files. WWW: http://www.trustice.com/java/tar/
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# New ports collection makefile for: Java Tar
|
|
# Date created: 24 Oct 2007
|
|
# Whom: Alex Dupre <ale@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= javatar
|
|
PORTVERSION= 2.5
|
|
CATEGORIES= archivers java
|
|
MASTER_SITES= http://www.gjt.org/download/time/java/tar/ \
|
|
ftp://ftp.gjt.org/pub/time/java/tar/
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= A Java tar archive io package
|
|
|
|
RUN_DEPENDS= ${JAVALIBDIR}/activation.jar:${PORTSDIR}/java/jaf
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.4+
|
|
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= api LICENSE License.html readme.html tarman.html
|
|
|
|
JARFILES= tar.jar
|
|
PLIST_FILES= ${JARFILES:S,^,%%JAVAJARDIR%%/,}
|
|
|
|
do-install:
|
|
@${ECHO_MSG} -n ">> Install JAR file in ${JAVAJARDIR}..."
|
|
@${INSTALL_DATA} ${WRKSRC}/jars/tar.jar ${JAVAJARDIR}/
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..."
|
|
@${MKDIR} ${DOCSDIR}
|
|
@cd ${WRKSRC}/doc && ${FIND} ${PORTDOCS} \
|
|
| ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > /dev/null 2>&1
|
|
@${ECHO_MSG} " [ DONE ]"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|