Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Jul 2004 16:37:51 +0200 (CEST)
From:      Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        rui@ruilopes.com
Subject:   ports/68769: [PATCH] devel/maven: update to 1.0.r4 and MASTER_SITE_APACHE
Message-ID:  <200407071437.i67Ebp3t065138@arabica.esil.univ-mrs.fr>
Resent-Message-ID: <200407071440.i67EeJDk043848@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         68769
>Category:       ports
>Synopsis:       [PATCH] devel/maven: update to 1.0.r4 and MASTER_SITE_APACHE
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jul 07 14:40:19 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Herve Quiroz
>Release:        FreeBSD 5.2.1-RELEASE-p5 i386
>Organization:
>Environment:
System: FreeBSD arabica.esil.univ-mrs.fr 5.2.1-RELEASE-p5 FreeBSD 5.2.1-RELEASE-p5 #3: Thu May  6 20:17:47 CEST
>Description:

- Update to 1.0.r4
- Use ${MASTER_SITE_APACHE}
- Set and use ${DATADIR} as suggested in [1]
- ${DISTNAME} is now set according to ${PORTVERSION}
- post-configure -> do-configure


NOTE: I changed DIR to DATADIR to match the behaviour of other Java ports.
Indeed DATADIR is automatically added PLIST_SUB.

NOTE2: I did not manage to get x-generate-plist target running so I did a
little find/sed magic:

cd /usr/ports/devel/maven && make extract && cd work/maven* && \
(find . -type f -not -name '*.bat' | sed 's|^\.|%%DATADIR%%|' ; \
find . -type d | sort -r | sed 's|^\.|@dirrm %%DATADIR%%|')

This gives the same result excepted the ${PREFIX}/bin/maven executable. That's
why I added it in the ${PLIST_FILES} variable. I tend to prefer to have
everything that is generated (or symlinked) in the Makefile added to the
packing list through Makefile variables. But that's plain personal taste so I
understand you may disagree with this practice.

NOTE3: For the same reason ("plain personal taste"), I changed post-configure
to do-configure as I believe (and noticed in several other ports) this is
acutally the configuration stage of the port. Again you may disagree with that.


To sum up, the first two change items are quite needed (update to 1.0rc4 and
MASTER_SITE_APACHE) but the last three ones are more cosmetic changes. Feel
free to tell me your opinion on the subject and should you disagree with
something in this PR, I will provide a new patch to match your suggestions.


[1] Porter's handbook - Using Java - Best practices
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-java.html#JAVA-BEST-PRACTICES

Port maintainer (rui@ruilopes.com) is cc'd.

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- maven-1.0.r4.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/devel/maven.original/Makefile /usr/ports/devel/maven/Makefile
--- /usr/ports/devel/maven.original/Makefile	Wed Jul  7 15:35:39 2004
+++ /usr/ports/devel/maven/Makefile	Wed Jul  7 16:17:04 2004
@@ -6,11 +6,11 @@
 #
 
 PORTNAME=	maven
-PORTVERSION=	1.0.r2
+PORTVERSION=	1.0.r4
 CATEGORIES=	devel java
-MASTER_SITES=	http://nagoya.apache.org/mirror/%SUBDIR%/binaries/
-MASTER_SITE_SUBDIR=	${PORTNAME}
-DISTNAME=	${PORTNAME}-1.0-rc2
+MASTER_SITES=	${MASTER_SITE_APACHE}
+MASTER_SITE_SUBDIR=	${PORTNAME}/binaries
+DISTNAME=	${PORTNAME}-${PORTVERSION:S/.r/-rc/}
 
 MAINTAINER=	rui@ruilopes.com
 COMMENT=	Java project management and project comprehension tool
@@ -19,24 +19,23 @@
 USE_JAVA=	yes
 JAVA_VERSION=	1.3+
 NO_BUILD=	YES
