diff options
author | znerd <znerd@FreeBSD.org> | 2003-02-28 08:48:13 +0000 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2003-02-28 08:48:13 +0000 |
commit | 7c940d565d11adb7d1198102a95020d00ae8af9d (patch) | |
tree | e4358ca4b6eead3e087e20f001c8c0900ef9b8aa /devel/apache-ant | |
parent | 7375e2fc11038d653fefd4804c2b3e0cb1305cd5 (diff) | |
download | FreeBSD-ports-7c940d565d11adb7d1198102a95020d00ae8af9d.zip FreeBSD-ports-7c940d565d11adb7d1198102a95020d00ae8af9d.tar.gz |
Fixing previous commit. The antRun script should go in the 'bin'
subdirectory of the port installation directory, not in
${PREFIX}/bin.
Bumped PORTREVISION.
Indicated by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Diffstat (limited to 'devel/apache-ant')
-rw-r--r-- | devel/apache-ant/Makefile | 5 | ||||
-rw-r--r-- | devel/apache-ant/pkg-plist | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/devel/apache-ant/Makefile b/devel/apache-ant/Makefile index c793cbd..d535a7a 100644 --- a/devel/apache-ant/Makefile +++ b/devel/apache-ant/Makefile @@ -7,7 +7,7 @@ PORTNAME= jakarta-ant PORTVERSION= 1.5.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel java MASTER_SITES= http://jakarta.apache.org/builds/${PORTNAME}/release/v${ANT_VERSION}/bin/ \ http://www.metaverse.nl/~ernst/ \ @@ -55,13 +55,14 @@ post-patch: do-install: @${ECHO_CMD} -n ">> Creating destination directory..." + @${MKDIR} ${PORTDESTDIR}/bin @${MKDIR} ${PORTDESTDIR}/lib @${ECHO_CMD} " [ DONE ]" @${ECHO_CMD} -n ">> Installing scripts..." @cd ${INSTALL_WRKSRC}; \ ${INSTALL_SCRIPT} ${WRKSRC}/bin/ant ${PREFIX}/bin; \ - ${INSTALL_SCRIPT} ${WRKSRC}/bin/antRun ${PREFIX}/bin; + ${INSTALL_SCRIPT} ${WRKSRC}/bin/antRun ${PORTDESTDIR}/bin; @${ECHO_CMD} " [ DONE ]" @${ECHO_CMD} -n ">> Installing readme files..." diff --git a/devel/apache-ant/pkg-plist b/devel/apache-ant/pkg-plist index df2ce79..be827d2 100644 --- a/devel/apache-ant/pkg-plist +++ b/devel/apache-ant/pkg-plist @@ -1,5 +1,5 @@ bin/ant -bin/antRun +%%T%%/bin/antRun %%T%%/lib/ant.jar %%T%%/lib/optional.jar %%T%%/lib/README @@ -1005,6 +1005,7 @@ bin/antRun %%T%%/docs/problems.html %%T%%/docs/projects.html %%T%%/docs/resources.html +@dirrm %%T%%/bin @dirrm %%T%%/lib @dirrm %%T%%/docs/ant2 @dirrm %%T%%/docs/images |