View | Details | Raw Unified | Return to bug 65703 | Differences between
and this patch

Collapse All | Expand All

(-)maven/Makefile (-4 / +3 lines)
Lines 24-32 Link Here
24
PKGMESSAGE=	${WRKDIR}/pkg-message
24
PKGMESSAGE=	${WRKDIR}/pkg-message
25
25
26
post-configure:
26
post-configure:
27
	@ ${SED} \
27
	@${SED} -e 's,%%PREFIX%%,${PREFIX},g' \
28
	-e 's#%%PREFIX%%#${PREFIX}#g' \
28
		-e 's,%%DIR%%,${DIR},g' pkg-message > ${PKGMESSAGE}
29
	-e 's#%%DIR%%#${DIR}#g' pkg-message > ${PKGMESSAGE}
30
29
31
do-install:
30
do-install:
32
	@cd ${WRKSRC} && ${FIND} . \! -name '*.bat' \! -name repository \
31
	@cd ${WRKSRC} && ${FIND} . \! -name '*.bat' \! -name repository \
Lines 41-47 Link Here
41
40
42
post-install:
41
post-install:
43
.if !defined(BATCH)
42
.if !defined(BATCH)
44
	@ ${CAT} ${PKGMESSAGE}
43
	@${CAT} ${PKGMESSAGE}
45
.endif
44
.endif
46
45
47
# This target is only meant to be used by the port maintainer.
46
# This target is only meant to be used by the port maintainer.
(-)maven/pkg-message (-1 / +1 lines)
Lines 3-9 Link Here
3
  * JAVA_HOME
3
  * JAVA_HOME
4
    Set it to the base directory of your java installation.
4
    Set it to the base directory of your java installation.
5
  * MAVEN_HOME
5
  * MAVEN_HOME
6
    Set it to %%PREFIX%%/%%DIR%%.
6
    Set it to ``%%PREFIX%%/%%DIR%%''.
7
7
8
Then, you should initialize your repository with:
8
Then, you should initialize your repository with:
9
  %%PREFIX%%/%%DIR%%/bin/install_repo.sh ~/.maven/repository
9
  %%PREFIX%%/%%DIR%%/bin/install_repo.sh ~/.maven/repository

Return to bug 65703