diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-16 06:41:58 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-16 06:41:58 +0000 |
commit | b32ad54c041d3581d271317b3f1d8bc1e4f67fff (patch) | |
tree | 708e173e475533aa7659ef76efdba9ad60ab1c13 /devel/scandoc | |
parent | upgrade to 1.0.3 (diff) |
add scandoc
A C/C++ documentation generator
PR: 26561
Submitted by: chrise@scardini.com
Notes
Notes:
svn path=/head/; revision=41452
Diffstat (limited to 'devel/scandoc')
-rw-r--r-- | devel/scandoc/Makefile | 36 | ||||
-rw-r--r-- | devel/scandoc/distinfo | 1 | ||||
-rw-r--r-- | devel/scandoc/pkg-comment | 1 | ||||
-rw-r--r-- | devel/scandoc/pkg-descr | 7 | ||||
-rw-r--r-- | devel/scandoc/pkg-plist | 22 |
5 files changed, 67 insertions, 0 deletions
diff --git a/devel/scandoc/Makefile b/devel/scandoc/Makefile new file mode 100644 index 000000000000..3af8bcca6f16 --- /dev/null +++ b/devel/scandoc/Makefile @@ -0,0 +1,36 @@ +# New ports collection makefile for: scandoc +# Date created: 13 April 2001 +# Whom: Christopher Elkins <chrise@scardini.com> +# +# $FreeBSD$ +# + +PORTNAME= scandoc +PORTVERSION= 0.14 +CATEGORIES= devel perl5 +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org + +USE_PERL5= yes +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} +.for i in COPYING ChangeLog README scandoc.html + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/${PORTNAME} +.endfor + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}/images + ${CP} -R ${WRKSRC}/images/ ${PREFIX}/share/doc/${PORTNAME}/images/ + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}/templates + ${CP} -R ${WRKSRC}/templates/ ${PREFIX}/share/doc/${PORTNAME}/templates/ + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}/test + ${CP} -R ${WRKSRC}/test/ ${PREFIX}/share/doc/${PORTNAME}/test/ +.endif + +.include <bsd.port.mk> diff --git a/devel/scandoc/distinfo b/devel/scandoc/distinfo new file mode 100644 index 000000000000..dc84c2be69e4 --- /dev/null +++ b/devel/scandoc/distinfo @@ -0,0 +1 @@ +MD5 (scandoc-0.14.tar.gz) = 14f6cd9255a95b03dd97bb3f77f25a94 diff --git a/devel/scandoc/pkg-comment b/devel/scandoc/pkg-comment new file mode 100644 index 000000000000..aff6fffded34 --- /dev/null +++ b/devel/scandoc/pkg-comment @@ -0,0 +1 @@ +A C/C++ documentation generator diff --git a/devel/scandoc/pkg-descr b/devel/scandoc/pkg-descr new file mode 100644 index 000000000000..0f79d47a7966 --- /dev/null +++ b/devel/scandoc/pkg-descr @@ -0,0 +1,7 @@ +ScanDoc scans C and C++ program for embedded documentation, and +formats it into HTML or other formats. It also analyzes code +structure and uses this information to enhance the generated +documentation. It has been inspired by JavaDoc, as well as the +Amiga "autodoc" utility. + +WWW: http://scandoc.sourceforge.net/ diff --git a/devel/scandoc/pkg-plist b/devel/scandoc/pkg-plist new file mode 100644 index 000000000000..da1cde6a4498 --- /dev/null +++ b/devel/scandoc/pkg-plist @@ -0,0 +1,22 @@ +bin/scandoc +%%PORTDOCS%%share/doc/scandoc/COPYING +%%PORTDOCS%%share/doc/scandoc/ChangeLog +%%PORTDOCS%%share/doc/scandoc/README +%%PORTDOCS%%share/doc/scandoc/images/ScanDocBig.jpg +%%PORTDOCS%%share/doc/scandoc/images/ScanDocSmall.jpg +%%PORTDOCS%%share/doc/scandoc/images/ball1.gif +%%PORTDOCS%%share/doc/scandoc/images/ball2.gif +%%PORTDOCS%%share/doc/scandoc/images/bug.gif +%%PORTDOCS%%share/doc/scandoc/images/caution.gif +%%PORTDOCS%%share/doc/scandoc/images/master.gif +%%PORTDOCS%%share/doc/scandoc/images/tip.gif +%%PORTDOCS%%share/doc/scandoc/images/warning.gif +%%PORTDOCS%%share/doc/scandoc/scandoc.html +%%PORTDOCS%%share/doc/scandoc/templates/apache.pl +%%PORTDOCS%%share/doc/scandoc/templates/default.pl +%%PORTDOCS%%share/doc/scandoc/test/Makefile +%%PORTDOCS%%share/doc/scandoc/test/example.h +%%PORTDOCS%%@dirrm share/doc/scandoc/images +%%PORTDOCS%%@dirrm share/doc/scandoc/templates +%%PORTDOCS%%@dirrm share/doc/scandoc/test +%%PORTDOCS%%@dirrm share/doc/scandoc |