1998-12-26 00:00:45 -05:00
|
|
|
# New ports collection makefile for: DOC++
|
|
|
|
# Date created: 20 Dec 1998
|
|
|
|
# Whom: Ruslan@Shevchenko.Kiev.UA
|
|
|
|
#
|
1999-08-25 01:57:29 -04:00
|
|
|
# $FreeBSD$
|
1998-12-26 00:00:45 -05:00
|
|
|
#
|
|
|
|
|
2000-04-11 17:30:15 -04:00
|
|
|
PORTNAME= doc++
|
2003-06-07 06:05:41 -04:00
|
|
|
PORTVERSION= 3.4.10
|
2004-05-24 17:55:57 -04:00
|
|
|
PORTREVISION= 3
|
1998-12-26 00:00:45 -05:00
|
|
|
CATEGORIES= devel
|
2002-12-11 07:07:24 -05:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR= docpp
|
1998-12-26 00:00:45 -05:00
|
|
|
|
|
|
|
MAINTAINER= Ruslan@Shevchenko.Kiev.UA
|
2003-02-21 06:23:04 -05:00
|
|
|
COMMENT= Javadoc style C++ documentatation system
|
1998-12-26 00:00:45 -05:00
|
|
|
|
2004-05-09 06:18:50 -04:00
|
|
|
RUN_DEPENDS= tex:${PORTSDIR}/print/teTeX \
|
|
|
|
anytopnm:${PORTSDIR}/graphics/netpbm
|
|
|
|
|
2003-08-30 20:27:08 -04:00
|
|
|
.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes
|
2004-05-09 06:18:50 -04:00
|
|
|
RUN_DEPENDS+= gs:${PORTSDIR}/print/ghostscript-afpl
|
2003-08-30 20:27:08 -04:00
|
|
|
.else
|
2004-05-24 17:55:57 -04:00
|
|
|
RUN_DEPENDS+= gs:${PORTSDIR}/print/ghostscript-gnu
|
2003-08-30 20:27:08 -04:00
|
|
|
.endif
|
|
|
|
|
1999-05-02 21:52:49 -04:00
|
|
|
GNU_CONFIGURE= yes
|
1998-12-26 00:00:45 -05:00
|
|
|
USE_GMAKE= yes
|
2004-05-09 06:18:50 -04:00
|
|
|
MAKE_ARGS= CPPFLAGS=-D__GNU_LIBRARY__
|
1998-12-26 00:00:45 -05:00
|
|
|
|
2000-04-30 15:32:46 -04:00
|
|
|
ADDITIONAL_DOCS= ClassGraph.class \
|
|
|
|
ClassGraphPanel.class \
|
|
|
|
ClassLayout.class \
|
|
|
|
CommonBase.html \
|
2000-07-11 04:00:08 -04:00
|
|
|
CommandLineOptions.html \
|
|
|
|
ConfigurationFile.html \
|
2000-04-30 15:32:46 -04:00
|
|
|
Derived_Class.html \
|
|
|
|
Example.html \
|
|
|
|
FileInclusion.html \
|
|
|
|
FrequentlyAskedQuestions.html \
|
|
|
|
General.html \
|
2000-07-11 04:00:08 -04:00
|
|
|
GeneralInformations.html \
|
2000-04-30 15:32:46 -04:00
|
|
|
HIER.html \
|
|
|
|
HIERjava.html \
|
|
|
|
InstallationInstructions.html \
|
|
|
|
Intermediate.html \
|
|
|
|
Introduction.html \
|
|
|
|
ManualEntries.html \
|
2001-02-14 00:43:00 -05:00
|
|
|
ManualEntryFields.html \
|
2000-04-30 15:32:46 -04:00
|
|
|
NavigatorButton.class \
|
|
|
|
Quickstart.html \
|
|
|
|
ReferenceManual.html \
|
|
|
|
Structure.html \
|
2000-07-11 04:00:08 -04:00
|
|
|
Tags.html \
|
2000-04-30 15:32:46 -04:00
|
|
|
TextFormatting.html \
|
|
|
|
Usage.html \
|
|
|
|
function.html \
|
|
|
|
icon1.gif \
|
|
|
|
icon2.gif \
|
|
|
|
index.html \
|
|
|
|
supportedHTMLmacros.html \
|
2000-07-11 04:00:08 -04:00
|
|
|
supportedTeXmacros.html \
|
|
|
|
toc.html
|
2000-04-30 15:32:46 -04:00
|
|
|
|
2004-02-07 18:29:51 -05:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2000-04-30 15:32:46 -04:00
|
|
|
post-install:
|
2003-07-10 09:08:46 -04:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${DOCSDIR}
|
2004-05-09 06:18:50 -04:00
|
|
|
for i in ${ADDITIONAL_DOCS}; do \
|
2003-07-10 09:08:46 -04:00
|
|
|
${INSTALL_MAN} ${WRKSRC}/doc/manual/html/$$i ${DOCSDIR} ;\
|
2000-04-30 15:32:46 -04:00
|
|
|
done
|
|
|
|
.endif
|
|
|
|
|
2004-02-07 18:29:51 -05:00
|
|
|
.include <bsd.port.post.mk>
|