From owner-freebsd-ports Sun Aug 26 16:30:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E32737B409 for ; Sun, 26 Aug 2001 16:30:06 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f7QNU6A69588; Sun, 26 Aug 2001 16:30:06 -0700 (PDT) (envelope-from gnats) Received: from squigy.ddm.crosswinds.net (p45b.neon4.sentex.ca [64.7.131.205]) by hub.freebsd.org (Postfix) with ESMTP id 2822F37B403 for ; Sun, 26 Aug 2001 16:21:48 -0700 (PDT) (envelope-from dchapes@ddm.crosswinds.net) Received: from rama.ddm.crosswinds.net (rama.ddm.crosswinds.net [204.50.152.20]) by squigy.ddm.crosswinds.net (Postfix) with ESMTP id B3BA88B949 for ; Sun, 26 Aug 2001 19:21:46 -0400 (EDT) Received: by rama.ddm.crosswinds.net (Postfix, from userid 5000) id 81EA732262; Sun, 26 Aug 2001 19:21:47 -0400 (EDT) Message-Id: <20010826232147.81EA732262@rama.ddm.crosswinds.net> Date: Sun, 26 Aug 2001 19:21:47 -0400 (EDT) From: dchapes@ddm.wox.org Reply-To: dchapes@ddm.wox.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/30113: [UPDATE] devel/doxygen 1.2.6 -> 1.2.10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 30113 >Category: ports >Synopsis: [UPDATE] devel/doxygen 1.2.6 -> 1.2.10 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Aug 26 16:30:00 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Dave Chapeskie >Release: FreeBSD 4.3-RELEASE i386 >Organization: DDM Consulting >Environment: System: FreeBSD rama.ddm.wox.org 4.3-RELEASE FreeBSD 4.3-RELEASE #0: Sun Apr 22 00:27:19 EDT 2001 dchapes@rama.ddm.wox.org:/usr/obj/usr/src/sys/RAMA i386 >Description: The following patch makes these changes to devel/doxygen: - Upgrade from 1.2.6 to 1.2.10 (just bumped PORTVERSION and regenerated distinfo and pkg-plist) - Change MAINTAINER to myself. PR history shows that the previous maintainer has been non-responsive for several upgrade cycles. I'm now on the doxygen-announce mailing list so hopefully I'll keep it up-to-date. - Use Qt-2 instead of Qt-1 to build and install doxywizard. - Some cleanup of passing configuration into port's build system. It's still not pretty since this port doesn't use the standard GNU configure arguments for configuring Qt. - Install example files (unless NOPORTDOCS is specified). I've found these files useful but if the space is considered too much I can regenerate the patch without this (or with it configurable). - FIX: If NOPORTDOCS and HAVE_LATEX are both specified do NOT list the dvi and ps files in the packaging list. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/devel/doxygen/Makefile,v retrieving revision 1.11 diff -u -t -r1.11 Makefile --- Makefile 2001/04/03 08:13:59 1.11 +++ Makefile 2001/08/26 23:09:28 @@ -6,20 +6,20 @@ # PORTNAME= doxygen -PORTVERSION= 1.2.6 +PORTVERSION= 1.2.10 CATEGORIES= devel MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/ EXTRACT_SUFX= .src.tar.gz -MAINTAINER= joep@di.nl +MAINTAINER= dchapes@ddm.wox.org -USE_QT_VER= 1 +USE_QT_VER= 2 USE_PERL5= yes -MAKE_ENV+= QTDIR="${X11BASE}" PCFLAGS="${CFLAGS}" PCXXFLAGS="${CXXFLAGS}" HAS_CONFIGURE= yes USE_GMAKE= yes -CONFIGURE_ARGS+=--prefix ${PREFIX} --perl ${PERL5} --make ${GMAKE} -CONFIGURE_ENV+= QTDIR=${X11BASE} +QT_NONSTANDARD= yes # non-standard configure arguements +CONFIGURE_ARGS+=--prefix ${PREFIX} --perl ${PERL} --make ${GMAKE} \ + --with-doxywizard ALL_TARGET= all docs .ifdef HAVE_LATEX ALL_TARGET+= ps @@ -30,6 +30,10 @@ pre-configure: @${PERL} -pi -e "s:gcc:${CC}:g ; s:g\+\+:${CXX}:g ; \ + s:%%LIBQT%%:-l${QTNAME}:g ; \ + s:%%MOC%%:${MOC}:g ; \ + s:%%QT_INC%%:${X11BASE}/include/qt2:g ; \ + s:%%QT_LIB%%:${X11BASE}/lib:g ; \ s:%%CFLAGS%%:${CFLAGS}:g ; \ s:%%CXXFLAGS%%:${CXXFLAGS}:g" ${WRKSRC}/tmake/lib/freebsd-g++/tmake.conf @@ -37,9 +41,12 @@ ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxygen ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxytag ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxysearch ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxywizard ${PREFIX}/bin .ifndef NOPORTDOCS ${MKDIR} ${PREFIX}/share/doc/doxygen/html ${INSTALL_DATA} ${WRKSRC}/html/* ${PREFIX}/share/doc/doxygen/html + ${TAR} -C ${WRKSRC} --exclude '*/Makefile*' -cf - examples | \ + ${TAR} -C ${PREFIX}/share/doc/doxygen --unlink -xf - .ifdef HAVE_LATEX ${INSTALL_DATA} ${WRKSRC}/latex/doxygen_manual.dvi \ ${PREFIX}/share/doc/doxygen Index: distinfo =================================================================== RCS file: /cvs/FreeBSD/ports/devel/doxygen/distinfo,v retrieving revision 1.4 diff -u -t -r1.4 distinfo --- distinfo 2001/03/13 06:38:14 1.4 +++ distinfo 2001/08/26 21:11:35 @@ -1 +1 @@ -MD5 (doxygen-1.2.6.src.tar.gz) = 3acf1bdb6477d62d4bc62d19f8876114 +MD5 (doxygen-1.2.10.src.tar.gz) = 16b6d5a2ceb9629f46695cb01069f115 Index: pkg-plist =================================================================== RCS file: /cvs/FreeBSD/ports/devel/doxygen/pkg-plist,v retrieving revision 1.2 diff -u -t -r1.2 pkg-plist --- pkg-plist 2001/03/13 06:38:14 1.2 +++ pkg-plist 2001/08/26 23:09:40 @@ -1,8 +1,303 @@ bin/doxygen bin/doxytag bin/doxysearch -%%HAVE_LATEX%%share/doc/doxygen/doxygen_manual.dvi -%%HAVE_LATEX%%share/doc/doxygen/doxygen_manual.ps +bin/doxywizard +%%PORTDOCS%%%%HAVE_LATEX%%share/doc/doxygen/doxygen_manual.dvi +%%PORTDOCS%%%%HAVE_LATEX%%share/doc/doxygen/doxygen_manual.ps +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc.cfg +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc.h +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/afterdoc_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/afterdoc/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/author.cfg +%%PORTDOCS%%share/doc/doxygen/examples/author.cpp +%%PORTDOCS%%share/doc/doxygen/examples/author/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/author/html/bug.html +%%PORTDOCS%%share/doc/doxygen/examples/author/html/class_windows_n_t.html +%%PORTDOCS%%share/doc/doxygen/examples/author/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/author/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/author/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/author/html/pages.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink.cfg +%%PORTDOCS%%share/doc/doxygen/examples/autolink.cpp +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/autolink_8cpp.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/autolink/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/class.cfg +%%PORTDOCS%%share/doc/doxygen/examples/class.h +%%PORTDOCS%%share/doc/doxygen/examples/class/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/class/html/class_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/class/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/class/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/class/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/class/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/class/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/define.cfg +%%PORTDOCS%%share/doc/doxygen/examples/define.h +%%PORTDOCS%%share/doc/doxygen/examples/define/html/define_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/define/html/define_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/define/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/define/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/define/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/define/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/define/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams.cfg +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_a-members.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_a.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_a__coll__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_a__inherit__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_b-members.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_b.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_b__coll__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_b__inherit__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_c-members.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_c.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_c__coll__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_c__inherit__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_d-members.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_d.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_d__coll__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_d__inherit__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_e-members.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_e.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_e__coll__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/class_e__inherit__graph.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__a_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__a_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__a_8h__dep__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__b_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__b_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__b_8h__dep__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__c_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__c_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__c_8h__dep__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__c_8h__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__d_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__d_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__d_8h__dep__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__d_8h__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__e_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__e_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/diagrams__e_8h__incl.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/graph_legend.dot +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/graph_legend.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/graph_legend.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/hierarchy.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/inherit__graph__0.gif +%%PORTDOCS%%share/doc/doxygen/examples/diagrams/html/inherits.html +%%PORTDOCS%%share/doc/doxygen/examples/diagrams_a.h +%%PORTDOCS%%share/doc/doxygen/examples/diagrams_b.h +%%PORTDOCS%%share/doc/doxygen/examples/diagrams_c.h +%%PORTDOCS%%share/doc/doxygen/examples/diagrams_d.h +%%PORTDOCS%%share/doc/doxygen/examples/diagrams_e.h +%%PORTDOCS%%share/doc/doxygen/examples/enum.cfg +%%PORTDOCS%%share/doc/doxygen/examples/enum.h +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/enum_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/enum/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/example.cfg +%%PORTDOCS%%share/doc/doxygen/examples/example.cpp +%%PORTDOCS%%share/doc/doxygen/examples/example.tag +%%PORTDOCS%%share/doc/doxygen/examples/example/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/example/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/example/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/example/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/example/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/example/html/example__test_8cpp-example.html +%%PORTDOCS%%share/doc/doxygen/examples/example/html/examples.html +%%PORTDOCS%%share/doc/doxygen/examples/example/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/example/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/example_test.cpp +%%PORTDOCS%%share/doc/doxygen/examples/file.cfg +%%PORTDOCS%%share/doc/doxygen/examples/file.h +%%PORTDOCS%%share/doc/doxygen/examples/file/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/file/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/file/html/file_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/file/html/file_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/file/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/file/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/file/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/func.cfg +%%PORTDOCS%%share/doc/doxygen/examples/func.h +%%PORTDOCS%%share/doc/doxygen/examples/func/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/func/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/func/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/func/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/func/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/func/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/func/html/func_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/func/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/func/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/group.cfg +%%PORTDOCS%%share/doc/doxygen/examples/group.cpp +%%PORTDOCS%%share/doc/doxygen/examples/group/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/class_c1.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/class_c2.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/class_c3.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/class_c4.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/class_c5.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/group/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/group/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/group_8cpp.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/group__group1.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/group__group2.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/group__group3.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/group__group4.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/group__group5.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/modules.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/namespace_n1.html +%%PORTDOCS%%share/doc/doxygen/examples/group/html/namespaces.html +%%PORTDOCS%%share/doc/doxygen/examples/include.cfg +%%PORTDOCS%%share/doc/doxygen/examples/include.cpp +%%PORTDOCS%%share/doc/doxygen/examples/include/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/include/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/include/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/include/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/include/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/include/html/example.html +%%PORTDOCS%%share/doc/doxygen/examples/include/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/include/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/include/html/pages.html +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle.cfg +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle.cpp +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/jdstyle/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp.cfg +%%PORTDOCS%%share/doc/doxygen/examples/memgrp.cpp +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/memgrp/html/memgrp_8cpp.html +%%PORTDOCS%%share/doc/doxygen/examples/overload.cfg +%%PORTDOCS%%share/doc/doxygen/examples/overload.cpp +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/overload/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/page.cfg +%%PORTDOCS%%share/doc/doxygen/examples/page.doc +%%PORTDOCS%%share/doc/doxygen/examples/page/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/page/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/page/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/page/html/page1.html +%%PORTDOCS%%share/doc/doxygen/examples/page/html/page2.html +%%PORTDOCS%%share/doc/doxygen/examples/page/html/pages.html +%%PORTDOCS%%share/doc/doxygen/examples/par.cfg +%%PORTDOCS%%share/doc/doxygen/examples/par.cpp +%%PORTDOCS%%share/doc/doxygen/examples/par/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/par/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/par/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/par/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/par/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle.cfg +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle.cpp +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/qtstyle/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/relates.cfg +%%PORTDOCS%%share/doc/doxygen/examples/relates.cpp +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/class_string-members.html +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/class_string.html +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/relates/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef.cfg +%%PORTDOCS%%share/doc/doxygen/examples/restypedef.cpp +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/restypedef_8cpp.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/struct_coord_struct-members.html +%%PORTDOCS%%share/doc/doxygen/examples/restypedef/html/struct_coord_struct.html +%%PORTDOCS%%share/doc/doxygen/examples/structcmd.cfg +%%PORTDOCS%%share/doc/doxygen/examples/structcmd.h +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/files.html +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/globals.html +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/structcmd_8h-source.html +%%PORTDOCS%%share/doc/doxygen/examples/structcmd/html/structcmd_8h.html +%%PORTDOCS%%share/doc/doxygen/examples/tag.cfg +%%PORTDOCS%%share/doc/doxygen/examples/tag.cpp +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/class_tag-members.html +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/class_tag.gif +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/class_tag.html +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/hierarchy.html +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/index.html +%%PORTDOCS%%share/doc/doxygen/examples/tag/html/installdox +%%PORTDOCS%%share/doc/doxygen/examples/templ.cfg +%%PORTDOCS%%share/doc/doxygen/examples/templ.cpp +%%PORTDOCS%%share/doc/doxygen/examples/template/html/annotated.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test-members.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test_3_01_t_01_5_4-members.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test_3_01_t_01_5_4.gif +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test_3_01_t_01_5_4.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test_3_01void_01_5_00_01200_01_4-members.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test_3_01void_01_5_00_01200_01_4.gif +%%PORTDOCS%%share/doc/doxygen/examples/template/html/class_test_3_01void_01_5_00_01200_01_4.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/doxygen.css +%%PORTDOCS%%share/doc/doxygen/examples/template/html/doxygen.gif +%%PORTDOCS%%share/doc/doxygen/examples/template/html/functions.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/hierarchy.html +%%PORTDOCS%%share/doc/doxygen/examples/template/html/index.html %%PORTDOCS%%share/doc/doxygen/html/autolink.html %%PORTDOCS%%share/doc/doxygen/html/commands.html %%PORTDOCS%%share/doc/doxygen/html/config.html @@ -45,4 +340,51 @@ %%PORTDOCS%%share/doc/doxygen/html/starting.html %%PORTDOCS%%share/doc/doxygen/html/trouble.html %%PORTDOCS%%@dirrm share/doc/doxygen/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/template/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/template +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/tag/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/tag +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/structcmd/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/structcmd +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/restypedef/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/restypedef +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/relates/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/relates +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/qtstyle/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/qtstyle +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/par/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/par +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/page/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/page +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/overload/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/overload +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/memgrp/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/memgrp +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/jdstyle/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/jdstyle +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/include/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/include +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/group/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/group +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/func/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/func +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/file/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/file +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/example/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/example +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/enum/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/enum +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/diagrams/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/diagrams +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/define/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/define +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/class/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/class +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/autolink/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/autolink +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/author/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/author +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/afterdoc/html +%%PORTDOCS%%@dirrm share/doc/doxygen/examples/afterdoc +%%PORTDOCS%%@dirrm share/doc/doxygen/examples %%PORTDOCS%%@dirrm share/doc/doxygen Index: files/patch-af =================================================================== RCS file: /cvs/FreeBSD/ports/devel/doxygen/files/patch-af,v retrieving revision 1.1 diff -u -t -r1.1 patch-af --- files/patch-af 2000/02/25 21:32:24 1.1 +++ files/patch-af 2001/08/26 22:35:32 @@ -1,13 +1,12 @@ ---- tmake/lib/freebsd-g++/tmake.conf.orig Wed Jul 28 08:21:38 1999 -+++ tmake/lib/freebsd-g++/tmake.conf Fri Feb 25 13:22:51 2000 +--- tmake/lib/freebsd-g++/tmake.conf.orig Wed Jul 28 11:21:38 1999 ++++ tmake/lib/freebsd-g++/tmake.conf Sun Aug 26 18:35:30 2001 @@ -8,16 +8,16 @@ CONFIG = qt warn_on release TMAKE_CC = gcc -TMAKE_CFLAGS = -pipe --TMAKE_CFLAGS_WARN_ON = -Wall -W +TMAKE_CFLAGS = %%CFLAGS%% -+TMAKE_CFLAGS_WARN_ON = + TMAKE_CFLAGS_WARN_ON = -Wall -W TMAKE_CFLAGS_WARN_OFF = -TMAKE_CFLAGS_RELEASE = -O2 -TMAKE_CFLAGS_DEBUG = -g @@ -29,14 +28,30 @@ -TMAKE_INCDIR_X11 = /usr/X11R6/include -TMAKE_LIBDIR_X11 = /usr/X11R6/lib -TMAKE_INCDIR_QT = $(QTDIR)/include -+TMAKE_INCDIR_X11 = $(QTDIR)/include -+TMAKE_LIBDIR_X11 = $(QTDIR)/lib -+TMAKE_INCDIR_QT = $(QTDIR)/include/X11/qt - TMAKE_LIBDIR_QT = $(QTDIR)/lib +-TMAKE_LIBDIR_QT = $(QTDIR)/lib -TMAKE_INCDIR_OPENGL = /usr/X11R6/include -TMAKE_LIBDIR_OPENGL = /usr/X11R6/lib -+TMAKE_INCDIR_OPENGL = $(QTDIR)/include -+TMAKE_LIBDIR_OPENGL = $(QTDIR)/lib ++TMAKE_INCDIR_X11 = $(X11BASE)/include ++TMAKE_LIBDIR_X11 = $(X11BASE)/lib ++TMAKE_INCDIR_QT = %%QT_INC%% ++TMAKE_LIBDIR_QT = %%QT_LIB%% ++TMAKE_INCDIR_OPENGL = $(X11BASE)/include ++TMAKE_LIBDIR_OPENGL = $(X11BASE)/lib TMAKE_LINK = g++ TMAKE_LINK_SHLIB = g++ +@@ -46,11 +46,11 @@ + + TMAKE_LIBS = + TMAKE_LIBS_X11 = -lXext -lX11 -lm +-TMAKE_LIBS_QT = -lqt +-TMAKE_LIBS_QT_OPENGL = -lqgl ++TMAKE_LIBS_QT = %%LIBQT%% ++TMAKE_LIBS_QT_OPENGL = -lqtgl + TMAKE_LIBS_OPENGL = -lMesaGL -lMesaGLU -lXmu + +-TMAKE_MOC = moc ++TMAKE_MOC = %%MOC%% + + TMAKE_AR = ar cqs + TMAKE_RANLIB = >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message