diff options
author | nsayer <nsayer@FreeBSD.org> | 2001-05-04 23:39:47 +0000 |
---|---|---|
committer | nsayer <nsayer@FreeBSD.org> | 2001-05-04 23:39:47 +0000 |
commit | aaf04dabae59dd4956659808c1dff5adea2c8101 (patch) | |
tree | bc9af26edb39510040f52b4fbe2d926a5f00af3a /net/airport | |
parent | 232c2ff1012b5169d3251d1a8d7971d7f5d8e9ca (diff) | |
download | FreeBSD-ports-aaf04dabae59dd4956659808c1dff5adea2c8101.zip FreeBSD-ports-aaf04dabae59dd4956659808c1dff5adea2c8101.tar.gz |
Take a hint from the mindterm port -- JAR files go in
share/java. Everything else in share/doc. Bump PORTREVISION.
Diffstat (limited to 'net/airport')
-rw-r--r-- | net/airport/Makefile | 9 | ||||
-rw-r--r-- | net/airport/files/airport | 4 | ||||
-rw-r--r-- | net/airport/pkg-plist | 17 |
3 files changed, 18 insertions, 12 deletions
diff --git a/net/airport/Makefile b/net/airport/Makefile index c6f4f00..ffb6585 100644 --- a/net/airport/Makefile +++ b/net/airport/Makefile @@ -7,6 +7,7 @@ PORTNAME= airport PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= net java MASTER_SITES= http://edge.mcs.drexel.edu/GICL/people/sevy/airport/ DISTFILES= configurator_${PORTVERSION:S/.//}${EXTRACT_SUFX} @@ -30,8 +31,12 @@ NO_BUILD= yes do-install: @cd ${WRKSRC}; \ - ${MKDIR} ${PREFIX}/share/airport; \ - ${CP} -r ${WRKSRC}/* ${PREFIX}/share/airport; \ + ${MKDIR} ${PREFIX}/share/doc/airport/helpdocs; \ + ${MKDIR} ${PREFIX}/share/java; \ + ${INSTALL_DATA} ${WRKSRC}/*jar ${PREFIX}/share/java; \ + ${CP} ${WRKSRC}/AUTHORS ${PREFIX}/share/doc/airport; \ + ${CP} ${WRKSRC}/COPYING ${PREFIX}/share/doc/airport; \ + ${CP} -r ${WRKSRC}/helpdocs/* ${PREFIX}/share/doc/airport/helpdocs; \ ${SED} \ -e s,%%PREFIX%%,${PREFIX},g \ -e s/%%JFC_VERSION%%/${JFC_VERSION}/ \ diff --git a/net/airport/files/airport b/net/airport/files/airport index 5c8303d..2ae406c 100644 --- a/net/airport/files/airport +++ b/net/airport/files/airport @@ -1,9 +1,9 @@ #! /bin/sh # Use this one for JDK 1.2 and beyond: -# exec %%PREFIX%%/bin/javavm -jar %%PREFIX%%/share/airport/AirportBaseStationConfig.jar +# exec %%PREFIX%%/bin/javavm -jar %%PREFIX%%/share/java/AirportBaseStationConfig.jar # Use this one for the default installation -- JDK 1.1.x + JFC: -exec %%PREFIX%%/bin/javavm -classpath "%%PREFIX%%/jdk%%JDK_VERSION%%/lib/classes.zip:%%PREFIX%%/share/java/classes/jfc-%%JFC_VERSION%%/swingall.jar:%%PREFIX%%/share/airport/AirportBaseStationConfig.jar" AirportBaseStationConfigurator +exec %%PREFIX%%/bin/javavm -classpath "%%PREFIX%%/jdk%%JDK_VERSION%%/lib/classes.zip:%%PREFIX%%/share/java/classes/jfc-%%JFC_VERSION%%/swingall.jar:%%PREFIX%%/share/java/AirportBaseStationConfig.jar" AirportBaseStationConfigurator exit 1 diff --git a/net/airport/pkg-plist b/net/airport/pkg-plist index 68fe8b4..cbfeb33 100644 --- a/net/airport/pkg-plist +++ b/net/airport/pkg-plist @@ -1,9 +1,10 @@ bin/airport -share/airport/AUTHORS -share/airport/COPYING -share/airport/AirportBaseStationConfig.jar -share/airport/helpdocs/ReadMe.txt -share/airport/helpdocs/mainscreen.jpg -share/airport/helpdocs/manual.html -@dirrm share/airport/helpdocs -@dirrm share/airport +share/java/AirportBaseStationConfig.jar +share/doc/airport/AUTHORS +share/doc/airport/COPYING +share/doc/airport/helpdocs/ReadMe.txt +share/doc/airport/helpdocs/mainscreen.jpg +share/doc/airport/helpdocs/manual.html +@dirrm share/doc/airport/helpdocs +@dirrm share/doc/airport +@unexec rmdir %D/share/java || true |