diff options
author | jgh <jgh@FreeBSD.org> | 2012-11-21 03:07:56 +0800 |
---|---|---|
committer | jgh <jgh@FreeBSD.org> | 2012-11-21 03:07:56 +0800 |
commit | ac9626d3ca5eaec0fda3375f784559e309b4f979 (patch) | |
tree | 6bdb6de88517edbaa2e627d6364ba15419e3d865 /www/axis2 | |
parent | 8a1d3d83670af10f5973641923b1f65c5de32bc4 (diff) | |
download | freebsd-ports-gnome-ac9626d3ca5eaec0fda3375f784559e309b4f979.tar.gz freebsd-ports-gnome-ac9626d3ca5eaec0fda3375f784559e309b4f979.tar.zst freebsd-ports-gnome-ac9626d3ca5eaec0fda3375f784559e309b4f979.zip |
- drop tomcat55 as an option, and pass maintainership to submitter
- drop hard-coded install in favor of ${INSTALL}
PR: 173035
Submitted by: nemysis@gmx.ch
Feature safe: yes
Diffstat (limited to 'www/axis2')
-rw-r--r-- | www/axis2/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/www/axis2/Makefile b/www/axis2/Makefile index a1a049826283..0944afb1d3bd 100644 --- a/www/axis2/Makefile +++ b/www/axis2/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= APACHE MASTER_SITE_SUBDIR= axis/${PORTNAME}/java/core/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-bin -MAINTAINER= ports@FreeBSD.org +MAINTAINER= nemysis@gmx.ch COMMENT= Provides a Web Services,SOAP and WSDL engine from Apache LICENSE= AL2 @@ -18,17 +18,11 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} NO_BUILD= yes OPTIONS_SINGLE= AS -OPTIONS_SINGLE_AS= TOMCAT5 TOMCAT6 TOMCAT7 +OPTIONS_SINGLE_AS= TOMCAT6 TOMCAT7 OPTIONS_DEFAULT= TOMCAT6 .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MTOMCAT5} -APPHOME= ${LOCALBASE}/tomcat5.5 -BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 -RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 -.endif - .if ${PORT_OPTIONS:MTOMCAT6} APPHOME= ${LOCALBASE}/apache-tomcat-6.0 BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 @@ -57,7 +51,7 @@ do-install: ( ${MKDIR} ${APPHOME}/webapps/${PORTNAME}/axis2-web && cd ${WRKSRC}/webapp/axis2-web && ${COPYTREE_SHARE} \* ${APPHOME}/webapps/${PORTNAME}/axis2-web ) ( cd ${WRKSRC}/repository && ${COPYTREE_SHARE} \* ${APPHOME}/webapps/${PORTNAME}/WEB-INF ) @${CHOWN} ${SHAREGRP}:${SHAREOWN} ${APPHOME}/webapps/${PORTNAME} - @install -d -g ${SHAREGRP} -o ${SHAREOWN} ${APPHOME}/webapps/${PORTNAME}/WEB-INF/conf + @${INSTALL} -d -g ${SHAREGRP} -o ${SHAREOWN} ${APPHOME}/webapps/${PORTNAME}/WEB-INF/conf @(cd ${WRKSRC};${FIND} conf -type f | ${SED} -e '/${CONF_EXT}/d') \ | while read a; do \ ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.${CONF_EXT}; \ |