freebsd-ports/java/jakarta-commons-codec/Makefile
Emanuel Haupt 9db5ee5c2b Apache Commons project are no longer hosted under MASTER_SITES_APACHE
jakarta/commons subdirectory, they have been moved one directory up.

Introduce MASTER_SITE_APACHE_COMMONS_SOURCE and adjust 22 ports accordingly.

PR:		121041
Submitted by:	Marcin Cieslak <saper@system.pl>
Approved by:	portmgr (linimon)
2008-02-27 15:10:54 +00:00

48 lines
1.2 KiB
Makefile

# Ports collection makefile for: Jakarta Commons Codec
# Date created: 2 November 2005
# Whom: Alex Dupre <ale@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= commons-codec
PORTVERSION= 1.3
PORTREVISION= 1
CATEGORIES= java converters
MASTER_SITES= ${MASTER_SITE_APACHE_COMMONS_SOURCE}
MASTER_SITE_SUBDIR= ${PORTNAME:S,commons-,,}
PKGNAMEPREFIX= jakarta-
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= ale@FreeBSD.org
COMMENT= An implementations of common encoders and decoders
USE_JAVA= yes
JAVA_VERSION= 1.2+
USE_ANT= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
ALL_TARGET= dist
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
.if !defined(NOPORTDOCS)
PORTDOCS= RELEASE-NOTES.txt api
.endif
do-install:
@${ECHO_MSG} -n ">> Installing JAR file as ${JAVAJARDIR}/${PORTNAME}.jar..."
@${INSTALL_DATA} ${WRKSRC}/dist/${PORTNAME}-${PORTVERSION}.jar \
${JAVAJARDIR}/${PORTNAME}.jar
@${ECHO_MSG} " [DONE]"
.if !defined(NOPORTDOCS)
@${ECHO_MSG} -n ">> Installing documentation..."
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC}/dist/docs && ${FIND} api \
| ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > /dev/null 2>&1
@${INSTALL_DATA} ${WRKSRC}/dist/RELEASE-NOTES.txt \
${DOCSDIR}/
@${ECHO_MSG} " [DONE]"
.endif
.include <bsd.port.mk>