diff options
author | Philippe Audeoud <jadawin@FreeBSD.org> | 2008-05-23 15:20:44 +0000 |
---|---|---|
committer | Philippe Audeoud <jadawin@FreeBSD.org> | 2008-05-23 15:20:44 +0000 |
commit | 90072195f84b7c394ad63dcc993958e10b3eb41e (patch) | |
tree | 85b840212e7a71318b4355add8eb9856465ae896 /devel/dyncall/Makefile | |
parent | 6d3f896d30a896e9a3e3f53e9a27f6e8801584b7 (diff) |
Notes
Diffstat (limited to 'devel/dyncall/Makefile')
-rw-r--r-- | devel/dyncall/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/devel/dyncall/Makefile b/devel/dyncall/Makefile index 671a7b8e99ab..fa957f42af3c 100644 --- a/devel/dyncall/Makefile +++ b/devel/dyncall/Makefile @@ -6,18 +6,19 @@ # PORTNAME= dyncall -PORTVERSION= 0.1 +PORTVERSION= 0.2 CATEGORIES= devel -MASTER_SITES= http://www.dyncall.org/r0.1/ +MASTER_SITES= http://www.dyncall.org/r0.2/ MAINTAINER= tphilipp@potion-studios.com COMMENT= Highly dynamic multi-platform foreign function call interface library +MAN3= dyncall.3 HAS_CONFIGURE= yes MAKEFILE= ${WRKSRC}/BSDmakefile -# There is no install target in the BSD makefile of version 0.1 of the dyncall library, so +# There is no install target in the BSD makefile of version 0.2 of the dyncall library, so # install it manually. do-install: @@ -31,5 +32,8 @@ do-install: ${CP} ${WRKSRC}/dynload/dynload.h ${PREFIX}/include/dynload.h ${CP} ${WRKSRC}/dyncall/libdyncall_s.a ${PREFIX}/lib/libdyncall_s.a ${CP} ${WRKSRC}/dynload/libdynload_s.a ${PREFIX}/lib/libdynload_s.a +.for f3 in ${MAN3} + ${INSTALL_MAN} ${WRKSRC}/doc/${f3} ${MAN3PREFIX}/man/man3 +.endfor .include <bsd.port.mk> |