summaryrefslogtreecommitdiff
path: root/net/airport/Makefile
diff options
context:
space:
mode:
authorNick Sayer <nsayer@FreeBSD.org>2001-05-04 23:39:47 +0000
committerNick Sayer <nsayer@FreeBSD.org>2001-05-04 23:39:47 +0000
commitdd2d5258d0476fd721847f3dcadd59be14659295 (patch)
tree4c60abb85fcdb8197a36db4a27eab1586bb93215 /net/airport/Makefile
parentMake the default installation work. Add an alternative to the shell (diff)
Take a hint from the mindterm port -- JAR files go in
share/java. Everything else in share/doc. Bump PORTREVISION.
Notes
Notes: svn path=/head/; revision=42264
Diffstat (limited to 'net/airport/Makefile')
-rw-r--r--net/airport/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/net/airport/Makefile b/net/airport/Makefile
index c6f4f0040da1..ffb6585bcfa9 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}/ \