-DIR=		share/java/maven
-PLIST_SUB=	DIR=${DIR}
+DATADIR=	${JAVASHAREDIR}/${PORTNAME}
 PKGMESSAGE=	${WRKDIR}/pkg-message
+PLIST_FILES=	bin/maven
 
-post-configure:
-	@${SED} -e 's,%%PREFIX%%,${PREFIX},g' \
-		-e 's,%%DIR%%,${DIR},g' pkg-message > ${PKGMESSAGE}
+do-configure:
+	@${SED} -e 's,%%DATADIR%%,${DATADIR},g' pkg-message > ${PKGMESSAGE}
 
 do-install:
 	@cd ${WRKSRC} && ${FIND} . \! -name '*.bat' \! -name repository \
-		| ${CPIO} -pduv -R ${LIBOWN}:${LIBGRP} ${PREFIX}/${DIR}
-	${CHMOD} -R ${LIBMODE} ${PREFIX}/${DIR}
-	${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/${DIR}/bin
-	${CHMOD} -R ${BINMODE} ${PREFIX}/${DIR}/bin
-	${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/${DIR}/bin/*.conf
-	${CHMOD} ${SHAREMODE} ${PREFIX}/${DIR}/bin/*.conf
-	${FIND} ${PREFIX}/${DIR} -type d | ${XARGS} ${CHMOD} +rx
-	${LN} -fs ${PREFIX}/${DIR}/bin/maven ${PREFIX}/bin
+		| ${CPIO} -pduv -R ${LIBOWN}:${LIBGRP} ${DATADIR}
+	${CHMOD} -R ${LIBMODE} ${DATADIR}
+	${CHOWN} -R ${BINOWN}:${BINGRP} ${DATADIR}/bin
+	${CHMOD} -R ${BINMODE} ${DATADIR}/bin
+	${CHOWN} ${SHAREOWN}:${SHAREGRP} ${DATADIR}/bin/*.conf
+	${CHMOD} ${SHAREMODE} ${DATADIR}/bin/*.conf
+	${FIND} ${DATADIR} -type d | ${XARGS} ${CHMOD} +rx
+	${LN} -fs ${DATADIR}/bin/maven ${PREFIX}/bin
 
 post-install:
 .if !defined(BATCH)
@@ -45,6 +44,6 @@
 
 # This target is only meant to be used by the port maintainer.
 x-generate-plist:
-	(/usr/ports/Tools/scripts/plist -d -m /etc/mtree/BSD.local.dist ${PREFIX}|sed -E 's,^share/nls/.+$$,,g;s,${DIR},%%DIR%%,g'|tr -s '\n') > temp-pkg-plist
+	(/usr/ports/Tools/scripts/plist -d -m /etc/mtree/BSD.local.dist ${PREFIX}|sed -E 's,^share/nls/.+$$,,g;s,${DATADIR},%%DATADIR%%,g'|tr -s '\n') > temp-pkg-plist
 
 .include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/devel/maven.original/distinfo /usr/ports/devel/maven/distinfo
--- /usr/ports/devel/maven.original/distinfo	Wed Jul  7 15:35:39 2004
+++ /usr/ports/devel/maven/distinfo	Wed Jul  7 15:41:18 2004
@@ -1,2 +1,2 @@
-MD5 (maven-1.0-rc2.tar.bz2) = 07cf754e8287a0390fee40672f9f974b
-SIZE (maven-1.0-rc2.tar.bz2) = 5599243
+MD5 (maven-1.0-rc4.tar.bz2) = 5d075ef832a27b55bf5c3760fbff788f
+SIZE (maven-1.0-rc4.tar.bz2) = 5879403
diff -ruN --exclude=CVS /usr/ports/devel/maven.original/pkg-message /usr/ports/devel/maven/pkg-message
--- /usr/ports/devel/maven.original/pkg-message	Wed Jul  7 15:35:39 2004
+++ /usr/ports/devel/maven/pkg-message	Wed Jul  7 16:14:43 2004
@@ -3,10 +3,10 @@
   * JAVA_HOME
     Set it to the base directory of your java installation.
   * MAVEN_HOME
-    Set it to ``%%PREFIX%%/%%DIR%%''.
+    Set it to ``%%DATADIR%%''.
 
 Then, you should initialize your repository with:
-  %%PREFIX%%/%%DIR%%/bin/install_repo.sh ~/.maven/repository
+  %%DATADIR%%/bin/install_repo.sh ~/.maven/repository
 
 If you are behind a proxy, create a ~/.mavenrc file with something like:
   MAVEN_OPTS="$MAVEN_OPTS -Dmaven.proxy.host=YOUR_PROXY_HOSTNAME
diff -ruN --exclude=CVS /usr/ports/devel/maven.original/pkg-plist /usr/ports/devel/maven/pkg-plist
--- /usr/ports/devel/maven.original/pkg-plist	Wed Jul  7 15:35:39 2004
+++ /usr/ports/devel/maven/pkg-plist	Wed Jul  7 16:12:02 2004
@@ -1,120 +1,118 @@
-bin/maven
-%%DIR%%/bin/forehead.conf
-%%DIR%%/bin/install_repo.sh
-%%DIR%%/bin/maven
-%%DIR%%/lib/ant-1.5.3-1.jar
-%%DIR%%/lib/ant-optional-1.5.3-1.jar
-%%DIR%%/lib/commons-beanutils-1.6.1.jar
-%%DIR%%/lib/commons-betwixt-1.0-beta-1.20030111.103454.jar
-%%DIR%%/lib/commons-cli-1.0-beta-2.jar
-%%DIR%%/lib/commons-collections-2.1.jar
-%%DIR%%/lib/commons-digester-1.4.1.jar
-%%DIR%%/lib/commons-grant-1.0-beta-4.jar
-%%DIR%%/lib/commons-graph-0.8.1.jar
-%%DIR%%/lib/commons-io-20030203.000550.jar
-%%DIR%%/lib/commons-jelly-20030902.160215.jar
-%%DIR%%/lib/commons-jelly-tags-ant-20030625.032346.jar
-%%DIR%%/lib/commons-jelly-tags-define-20030211.142932.jar
-%%DIR%%/lib/commons-jelly-tags-util-20030211.141939.jar
-%%DIR%%/lib/commons-jexl-1.0-beta-1.jar
-%%DIR%%/lib/commons-lang-2.0.jar
-%%DIR%%/lib/commons-logging-1.0.3.jar
-%%DIR%%/lib/dom4j-1.4-dev-8.jar
-%%DIR%%/lib/endorsed/xerces-2.4.0.jar
-%%DIR%%/lib/endorsed/xml-apis-1.0.b2.jar
-%%DIR%%/lib/forehead-1.0-beta-5.jar
-%%DIR%%/lib/log4j-1.2.8.jar
-%%DIR%%/lib/maven.jar
-%%DIR%%/lib/plexus-0.6.jar
-%%DIR%%/lib/werkz-20040114.081319.jar
-%%DIR%%/lib/which-1.0.jar
-%%DIR%%/maven-navigation-1.0.xsd
-%%DIR%%/maven-project.xsd
-%%DIR%%/plugins/maven-announcement-plugin-1.0.jar
-%%DIR%%/plugins/maven-ant-plugin-1.6.jar
-%%DIR%%/plugins/maven-antlr-plugin-1.1.jar
-%%DIR%%/plugins/maven-appserver-plugin-2.0.jar
-%%DIR%%/plugins/maven-artifact-plugin-1.1.jar
-%%DIR%%/plugins/maven-ashkelon-plugin-1.1.jar
-%%DIR%%/plugins/maven-aspectj-plugin-2.0.jar
-%%DIR%%/plugins/maven-aspectwerkz-plugin-1.1.jar
-%%DIR%%/plugins/maven-caller-plugin-1.0.jar
-%%DIR%%/plugins/maven-castor-plugin-1.1.jar
-%%DIR%%/plugins/maven-changelog-plugin-1.4.jar
-%%DIR%%/plugins/maven-changes-plugin-1.3.jar
-%%DIR%%/plugins/maven-checkstyle-plugin-2.3.jar
-%%DIR%%/plugins/maven-clean-plugin-1.1.jar
-%%DIR%%/plugins/maven-clover-plugin-1.4.jar
-%%DIR%%/plugins/maven-codeswitcher-plugin-1.1.jar
-%%DIR%%/plugins/maven-console-plugin-1.0.jar
-%%DIR%%/plugins/maven-cruisecontrol-plugin-1.1.jar
-%%DIR%%/plugins/maven-dashboard-plugin-1.2.jar
-%%DIR%%/plugins/maven-deploy-plugin-1.2.jar
-%%DIR%%/plugins/maven-developer-activity-plugin-1.4.jar
-%%DIR%%/plugins/maven-dist-plugin-1.4.jar
-%%DIR%%/plugins/maven-docbook-plugin-1.1.jar
-%%DIR%%/plugins/maven-ear-plugin-1.4.jar
-%%DIR%%/plugins/maven-eclipse-plugin-1.6.jar
-%%DIR%%/plugins/maven-ejb-plugin-1.3.jar
-%%DIR%%/plugins/maven-faq-plugin-1.2.jar
-%%DIR%%/plugins/maven-file-activity-plugin-1.4.jar
-%%DIR%%/plugins/maven-genapp-plugin-2.1.jar
-%%DIR%%/plugins/maven-gump-plugin-1.2.jar
-%%DIR%%/plugins/maven-hibernate-plugin-1.0.jar
-%%DIR%%/plugins/maven-html2xdoc-plugin-1.2.jar
-%%DIR%%/plugins/maven-idea-plugin-1.3.jar
-%%DIR%%/plugins/maven-j2ee-plugin-1.4.jar
-%%DIR%%/plugins/maven-jalopy-plugin-1.1.jar
-%%DIR%%/plugins/maven-jar-plugin-1.4.jar
-%%DIR%%/plugins/maven-java-plugin-1.3.jar
-%%DIR%%/plugins/maven-javacc-plugin-1.0.jar
-%%DIR%%/plugins/maven-javadoc-plugin-1.4.jar
-%%DIR%%/plugins/maven-jboss-plugin-1.4.jar
-%%DIR%%/plugins/maven-jbuilder-plugin-1.4.jar
-%%DIR%%/plugins/maven-jcoverage-plugin-1.0.3.jar
-%%DIR%%/plugins/maven-jdee-plugin-1.0.jar
-%%DIR%%/plugins/maven-jdepend-plugin-1.4.jar
-%%DIR%%/plugins/maven-jdeveloper-plugin-1.3.jar
-%%DIR%%/plugins/maven-jdiff-plugin-1.2.jar
-%%DIR%%/plugins/maven-jellydoc-plugin-1.2.jar
-%%DIR%%/plugins/maven-jetty-plugin-1.0.jar
-%%DIR%%/plugins/maven-jira-plugin-1.0.jar
-%%DIR%%/plugins/maven-jnlp-plugin-1.3.jar
-%%DIR%%/plugins/maven-junit-doclet-plugin-1.1.jar
-%%DIR%%/plugins/maven-junit-report-plugin-1.5.jar
-%%DIR%%/plugins/maven-jxr-plugin-1.3.jar
-%%DIR%%/plugins/maven-latex-plugin-1.1.jar
-%%DIR%%/plugins/maven-latka-plugin-1.3.jar
-%%DIR%%/plugins/maven-license-plugin-1.1.jar
-%%DIR%%/plugins/maven-linkcheck-plugin-1.2.jar
-%%DIR%%/plugins/maven-multichanges-plugin-1.0.jar
-%%DIR%%/plugins/maven-multiproject-plugin-1.2.jar
-%%DIR%%/plugins/maven-native-plugin-1.0.jar
-%%DIR%%/plugins/maven-nsis-plugin-1.0.jar
-%%DIR%%/plugins/maven-pdf-plugin-2.0.jar
-%%DIR%%/plugins/maven-perforce-plugin-1.1.jar
-%%DIR%%/plugins/maven-plugin-plugin-1.3.jar
-%%DIR%%/plugins/maven-pmd-plugin-1.3.jar
-%%DIR%%/plugins/maven-pom-plugin-1.3.jar
-%%DIR%%/plugins/maven-release-plugin-1.2.jar
-%%DIR%%/plugins/maven-repository-plugin-1.1.jar
-%%DIR%%/plugins/maven-scm-plugin-1.2.jar
-%%DIR%%/plugins/maven-shell-plugin-1.1.jar
-%%DIR%%/plugins/maven-simian-plugin-1.3.jar
-%%DIR%%/plugins/maven-site-plugin-1.5.jar
-%%DIR%%/plugins/maven-statcvs-plugin-2.1.jar
-%%DIR%%/plugins/maven-struts-plugin-1.2.jar
-%%DIR%%/plugins/maven-tasklist-plugin-2.3.jar
-%%DIR%%/plugins/maven-test-plugin-1.5.jar
-%%DIR%%/plugins/maven-tjdo-plugin-1.0.0.jar
-%%DIR%%/plugins/maven-uberjar-plugin-1.1.jar
-%%DIR%%/plugins/maven-vdoclet-plugin-1.1.jar
-%%DIR%%/plugins/maven-war-plugin-1.5.jar
-%%DIR%%/plugins/maven-webserver-plugin-2.0.jar
-%%DIR%%/plugins/maven-wizard-plugin-1.0.jar
-%%DIR%%/plugins/maven-xdoc-plugin-1.6.jar
-@dirrm %%DIR%%/plugins
-@dirrm %%DIR%%/lib/endorsed
-@dirrm %%DIR%%/lib
-@dirrm %%DIR%%/bin
-@dirrm %%DIR%%
+%%DATADIR%%/bin/forehead.conf
+%%DATADIR%%/bin/maven
+%%DATADIR%%/bin/install_repo.sh
+%%DATADIR%%/lib/endorsed/xml-apis-1.0.b2.jar
+%%DATADIR%%/lib/endorsed/xerces-2.4.0.jar
+%%DATADIR%%/lib/dom4j-1.4-dev-8.jar
+%%DATADIR%%/lib/ant-1.5.3-1.jar
+%%DATADIR%%/lib/ant-optional-1.5.3-1.jar
+%%DATADIR%%/lib/commons-betwixt-1.0-beta-1.20030111.103454.jar
+%%DATADIR%%/lib/commons-digester-1.4.1.jar
+%%DATADIR%%/lib/commons-jelly-20030902.160215.jar
+%%DATADIR%%/lib/commons-jelly-tags-ant-20030625.032346.jar
+%%DATADIR%%/lib/commons-jelly-tags-define-20030211.142932.jar
+%%DATADIR%%/lib/commons-jelly-tags-util-20030211.141939.jar
+%%DATADIR%%/lib/commons-graph-0.8.1.jar
+%%DATADIR%%/lib/commons-jexl-1.0-beta-1.jar
+%%DATADIR%%/lib/commons-logging-1.0.3.jar
+%%DATADIR%%/lib/commons-httpclient-2.0.jar
+%%DATADIR%%/lib/werkz-20040426.222000.jar
+%%DATADIR%%/lib/commons-beanutils-1.6.1.jar
+%%DATADIR%%/lib/commons-cli-1.0-beta-2.jar
+%%DATADIR%%/lib/commons-collections-2.1.jar
+%%DATADIR%%/lib/commons-grant-1.0-beta-4.jar
+%%DATADIR%%/lib/commons-io-20030203.000550.jar
+%%DATADIR%%/lib/commons-lang-2.0.jar
+%%DATADIR%%/lib/forehead-1.0-beta-5.jar
+%%DATADIR%%/lib/log4j-1.2.8.jar
+%%DATADIR%%/lib/which-1.0.jar
+%%DATADIR%%/lib/plexus-0.6.jar
+%%DATADIR%%/lib/maven-jelly-tags-1.0.jar
+%%DATADIR%%/lib/maven.jar
+%%DATADIR%%/plugins/maven-announcement-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-ant-plugin-1.7.jar
+%%DATADIR%%/plugins/maven-antlr-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-appserver-plugin-2.0.jar
+%%DATADIR%%/plugins/maven-artifact-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-ashkelon-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-aspectj-plugin-3.1.jar
+%%DATADIR%%/plugins/maven-aspectwerkz-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-caller-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-castor-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-changelog-plugin-1.6.jar
+%%DATADIR%%/plugins/maven-changes-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-checkstyle-plugin-2.4.1.jar
+%%DATADIR%%/plugins/maven-clean-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-clover-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-console-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-cruisecontrol-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-dashboard-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-developer-activity-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-dist-plugin-1.6.jar
+%%DATADIR%%/plugins/maven-docbook-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-ear-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-eclipse-plugin-1.7.jar
+%%DATADIR%%/plugins/maven-ejb-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-faq-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-file-activity-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-genapp-plugin-2.2.jar
+%%DATADIR%%/plugins/maven-gump-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-hibernate-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-html2xdoc-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-idea-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-j2ee-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-jalopy-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-jar-plugin-1.6.jar
+%%DATADIR%%/plugins/maven-java-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-javacc-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-javadoc-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-jboss-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-jbuilder-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-jcoverage-plugin-1.0.5.jar
+%%DATADIR%%/plugins/maven-jdee-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-jdepend-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-jdeveloper-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-jdiff-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-jellydoc-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-jetty-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-jira-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-jnlp-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-junit-report-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-junit-doclet-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-jxr-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-latex-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-latka-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-license-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-linkcheck-plugin-1.3.1.jar
+%%DATADIR%%/plugins/maven-multichanges-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-multiproject-plugin-1.3.1.jar
+%%DATADIR%%/plugins/maven-native-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-nsis-plugin-1.0.jar
+%%DATADIR%%/plugins/maven-pdf-plugin-2.1.jar
+%%DATADIR%%/plugins/maven-plugin-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-pmd-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-pom-plugin-1.4.1.jar
+%%DATADIR%%/plugins/maven-release-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-repository-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-rar-plugin-1.0.jar
+%%DATADIR%%/plugins/maven-scm-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-shell-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-simian-plugin-1.4.jar
+%%DATADIR%%/plugins/maven-site-plugin-1.5.jar
+%%DATADIR%%/plugins/maven-struts-plugin-1.3.jar
+%%DATADIR%%/plugins/maven-tasklist-plugin-2.3.jar
+%%DATADIR%%/plugins/maven-test-plugin-1.6.2.jar
+%%DATADIR%%/plugins/maven-tjdo-plugin-1.0.0.jar
+%%DATADIR%%/plugins/maven-uberjar-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-vdoclet-plugin-1.2.jar
+%%DATADIR%%/plugins/maven-war-plugin-1.6.jar
+%%DATADIR%%/plugins/maven-webserver-plugin-2.0.jar
+%%DATADIR%%/plugins/maven-wizard-plugin-1.1.jar
+%%DATADIR%%/plugins/maven-xdoc-plugin-1.7.2.jar
+%%DATADIR%%/maven-project.xsd
+%%DATADIR%%/maven-navigation-1.0.xsd
+@dirrm %%DATADIR%%/plugins
+@dirrm %%DATADIR%%/lib/endorsed
+@dirrm %%DATADIR%%/lib
+@dirrm %%DATADIR%%/bin
+@dirrm %%DATADIR%%
--- maven-1.0.r4.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407071437.i67Ebp3t065138>