diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-03 18:41:55 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-03 18:41:55 +0000 |
commit | 27d6c46fb9c7297ab6592644ef73f592d4abf06b (patch) | |
tree | 4e5c311256f26eaf4222483983659e3ee4de4014 /devel/trio/Makefile | |
parent | 29d4cfc86f4b65228c43ddd247ada5d526d3412e (diff) |
Notes
Diffstat (limited to 'devel/trio/Makefile')
-rw-r--r-- | devel/trio/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/devel/trio/Makefile b/devel/trio/Makefile index 6e770fcc2d38..81e7177fcca2 100644 --- a/devel/trio/Makefile +++ b/devel/trio/Makefile @@ -7,14 +7,14 @@ # PORTNAME= trio -PORTVERSION= 1.3 +PORTVERSION= 1.6 CATEGORIES= devel -MASTER_SITES= http://www.contactor.se/~dast/stuff/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ctrio -MAINTAINER= ijliao@FreeBSD.org +MAINTAINER= ports@FreeBSD.org -MANCOMPRESSED= no -MAN3= trio_printf.3 trio_scanf.3 trio_register.3 strio.3 +USE_GMAKE= yes post-patch: @${PERL} -pi -e "s,^CFLAGS,#CFLAGS,g" ${WRKSRC}/Makefile @@ -24,8 +24,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include .endfor ${INSTALL_DATA} ${WRKSRC}/libtrio.a ${PREFIX}/lib -.for file in ${MAN3} - ${INSTALL_MAN} ${WRKSRC}/man/man3/${file} ${MANPREFIX}/man/man3 -.endfor +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${CP} -R ${WRKSRC}/doc ${DOCSDIR} + ${CP} -R ${WRKSRC}/html ${DOCSDIR} +.endif .include <bsd.port.mk> |