mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
USES=java:ant does not imply USES=java:run so we need to add the run arg seperately when we are using USES=java:ant. Not all ports require the the argument so it is better to address the ports individually instead of handling it automatically by implying run for ant. Thanks to vvd for carefully going through this. Reported by: vvd Approved by: portmgr (blanket)
52 lines
1.5 KiB
Makefile
52 lines
1.5 KiB
Makefile
PORTNAME= commons-httpclient
|
|
DISTVERSION= 3.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= java www
|
|
MASTER_SITES= APACHE/httpcomponents/${PORTNAME}/source
|
|
PKGNAMEPREFIX= apache-
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION}-src
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= Package implementing the client side of the HTTP standard
|
|
WWW= https://hc.apache.org/httpclient-3.x/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= ${JAVALIBDIR}/commons-logging.jar:java/apache-commons-logging
|
|
BUILD_DEPENDS+= ${JAVALIBDIR}/commons-codec.jar:java/apache-commons-codec
|
|
RUN_DEPENDS= ${JAVALIBDIR}/commons-logging.jar:java/apache-commons-logging
|
|
RUN_DEPENDS+= ${JAVALIBDIR}/commons-codec.jar:java/apache-commons-codec
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USES+= cpe java:ant,run
|
|
CPE_VENDOR= apache
|
|
|
|
MAKE_ENV= ANT_INCLUDE_SHARED_JARS=YES
|
|
NO_ARCH= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
|
|
ALL_TARGET= dist
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
|
|
|
|
PORTDOCS= *
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/Ortwin Gl.*ck/Ortwin Glueck/' \
|
|
${WRKSRC}/src/java/org/apache/commons/httpclient/*.java \
|
|
${WRKSRC}/src/java/org/apache/commons/httpclient/*/*.java
|
|
|
|
do-install:
|
|
@${ECHO_MSG} -n ">> Installing JAR file as ${JAVAJARDIR}/${PORTNAME}.jar..."
|
|
@${INSTALL_DATA} ${WRKSRC}/dist/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}/
|
|
@${ECHO_MSG} " [DONE]"
|
|
|
|
do-install-DOCS-on:
|
|
@${ECHO_MSG} -n ">> Installing documentation..."
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@cd ${WRKSRC}/dist/docs && ${FIND} api \
|
|
| ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} > /dev/null 2>&1
|
|
@${ECHO_MSG} " [DONE]"
|
|
|
|
.include <bsd.port.mk>
|