Index: head/x11-toolkits/fox/Makefile =================================================================== --- head/x11-toolkits/fox/Makefile (revision 74695) +++ head/x11-toolkits/fox/Makefile (revision 74696) @@ -1,90 +1,136 @@ # New ports collection makefile for: fox # Date created: 23 Feb 2000 # Whom: Will Andrews # # $FreeBSD$ # PORTNAME= fox -PORTVERSION?= 1.0.11 +PORTVERSION?= 1.0.30 PORTREVISION?= 0 CATEGORIES= x11-toolkits MASTER_SITES= http://www.fox-toolkit.org/ftp/ \ ftp://ftp.fox-toolkit.org/pub/ \ ftp://ftp.cfdrc.com/pub/FOX/ \ ftp://SunSITE.Informatik.RWTH-Aachen.DE/pub/Linux/fox/ MAINTAINER?= ports@FreeBSD.org LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png + png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff -.if defined(WITH_XUNICODE) -PKGNAMESUFFIX= -unicode - -PATCHVERSION?= ${PORTVERSION} - -PATCH_SITES= http://www.ab.wakwak.com/~tino/jatk/fox/ -PATCHFILES= ${PORTNAME}${PKGNAMESUFFIX}-${PATCHVERSION}.diff -PATCH_DIST_STRIP= -p1 - -BUILD_DEPENDS= ${X11BASE}/include/xunicode/xunicode.h:${PORTSDIR}/converters/xunicode - -CONFIGURE_ENV= X_CFLAGS=-DUSE_UNICODE - -PLIST_SUB= OLDFILE="" \ - NEWFILE="@comment " -.else -PLIST_SUB= OLDFILE="@comment " \ - NEWFILE="" -.endif - USE_MESA= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" \ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS+=--with-opengl=mesa --with-x -.if defined(NO_SHM) + +MAN1= reswrap.1 + +## +## Additional Options +## +# +.if defined(WITHOUT_SHM) CONFIGURE_ARGS+=--with-shm=no .else CONFIGURE_ARGS+=--with-shm=yes .endif -.if defined(DEBUG) +# +.if defined(WITH_CUPS) +CONFIGURE_ARGS+=--enable-cups +.else +CONFIGURE_ARGS+=--disable-cups +.endif +# +.if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug .else CONFIGURE_ARGS+=--enable-release .endif -.if defined(WANT_PROFILE) +# +.if defined(WITH_FOX_APPLICATIONS) +PLIST_SUB+= APPS="" + +MAN1+= PathFinder.1 adie.1 calculator.1 +.else +PLIST_SUB+= APPS="@comment " +.endif +# +.if defined(WITH_OPTIMIZED_CXXFLAGS) +# turn distribution-recommended optimization flags back on +CXXFLAGS+= -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations +.endif +# +.if defined(WITH_PROFILING) CONFIGURE_ARGS+=--with-profiling=gprof .endif -MAKE_ARGS+= -j3 +# .if defined(NOPORTDOCS) MAKE_ARGS+= DOC= .else MAKE_ARGS+= DOC=doc .endif -#USE_LIBTOOL= yes -SHLIB_MAJ= 1 -SHLIB_MIN= 0 -MAKE_ENV+= LT_CURRENT="${SHLIB_MAJ}" LT_REVISION="${SHLIB_MIN}" -PLIST_SUB+= LIBVER="${SHLIB_MAJ}" -MAN1= reswrap.1 -# Uncomment this to turn the distribution-recommended optimization flags on. -#CXXFLAGS= -O2 -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations - -.if defined(WITH_XUNICODE) -post-extract: - cd ${WRKSRC} && ${LN} -s ${X11BASE}/include/xunicode -.endif - post-patch: - ${REINPLACE_CMD} -E 's/^(SUBDIRS[ ]*=[ ]*).*/\1utils include src $${DOC}/' \ +# CXXFLAGS safeness +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${REINPLACE_CMD} -E -e \ + 's|-O2|${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.else + @${REINPLACE_CMD} -E -e \ + 's|-O2|-O2 ${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.endif +# doc prefix safeness + @${REINPLACE_CMD} -E -e \ + 's|^(htmldir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(artdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/art/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(screenshotsdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/screenshots/Makefile.in +.if !defined(WITH_FOX_APPLICATIONS) + @${REINPLACE_CMD} -E -e \ + 's,^(SUBDIRS.*)adie,\1,; \ + s,^(SUBDIRS.*)pathfinder,\1,; \ + s,^(SUBDIRS.*)calculator,\1,' \ ${WRKSRC}/Makefile.in - ${FIND} ${WRKSRC} -name Makefile.in -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -E 's:\$$\(prefix\)/@PACKAGE@:$$(datadir)/doc/@PACKAGE@:' +.endif + +pre-everything:: +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable additional compilation optimizations' + @${ECHO_MSG} 'by defining WITH_OPTIMIZED_CXXFLAGS' +.endif +.if !defined(WITH_CUPS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable CUPS support by defining WITH_CUPS' +.endif +.if !defined(WITH_DEBUG) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build DEBUG support by defining WITH_DEBUG' +.endif +.if !defined(WITH_FOX_APPLICATIONS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can install FOX sample applications by defining WITH_FOX_APPLICATIONS" +.endif +.if !defined(WITH_PROFILING) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build PROFILING support by defining WITH_PROFILING' +.endif +.if !defined(WITHOUT_SHM) + @${ECHO_MSG} + @${ECHO_MSG} 'You can disable Shared Memory support by defining WITHOUT_SHM' +.endif + @${ECHO_MSG} .include Property changes on: head/x11-toolkits/fox/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.32 \ No newline at end of property +1.33 \ No newline at end of property Index: head/x11-toolkits/fox/distinfo =================================================================== --- head/x11-toolkits/fox/distinfo (revision 74695) +++ head/x11-toolkits/fox/distinfo (revision 74696) @@ -1,3 +1 @@ -MD5 (fox-0.99.174.tar.gz) = 8546249fd51964c8269aecbcbb9e7946 -MD5 (fox-unicode-0.99.174.diff) = 7f24a256f24179e64cd778fa748454a0 -MD5 (fox-1.0.11.tar.gz) = 27d344b24b6158b9bc209f9ee3215619 +MD5 (fox-1.0.30.tar.gz) = 19486a03a11f916c17b8988d9d6f2cef Property changes on: head/x11-toolkits/fox/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/x11-toolkits/fox/files/patch-aa =================================================================== --- head/x11-toolkits/fox/files/patch-aa (revision 74695) +++ head/x11-toolkits/fox/files/patch-aa (nonexistent) @@ -1,23 +0,0 @@ ---- src/Makefile.in.orig Fri Oct 6 16:07:43 2000 -+++ src/Makefile.in Mon Oct 9 08:18:53 2000 -@@ -74,9 +74,9 @@ - LIBTOOL = @LIBTOOL@ - LN_S = @LN_S@ - LT_AGE = @LT_AGE@ --LT_CURRENT = @LT_CURRENT@ -+LT_CURRENT ?= @LT_CURRENT@ - LT_RELEASE = @LT_RELEASE@ --LT_REVISION = @LT_REVISION@ -+LT_REVISION ?= @LT_REVISION@ - MAKEINFO = @MAKEINFO@ - OBJDUMP = @OBJDUMP@ - PACKAGE = @PACKAGE@ -@@ -91,7 +91,7 @@ - - libFOX_la_LIBADD = $(X_LIBS) $(X_BASE_LIBS) $(X_EXTRA_LIBS) $(GL_LIBS) - --libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION) - - - CURSORS = crosshair.xbm crosshair_mask.xbm dndcopy.xbm dndcopy_mask.xbm dndlink.xbm dndlink_mask.xbm dndmove.xbm dndmove_mask.xbm dontdrop.xbm dontdrop_mask.xbm drag.xbm drag_mask.xbm gray.xbm hsplit.xbm hsplit_mask.xbm move.xbm move_mask.xbm resize.xbm resize_mask.xbm resizeleft.xbm resizeleft_mask.xbm resizetop.xbm resizetop_mask.xbm resizetopleft.xbm resizetopleft_mask.xbm resizetopright.xbm resizetopright_mask.xbm rotate.xbm rotate_mask.xbm swatch.xbm swatch_mask.xbm vsplit.xbm vsplit_mask.xbm xsplit.xbm xsplit_mask.xbm ne.xbm ne_mask.xbm se.xbm se_mask.xbm sw.xbm sw_mask.xbm nw.xbm nw_mask.xbm translate.xbm translate_mask.xbm zoom.xbm zoom_mask.xbm Property changes on: head/x11-toolkits/fox/files/patch-aa ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox/files/patch-ad =================================================================== --- head/x11-toolkits/fox/files/patch-ad (revision 74695) +++ head/x11-toolkits/fox/files/patch-ad (nonexistent) @@ -1,26 +0,0 @@ ---- configure.orig Thu Apr 5 05:25:59 2001 -+++ configure Tue May 1 01:34:27 2001 -@@ -839,7 +839,7 @@ - - - --CXXFLAGS="" -+#CXXFLAGS="" - - echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 - echo "configure:846: checking whether ${MAKE-make} sets \${MAKE}" >&5 -@@ -3440,9 +3440,12 @@ - - echo "$ac_t""$enable_release" 1>&6 - if test "x$enable_release" = "xyes" ; then --CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" -+CXXFLAGS="${CXXFLAGS} -DNDEBUG" - if test "${GXX}" = "yes" ; then --CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+#CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+if test "${with_profiling}" = ""; then -+CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer" -+fi - fi - fi - Property changes on: head/x11-toolkits/fox/files/patch-ad ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox/files/patch-configure =================================================================== --- head/x11-toolkits/fox/files/patch-configure (nonexistent) +++ head/x11-toolkits/fox/files/patch-configure (revision 74696) @@ -0,0 +1,11 @@ +--- configure.orig Tue Feb 4 18:33:38 2003 ++++ configure Tue Feb 4 18:34:51 2003 +@@ -7498,7 +7498,7 @@ + if test "x$enable_release" = "xyes" ; then + CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" + if test "${GXX}" = "yes" ; then +-CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" ++CXXFLAGS="${CXXFLAGS} -Wuninitialized" + fi + fi + Property changes on: head/x11-toolkits/fox/files/patch-configure ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/fox/pkg-plist =================================================================== --- head/x11-toolkits/fox/pkg-plist (revision 74695) +++ head/x11-toolkits/fox/pkg-plist (revision 74696) @@ -1,297 +1,268 @@ +%%APPS%%bin/PathFinder +%%APPS%%bin/adie +%%APPS%%bin/calculator bin/reswrap include/fox/FX4Splitter.h include/fox/FXAccelTable.h include/fox/FXApp.h include/fox/FXArray.h include/fox/FXArrowButton.h include/fox/FXBMPIcon.h include/fox/FXBMPImage.h include/fox/FXBitmap.h include/fox/FXButton.h -%%NEWFILE%%include/fox/FXCURCursor.h +include/fox/FXCURCursor.h include/fox/FXCanvas.h include/fox/FXCharset.h include/fox/FXCheckButton.h -%%NEWFILE%%include/fox/FXColorBar.h +include/fox/FXColorBar.h include/fox/FXColorDialog.h include/fox/FXColorSelector.h include/fox/FXColorWell.h -%%NEWFILE%%include/fox/FXColorWheel.h +include/fox/FXColorWheel.h include/fox/FXComboBox.h include/fox/FXComposite.h include/fox/FXCursor.h include/fox/FXDC.h include/fox/FXDCPrint.h include/fox/FXDCWindow.h include/fox/FXDHMat.h include/fox/FXDHVec.h include/fox/FXDQuat.h include/fox/FXDVec.h include/fox/FXDataTarget.h include/fox/FXDebugTarget.h include/fox/FXDelegator.h include/fox/FXDial.h include/fox/FXDialogBox.h include/fox/FXDict.h include/fox/FXDirBox.h include/fox/FXDirDialog.h include/fox/FXDirList.h include/fox/FXDirSelector.h include/fox/FXDocument.h include/fox/FXDragCorner.h include/fox/FXDrawable.h include/fox/FXDriveBox.h include/fox/FXElement.h include/fox/FXException.h include/fox/FXFile.h include/fox/FXFileDialog.h include/fox/FXFileDict.h include/fox/FXFileList.h include/fox/FXFileSelector.h include/fox/FXFont.h include/fox/FXFontDialog.h include/fox/FXFontSelector.h include/fox/FXFrame.h include/fox/FXGIFCursor.h include/fox/FXGIFIcon.h include/fox/FXGIFImage.h include/fox/FXGLCanvas.h include/fox/FXGLCone.h include/fox/FXGLContext.h include/fox/FXGLCube.h include/fox/FXGLCylinder.h include/fox/FXGLObject.h include/fox/FXGLShape.h include/fox/FXGLSphere.h include/fox/FXGLTriangleMesh.h include/fox/FXGLViewer.h include/fox/FXGLVisual.h include/fox/FXGroupBox.h include/fox/FXHMat.h include/fox/FXHVec.h include/fox/FXHeader.h include/fox/FXHorizontalFrame.h -%%NEWFILE%%include/fox/FXICOIcon.h -%%NEWFILE%%include/fox/FXICOImage.h +include/fox/FXICOIcon.h +include/fox/FXICOImage.h include/fox/FXIcon.h include/fox/FXIconList.h include/fox/FXId.h include/fox/FXImage.h include/fox/FXImageView.h include/fox/FXInputDialog.h -%%OLDFILE%%include/fox/FXJPEGIcon.h -%%OLDFILE%%include/fox/FXJPEGImage.h -%%NEWFILE%%include/fox/FXJPGIcon.h -%%NEWFILE%%include/fox/FXJPGImage.h +include/fox/FXJPGIcon.h +include/fox/FXJPGImage.h include/fox/FXLabel.h include/fox/FXList.h include/fox/FXListBox.h include/fox/FXMDIButton.h include/fox/FXMDIChild.h include/fox/FXMDIClient.h include/fox/FXMainWindow.h include/fox/FXMatrix.h include/fox/FXMenuButton.h include/fox/FXMenuCaption.h include/fox/FXMenuCascade.h include/fox/FXMenuCommand.h include/fox/FXMenuPane.h include/fox/FXMenuSeparator.h include/fox/FXMenuTitle.h include/fox/FXMenubar.h include/fox/FXMessageBox.h include/fox/FXObject.h include/fox/FXObjectList.h include/fox/FXOptionMenu.h include/fox/FXPCXIcon.h include/fox/FXPCXImage.h include/fox/FXPNGIcon.h include/fox/FXPNGImage.h include/fox/FXPacker.h -%%NEWFILE%%include/fox/FXPicker.h +include/fox/FXPicker.h include/fox/FXPoint.h include/fox/FXPopup.h include/fox/FXPrintDialog.h -%%OLDFILE%%include/fox/FXProfiler.h include/fox/FXProgressBar.h include/fox/FXProgressDialog.h include/fox/FXQuat.h -%%NEWFILE%%include/fox/FXRGBIcon.h -%%NEWFILE%%include/fox/FXRGBImage.h +include/fox/FXRGBIcon.h +include/fox/FXRGBImage.h include/fox/FXRadioButton.h include/fox/FXRange.h include/fox/FXRecentFiles.h include/fox/FXRectangle.h include/fox/FXRegion.h include/fox/FXRegistry.h include/fox/FXReplaceDialog.h -%%NEWFILE%%include/fox/FXRex.h +include/fox/FXRex.h include/fox/FXRootWindow.h include/fox/FXScrollArea.h include/fox/FXScrollWindow.h include/fox/FXScrollbar.h include/fox/FXSearchDialog.h include/fox/FXSeparator.h include/fox/FXSettings.h include/fox/FXShell.h include/fox/FXShutter.h include/fox/FXSize.h include/fox/FXSlider.h include/fox/FXSpinner.h include/fox/FXSplitter.h include/fox/FXStatusbar.h include/fox/FXStatusline.h include/fox/FXStream.h include/fox/FXString.h -%%NEWFILE%%include/fox/FXStringDict.h +include/fox/FXStringDict.h include/fox/FXSwitcher.h -%%NEWFILE%%include/fox/FXTGAIcon.h -%%NEWFILE%%include/fox/FXTGAImage.h +include/fox/FXTGAIcon.h +include/fox/FXTGAImage.h include/fox/FXTIFIcon.h include/fox/FXTIFImage.h -%%OLDFILE%%include/fox/FXTab.h -%%NEWFILE%%include/fox/FXTabBar.h -%%NEWFILE%%include/fox/FXTabBook.h -%%NEWFILE%%include/fox/FXTabItem.h +include/fox/FXTabBar.h +include/fox/FXTabBook.h +include/fox/FXTabItem.h include/fox/FXTable.h include/fox/FXText.h include/fox/FXTextField.h include/fox/FXToggleButton.h include/fox/FXToolbar.h include/fox/FXToolbarGrip.h include/fox/FXToolbarShell.h include/fox/FXToolbarTab.h include/fox/FXTooltip.h include/fox/FXTopWindow.h include/fox/FXTreeList.h include/fox/FXTreeListBox.h include/fox/FXURL.h include/fox/FXUndoList.h include/fox/FXVec.h include/fox/FXVerticalFrame.h include/fox/FXVisual.h include/fox/FXWindow.h include/fox/FXXPMIcon.h include/fox/FXXPMImage.h include/fox/fx.h include/fox/fx3d.h include/fox/fxdefs.h include/fox/fxkeys.h -%%OLDFILE%%include/fox/fxregex.h include/fox/fxver.h include/fox/xincs.h -@dirrm include/fox +lib/libFOX-1.0.so +lib/libFOX-1.0.so.0 lib/libFOX.a lib/libFOX.la lib/libFOX.so -lib/libFOX.so.%%LIBVER%% -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.jpg +%%PORTDOCS%%share/doc/fox/html/adie_colors.jpg +%%PORTDOCS%%share/doc/fox/html/adie_del.jpg +%%PORTDOCS%%share/doc/fox/html/adie_edit.jpg +%%PORTDOCS%%share/doc/fox/html/adie_font.jpg +%%PORTDOCS%%share/doc/fox/html/adie_pat.jpg %%PORTDOCS%%share/doc/fox/html/app.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxstart.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/freespeach.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ill.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ilr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/innernerd.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iur.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/nerd_inside.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oll.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/olr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/opengl_logo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul_grey.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/our.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/slingerzbutton1.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-libraries.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-linkoutput.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-postbuild.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-preprocessor.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-project.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-tooloptions.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/wintextedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/calc.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrc.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrclogo.png +%%PORTDOCS%%share/doc/fox/html/bigpenguin.png +%%PORTDOCS%%share/doc/fox/html/calc.html +%%PORTDOCS%%share/doc/fox/html/colordialog.png %%PORTDOCS%%share/doc/fox/html/datatarget.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit1.gif -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit2.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/doc.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/download.html +%%PORTDOCS%%share/doc/fox/html/dirdialog.png +%%PORTDOCS%%share/doc/fox/html/doc.html +%%PORTDOCS%%share/doc/fox/html/download.html %%PORTDOCS%%share/doc/fox/html/draganddrop.html %%PORTDOCS%%share/doc/fox/html/faq.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/filefuncs.html +%%PORTDOCS%%share/doc/fox/html/filedialog.png +%%PORTDOCS%%share/doc/fox/html/filefuncs.html %%PORTDOCS%%share/doc/fox/html/focus.html +%%PORTDOCS%%share/doc/fox/html/fontdialog.png %%PORTDOCS%%share/doc/fox/html/fonts.html %%PORTDOCS%%share/doc/fox/html/foreword.html %%PORTDOCS%%share/doc/fox/html/fox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxback.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/goals.html +%%PORTDOCS%%share/doc/fox/html/foxcalc.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_01_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_02_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_03_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxlogo.png +%%PORTDOCS%%share/doc/fox/html/foxstart.png +%%PORTDOCS%%share/doc/fox/html/freespeach.gif +%%PORTDOCS%%share/doc/fox/html/glview.png +%%PORTDOCS%%share/doc/fox/html/goals.html %%PORTDOCS%%share/doc/fox/html/guiupdate.html %%PORTDOCS%%share/doc/fox/html/icons.html +%%PORTDOCS%%share/doc/fox/html/ill.gif +%%PORTDOCS%%share/doc/fox/html/ilr.gif +%%PORTDOCS%%share/doc/fox/html/innernerd.gif %%PORTDOCS%%share/doc/fox/html/introduction.html +%%PORTDOCS%%share/doc/fox/html/iul.gif +%%PORTDOCS%%share/doc/fox/html/iur.gif %%PORTDOCS%%share/doc/fox/html/layout.html %%PORTDOCS%%share/doc/fox/html/messages.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/nasafan.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/news.html +%%PORTDOCS%%share/doc/fox/html/nerd_inside.gif +%%PORTDOCS%%share/doc/fox/html/news.html %%PORTDOCS%%share/doc/fox/html/oldfox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/opengl_logo.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/owl-anim.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pathfinder.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pcboard.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/platforms.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/pathfinder.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/projects.html +%%PORTDOCS%%share/doc/fox/html/oll.gif +%%PORTDOCS%%share/doc/fox/html/olr.gif +%%PORTDOCS%%share/doc/fox/html/opengl_logo.png +%%PORTDOCS%%share/doc/fox/html/oul.gif +%%PORTDOCS%%share/doc/fox/html/oul_grey.gif +%%PORTDOCS%%share/doc/fox/html/our.gif +%%PORTDOCS%%share/doc/fox/html/pathfinder.html +%%PORTDOCS%%share/doc/fox/html/pathfinder.png +%%PORTDOCS%%share/doc/fox/html/printdialog.png +%%PORTDOCS%%share/doc/fox/html/progress.png +%%PORTDOCS%%share/doc/fox/html/projects.html %%PORTDOCS%%share/doc/fox/html/registry.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/rex.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_colors.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_del.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_edit.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_font.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_pat.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/colordialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/dirdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/filedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/fontdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_01_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_02_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_03_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/glview.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/pathfinder.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/printdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/replacedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/searchdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/table.png +%%PORTDOCS%%share/doc/fox/html/replacedialog.png +%%PORTDOCS%%share/doc/fox/html/rex.html +%%PORTDOCS%%share/doc/fox/html/screenshots.html +%%PORTDOCS%%share/doc/fox/html/scribble.png +%%PORTDOCS%%share/doc/fox/html/searchdialog.png %%PORTDOCS%%share/doc/fox/html/serialization.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/styles.css -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/tb-paste.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit2.png +%%PORTDOCS%%share/doc/fox/html/sgitextedit.png +%%PORTDOCS%%share/doc/fox/html/slingerzbutton1.gif +%%PORTDOCS%%share/doc/fox/html/styles.css +%%PORTDOCS%%share/doc/fox/html/table.png %%PORTDOCS%%share/doc/fox/html/timers.html %%PORTDOCS%%share/doc/fox/html/widgets.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-libraries.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-linkoutput.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-postbuild.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-preprocessor.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-project.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-tooloptions.png +%%PORTDOCS%%share/doc/fox/html/win32-libraries.png +%%PORTDOCS%%share/doc/fox/html/win32-linkoutput.png +%%PORTDOCS%%share/doc/fox/html/win32-postbuild.png +%%PORTDOCS%%share/doc/fox/html/win32-preprocessor.png +%%PORTDOCS%%share/doc/fox/html/win32-project.png +%%PORTDOCS%%share/doc/fox/html/win32-tooloptions.png %%PORTDOCS%%share/doc/fox/html/win32.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/wintextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/window.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/xml.html -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/screenshots -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/art +%%PORTDOCS%%share/doc/fox/html/window.html +%%PORTDOCS%%share/doc/fox/html/wintextedit.png +%%PORTDOCS%%share/doc/fox/html/xml.html %%PORTDOCS%%@dirrm share/doc/fox/html %%PORTDOCS%%@dirrm share/doc/fox +@dirrm include/fox Property changes on: head/x11-toolkits/fox/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/x11-toolkits/fox-devel/Makefile =================================================================== --- head/x11-toolkits/fox-devel/Makefile (revision 74695) +++ head/x11-toolkits/fox-devel/Makefile (revision 74696) @@ -1,90 +1,136 @@ # New ports collection makefile for: fox # Date created: 23 Feb 2000 # Whom: Will Andrews # # $FreeBSD$ # PORTNAME= fox -PORTVERSION?= 1.0.11 +PORTVERSION?= 1.0.30 PORTREVISION?= 0 CATEGORIES= x11-toolkits MASTER_SITES= http://www.fox-toolkit.org/ftp/ \ ftp://ftp.fox-toolkit.org/pub/ \ ftp://ftp.cfdrc.com/pub/FOX/ \ ftp://SunSITE.Informatik.RWTH-Aachen.DE/pub/Linux/fox/ MAINTAINER?= ports@FreeBSD.org LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png + png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff -.if defined(WITH_XUNICODE) -PKGNAMESUFFIX= -unicode - -PATCHVERSION?= ${PORTVERSION} - -PATCH_SITES= http://www.ab.wakwak.com/~tino/jatk/fox/ -PATCHFILES= ${PORTNAME}${PKGNAMESUFFIX}-${PATCHVERSION}.diff -PATCH_DIST_STRIP= -p1 - -BUILD_DEPENDS= ${X11BASE}/include/xunicode/xunicode.h:${PORTSDIR}/converters/xunicode - -CONFIGURE_ENV= X_CFLAGS=-DUSE_UNICODE - -PLIST_SUB= OLDFILE="" \ - NEWFILE="@comment " -.else -PLIST_SUB= OLDFILE="@comment " \ - NEWFILE="" -.endif - USE_MESA= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" \ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS+=--with-opengl=mesa --with-x -.if defined(NO_SHM) + +MAN1= reswrap.1 + +## +## Additional Options +## +# +.if defined(WITHOUT_SHM) CONFIGURE_ARGS+=--with-shm=no .else CONFIGURE_ARGS+=--with-shm=yes .endif -.if defined(DEBUG) +# +.if defined(WITH_CUPS) +CONFIGURE_ARGS+=--enable-cups +.else +CONFIGURE_ARGS+=--disable-cups +.endif +# +.if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug .else CONFIGURE_ARGS+=--enable-release .endif -.if defined(WANT_PROFILE) +# +.if defined(WITH_FOX_APPLICATIONS) +PLIST_SUB+= APPS="" + +MAN1+= PathFinder.1 adie.1 calculator.1 +.else +PLIST_SUB+= APPS="@comment " +.endif +# +.if defined(WITH_OPTIMIZED_CXXFLAGS) +# turn distribution-recommended optimization flags back on +CXXFLAGS+= -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations +.endif +# +.if defined(WITH_PROFILING) CONFIGURE_ARGS+=--with-profiling=gprof .endif -MAKE_ARGS+= -j3 +# .if defined(NOPORTDOCS) MAKE_ARGS+= DOC= .else MAKE_ARGS+= DOC=doc .endif -#USE_LIBTOOL= yes -SHLIB_MAJ= 1 -SHLIB_MIN= 0 -MAKE_ENV+= LT_CURRENT="${SHLIB_MAJ}" LT_REVISION="${SHLIB_MIN}" -PLIST_SUB+= LIBVER="${SHLIB_MAJ}" -MAN1= reswrap.1 -# Uncomment this to turn the distribution-recommended optimization flags on. -#CXXFLAGS= -O2 -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations - -.if defined(WITH_XUNICODE) -post-extract: - cd ${WRKSRC} && ${LN} -s ${X11BASE}/include/xunicode -.endif - post-patch: - ${REINPLACE_CMD} -E 's/^(SUBDIRS[ ]*=[ ]*).*/\1utils include src $${DOC}/' \ +# CXXFLAGS safeness +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${REINPLACE_CMD} -E -e \ + 's|-O2|${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.else + @${REINPLACE_CMD} -E -e \ + 's|-O2|-O2 ${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.endif +# doc prefix safeness + @${REINPLACE_CMD} -E -e \ + 's|^(htmldir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(artdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/art/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(screenshotsdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/screenshots/Makefile.in +.if !defined(WITH_FOX_APPLICATIONS) + @${REINPLACE_CMD} -E -e \ + 's,^(SUBDIRS.*)adie,\1,; \ + s,^(SUBDIRS.*)pathfinder,\1,; \ + s,^(SUBDIRS.*)calculator,\1,' \ ${WRKSRC}/Makefile.in - ${FIND} ${WRKSRC} -name Makefile.in -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -E 's:\$$\(prefix\)/@PACKAGE@:$$(datadir)/doc/@PACKAGE@:' +.endif + +pre-everything:: +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable additional compilation optimizations' + @${ECHO_MSG} 'by defining WITH_OPTIMIZED_CXXFLAGS' +.endif +.if !defined(WITH_CUPS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable CUPS support by defining WITH_CUPS' +.endif +.if !defined(WITH_DEBUG) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build DEBUG support by defining WITH_DEBUG' +.endif +.if !defined(WITH_FOX_APPLICATIONS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can install FOX sample applications by defining WITH_FOX_APPLICATIONS" +.endif +.if !defined(WITH_PROFILING) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build PROFILING support by defining WITH_PROFILING' +.endif +.if !defined(WITHOUT_SHM) + @${ECHO_MSG} + @${ECHO_MSG} 'You can disable Shared Memory support by defining WITHOUT_SHM' +.endif + @${ECHO_MSG} .include Property changes on: head/x11-toolkits/fox-devel/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.32 \ No newline at end of property +1.33 \ No newline at end of property Index: head/x11-toolkits/fox-devel/distinfo =================================================================== --- head/x11-toolkits/fox-devel/distinfo (revision 74695) +++ head/x11-toolkits/fox-devel/distinfo (revision 74696) @@ -1,3 +1 @@ -MD5 (fox-0.99.174.tar.gz) = 8546249fd51964c8269aecbcbb9e7946 -MD5 (fox-unicode-0.99.174.diff) = 7f24a256f24179e64cd778fa748454a0 -MD5 (fox-1.0.11.tar.gz) = 27d344b24b6158b9bc209f9ee3215619 +MD5 (fox-1.0.30.tar.gz) = 19486a03a11f916c17b8988d9d6f2cef Property changes on: head/x11-toolkits/fox-devel/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/x11-toolkits/fox-devel/files/patch-aa =================================================================== --- head/x11-toolkits/fox-devel/files/patch-aa (revision 74695) +++ head/x11-toolkits/fox-devel/files/patch-aa (nonexistent) @@ -1,23 +0,0 @@ ---- src/Makefile.in.orig Fri Oct 6 16:07:43 2000 -+++ src/Makefile.in Mon Oct 9 08:18:53 2000 -@@ -74,9 +74,9 @@ - LIBTOOL = @LIBTOOL@ - LN_S = @LN_S@ - LT_AGE = @LT_AGE@ --LT_CURRENT = @LT_CURRENT@ -+LT_CURRENT ?= @LT_CURRENT@ - LT_RELEASE = @LT_RELEASE@ --LT_REVISION = @LT_REVISION@ -+LT_REVISION ?= @LT_REVISION@ - MAKEINFO = @MAKEINFO@ - OBJDUMP = @OBJDUMP@ - PACKAGE = @PACKAGE@ -@@ -91,7 +91,7 @@ - - libFOX_la_LIBADD = $(X_LIBS) $(X_BASE_LIBS) $(X_EXTRA_LIBS) $(GL_LIBS) - --libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION) - - - CURSORS = crosshair.xbm crosshair_mask.xbm dndcopy.xbm dndcopy_mask.xbm dndlink.xbm dndlink_mask.xbm dndmove.xbm dndmove_mask.xbm dontdrop.xbm dontdrop_mask.xbm drag.xbm drag_mask.xbm gray.xbm hsplit.xbm hsplit_mask.xbm move.xbm move_mask.xbm resize.xbm resize_mask.xbm resizeleft.xbm resizeleft_mask.xbm resizetop.xbm resizetop_mask.xbm resizetopleft.xbm resizetopleft_mask.xbm resizetopright.xbm resizetopright_mask.xbm rotate.xbm rotate_mask.xbm swatch.xbm swatch_mask.xbm vsplit.xbm vsplit_mask.xbm xsplit.xbm xsplit_mask.xbm ne.xbm ne_mask.xbm se.xbm se_mask.xbm sw.xbm sw_mask.xbm nw.xbm nw_mask.xbm translate.xbm translate_mask.xbm zoom.xbm zoom_mask.xbm Property changes on: head/x11-toolkits/fox-devel/files/patch-aa ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox-devel/files/patch-ad =================================================================== --- head/x11-toolkits/fox-devel/files/patch-ad (revision 74695) +++ head/x11-toolkits/fox-devel/files/patch-ad (nonexistent) @@ -1,26 +0,0 @@ ---- configure.orig Thu Apr 5 05:25:59 2001 -+++ configure Tue May 1 01:34:27 2001 -@@ -839,7 +839,7 @@ - - - --CXXFLAGS="" -+#CXXFLAGS="" - - echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 - echo "configure:846: checking whether ${MAKE-make} sets \${MAKE}" >&5 -@@ -3440,9 +3440,12 @@ - - echo "$ac_t""$enable_release" 1>&6 - if test "x$enable_release" = "xyes" ; then --CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" -+CXXFLAGS="${CXXFLAGS} -DNDEBUG" - if test "${GXX}" = "yes" ; then --CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+#CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+if test "${with_profiling}" = ""; then -+CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer" -+fi - fi - fi - Property changes on: head/x11-toolkits/fox-devel/files/patch-ad ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox-devel/files/patch-configure =================================================================== --- head/x11-toolkits/fox-devel/files/patch-configure (nonexistent) +++ head/x11-toolkits/fox-devel/files/patch-configure (revision 74696) @@ -0,0 +1,11 @@ +--- configure.orig Tue Feb 4 18:33:38 2003 ++++ configure Tue Feb 4 18:34:51 2003 +@@ -7498,7 +7498,7 @@ + if test "x$enable_release" = "xyes" ; then + CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" + if test "${GXX}" = "yes" ; then +-CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" ++CXXFLAGS="${CXXFLAGS} -Wuninitialized" + fi + fi + Property changes on: head/x11-toolkits/fox-devel/files/patch-configure ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/fox-devel/pkg-plist =================================================================== --- head/x11-toolkits/fox-devel/pkg-plist (revision 74695) +++ head/x11-toolkits/fox-devel/pkg-plist (revision 74696) @@ -1,297 +1,268 @@ +%%APPS%%bin/PathFinder +%%APPS%%bin/adie +%%APPS%%bin/calculator bin/reswrap include/fox/FX4Splitter.h include/fox/FXAccelTable.h include/fox/FXApp.h include/fox/FXArray.h include/fox/FXArrowButton.h include/fox/FXBMPIcon.h include/fox/FXBMPImage.h include/fox/FXBitmap.h include/fox/FXButton.h -%%NEWFILE%%include/fox/FXCURCursor.h +include/fox/FXCURCursor.h include/fox/FXCanvas.h include/fox/FXCharset.h include/fox/FXCheckButton.h -%%NEWFILE%%include/fox/FXColorBar.h +include/fox/FXColorBar.h include/fox/FXColorDialog.h include/fox/FXColorSelector.h include/fox/FXColorWell.h -%%NEWFILE%%include/fox/FXColorWheel.h +include/fox/FXColorWheel.h include/fox/FXComboBox.h include/fox/FXComposite.h include/fox/FXCursor.h include/fox/FXDC.h include/fox/FXDCPrint.h include/fox/FXDCWindow.h include/fox/FXDHMat.h include/fox/FXDHVec.h include/fox/FXDQuat.h include/fox/FXDVec.h include/fox/FXDataTarget.h include/fox/FXDebugTarget.h include/fox/FXDelegator.h include/fox/FXDial.h include/fox/FXDialogBox.h include/fox/FXDict.h include/fox/FXDirBox.h include/fox/FXDirDialog.h include/fox/FXDirList.h include/fox/FXDirSelector.h include/fox/FXDocument.h include/fox/FXDragCorner.h include/fox/FXDrawable.h include/fox/FXDriveBox.h include/fox/FXElement.h include/fox/FXException.h include/fox/FXFile.h include/fox/FXFileDialog.h include/fox/FXFileDict.h include/fox/FXFileList.h include/fox/FXFileSelector.h include/fox/FXFont.h include/fox/FXFontDialog.h include/fox/FXFontSelector.h include/fox/FXFrame.h include/fox/FXGIFCursor.h include/fox/FXGIFIcon.h include/fox/FXGIFImage.h include/fox/FXGLCanvas.h include/fox/FXGLCone.h include/fox/FXGLContext.h include/fox/FXGLCube.h include/fox/FXGLCylinder.h include/fox/FXGLObject.h include/fox/FXGLShape.h include/fox/FXGLSphere.h include/fox/FXGLTriangleMesh.h include/fox/FXGLViewer.h include/fox/FXGLVisual.h include/fox/FXGroupBox.h include/fox/FXHMat.h include/fox/FXHVec.h include/fox/FXHeader.h include/fox/FXHorizontalFrame.h -%%NEWFILE%%include/fox/FXICOIcon.h -%%NEWFILE%%include/fox/FXICOImage.h +include/fox/FXICOIcon.h +include/fox/FXICOImage.h include/fox/FXIcon.h include/fox/FXIconList.h include/fox/FXId.h include/fox/FXImage.h include/fox/FXImageView.h include/fox/FXInputDialog.h -%%OLDFILE%%include/fox/FXJPEGIcon.h -%%OLDFILE%%include/fox/FXJPEGImage.h -%%NEWFILE%%include/fox/FXJPGIcon.h -%%NEWFILE%%include/fox/FXJPGImage.h +include/fox/FXJPGIcon.h +include/fox/FXJPGImage.h include/fox/FXLabel.h include/fox/FXList.h include/fox/FXListBox.h include/fox/FXMDIButton.h include/fox/FXMDIChild.h include/fox/FXMDIClient.h include/fox/FXMainWindow.h include/fox/FXMatrix.h include/fox/FXMenuButton.h include/fox/FXMenuCaption.h include/fox/FXMenuCascade.h include/fox/FXMenuCommand.h include/fox/FXMenuPane.h include/fox/FXMenuSeparator.h include/fox/FXMenuTitle.h include/fox/FXMenubar.h include/fox/FXMessageBox.h include/fox/FXObject.h include/fox/FXObjectList.h include/fox/FXOptionMenu.h include/fox/FXPCXIcon.h include/fox/FXPCXImage.h include/fox/FXPNGIcon.h include/fox/FXPNGImage.h include/fox/FXPacker.h -%%NEWFILE%%include/fox/FXPicker.h +include/fox/FXPicker.h include/fox/FXPoint.h include/fox/FXPopup.h include/fox/FXPrintDialog.h -%%OLDFILE%%include/fox/FXProfiler.h include/fox/FXProgressBar.h include/fox/FXProgressDialog.h include/fox/FXQuat.h -%%NEWFILE%%include/fox/FXRGBIcon.h -%%NEWFILE%%include/fox/FXRGBImage.h +include/fox/FXRGBIcon.h +include/fox/FXRGBImage.h include/fox/FXRadioButton.h include/fox/FXRange.h include/fox/FXRecentFiles.h include/fox/FXRectangle.h include/fox/FXRegion.h include/fox/FXRegistry.h include/fox/FXReplaceDialog.h -%%NEWFILE%%include/fox/FXRex.h +include/fox/FXRex.h include/fox/FXRootWindow.h include/fox/FXScrollArea.h include/fox/FXScrollWindow.h include/fox/FXScrollbar.h include/fox/FXSearchDialog.h include/fox/FXSeparator.h include/fox/FXSettings.h include/fox/FXShell.h include/fox/FXShutter.h include/fox/FXSize.h include/fox/FXSlider.h include/fox/FXSpinner.h include/fox/FXSplitter.h include/fox/FXStatusbar.h include/fox/FXStatusline.h include/fox/FXStream.h include/fox/FXString.h -%%NEWFILE%%include/fox/FXStringDict.h +include/fox/FXStringDict.h include/fox/FXSwitcher.h -%%NEWFILE%%include/fox/FXTGAIcon.h -%%NEWFILE%%include/fox/FXTGAImage.h +include/fox/FXTGAIcon.h +include/fox/FXTGAImage.h include/fox/FXTIFIcon.h include/fox/FXTIFImage.h -%%OLDFILE%%include/fox/FXTab.h -%%NEWFILE%%include/fox/FXTabBar.h -%%NEWFILE%%include/fox/FXTabBook.h -%%NEWFILE%%include/fox/FXTabItem.h +include/fox/FXTabBar.h +include/fox/FXTabBook.h +include/fox/FXTabItem.h include/fox/FXTable.h include/fox/FXText.h include/fox/FXTextField.h include/fox/FXToggleButton.h include/fox/FXToolbar.h include/fox/FXToolbarGrip.h include/fox/FXToolbarShell.h include/fox/FXToolbarTab.h include/fox/FXTooltip.h include/fox/FXTopWindow.h include/fox/FXTreeList.h include/fox/FXTreeListBox.h include/fox/FXURL.h include/fox/FXUndoList.h include/fox/FXVec.h include/fox/FXVerticalFrame.h include/fox/FXVisual.h include/fox/FXWindow.h include/fox/FXXPMIcon.h include/fox/FXXPMImage.h include/fox/fx.h include/fox/fx3d.h include/fox/fxdefs.h include/fox/fxkeys.h -%%OLDFILE%%include/fox/fxregex.h include/fox/fxver.h include/fox/xincs.h -@dirrm include/fox +lib/libFOX-1.0.so +lib/libFOX-1.0.so.0 lib/libFOX.a lib/libFOX.la lib/libFOX.so -lib/libFOX.so.%%LIBVER%% -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.jpg +%%PORTDOCS%%share/doc/fox/html/adie_colors.jpg +%%PORTDOCS%%share/doc/fox/html/adie_del.jpg +%%PORTDOCS%%share/doc/fox/html/adie_edit.jpg +%%PORTDOCS%%share/doc/fox/html/adie_font.jpg +%%PORTDOCS%%share/doc/fox/html/adie_pat.jpg %%PORTDOCS%%share/doc/fox/html/app.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxstart.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/freespeach.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ill.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ilr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/innernerd.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iur.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/nerd_inside.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oll.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/olr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/opengl_logo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul_grey.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/our.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/slingerzbutton1.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-libraries.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-linkoutput.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-postbuild.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-preprocessor.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-project.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-tooloptions.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/wintextedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/calc.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrc.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrclogo.png +%%PORTDOCS%%share/doc/fox/html/bigpenguin.png +%%PORTDOCS%%share/doc/fox/html/calc.html +%%PORTDOCS%%share/doc/fox/html/colordialog.png %%PORTDOCS%%share/doc/fox/html/datatarget.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit1.gif -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit2.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/doc.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/download.html +%%PORTDOCS%%share/doc/fox/html/dirdialog.png +%%PORTDOCS%%share/doc/fox/html/doc.html +%%PORTDOCS%%share/doc/fox/html/download.html %%PORTDOCS%%share/doc/fox/html/draganddrop.html %%PORTDOCS%%share/doc/fox/html/faq.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/filefuncs.html +%%PORTDOCS%%share/doc/fox/html/filedialog.png +%%PORTDOCS%%share/doc/fox/html/filefuncs.html %%PORTDOCS%%share/doc/fox/html/focus.html +%%PORTDOCS%%share/doc/fox/html/fontdialog.png %%PORTDOCS%%share/doc/fox/html/fonts.html %%PORTDOCS%%share/doc/fox/html/foreword.html %%PORTDOCS%%share/doc/fox/html/fox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxback.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/goals.html +%%PORTDOCS%%share/doc/fox/html/foxcalc.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_01_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_02_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_03_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxlogo.png +%%PORTDOCS%%share/doc/fox/html/foxstart.png +%%PORTDOCS%%share/doc/fox/html/freespeach.gif +%%PORTDOCS%%share/doc/fox/html/glview.png +%%PORTDOCS%%share/doc/fox/html/goals.html %%PORTDOCS%%share/doc/fox/html/guiupdate.html %%PORTDOCS%%share/doc/fox/html/icons.html +%%PORTDOCS%%share/doc/fox/html/ill.gif +%%PORTDOCS%%share/doc/fox/html/ilr.gif +%%PORTDOCS%%share/doc/fox/html/innernerd.gif %%PORTDOCS%%share/doc/fox/html/introduction.html +%%PORTDOCS%%share/doc/fox/html/iul.gif +%%PORTDOCS%%share/doc/fox/html/iur.gif %%PORTDOCS%%share/doc/fox/html/layout.html %%PORTDOCS%%share/doc/fox/html/messages.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/nasafan.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/news.html +%%PORTDOCS%%share/doc/fox/html/nerd_inside.gif +%%PORTDOCS%%share/doc/fox/html/news.html %%PORTDOCS%%share/doc/fox/html/oldfox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/opengl_logo.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/owl-anim.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pathfinder.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pcboard.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/platforms.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/pathfinder.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/projects.html +%%PORTDOCS%%share/doc/fox/html/oll.gif +%%PORTDOCS%%share/doc/fox/html/olr.gif +%%PORTDOCS%%share/doc/fox/html/opengl_logo.png +%%PORTDOCS%%share/doc/fox/html/oul.gif +%%PORTDOCS%%share/doc/fox/html/oul_grey.gif +%%PORTDOCS%%share/doc/fox/html/our.gif +%%PORTDOCS%%share/doc/fox/html/pathfinder.html +%%PORTDOCS%%share/doc/fox/html/pathfinder.png +%%PORTDOCS%%share/doc/fox/html/printdialog.png +%%PORTDOCS%%share/doc/fox/html/progress.png +%%PORTDOCS%%share/doc/fox/html/projects.html %%PORTDOCS%%share/doc/fox/html/registry.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/rex.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_colors.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_del.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_edit.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_font.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_pat.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/colordialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/dirdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/filedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/fontdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_01_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_02_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_03_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/glview.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/pathfinder.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/printdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/replacedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/searchdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/table.png +%%PORTDOCS%%share/doc/fox/html/replacedialog.png +%%PORTDOCS%%share/doc/fox/html/rex.html +%%PORTDOCS%%share/doc/fox/html/screenshots.html +%%PORTDOCS%%share/doc/fox/html/scribble.png +%%PORTDOCS%%share/doc/fox/html/searchdialog.png %%PORTDOCS%%share/doc/fox/html/serialization.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/styles.css -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/tb-paste.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit2.png +%%PORTDOCS%%share/doc/fox/html/sgitextedit.png +%%PORTDOCS%%share/doc/fox/html/slingerzbutton1.gif +%%PORTDOCS%%share/doc/fox/html/styles.css +%%PORTDOCS%%share/doc/fox/html/table.png %%PORTDOCS%%share/doc/fox/html/timers.html %%PORTDOCS%%share/doc/fox/html/widgets.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-libraries.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-linkoutput.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-postbuild.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-preprocessor.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-project.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-tooloptions.png +%%PORTDOCS%%share/doc/fox/html/win32-libraries.png +%%PORTDOCS%%share/doc/fox/html/win32-linkoutput.png +%%PORTDOCS%%share/doc/fox/html/win32-postbuild.png +%%PORTDOCS%%share/doc/fox/html/win32-preprocessor.png +%%PORTDOCS%%share/doc/fox/html/win32-project.png +%%PORTDOCS%%share/doc/fox/html/win32-tooloptions.png %%PORTDOCS%%share/doc/fox/html/win32.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/wintextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/window.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/xml.html -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/screenshots -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/art +%%PORTDOCS%%share/doc/fox/html/window.html +%%PORTDOCS%%share/doc/fox/html/wintextedit.png +%%PORTDOCS%%share/doc/fox/html/xml.html %%PORTDOCS%%@dirrm share/doc/fox/html %%PORTDOCS%%@dirrm share/doc/fox +@dirrm include/fox Property changes on: head/x11-toolkits/fox-devel/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/x11-toolkits/fox10/Makefile =================================================================== --- head/x11-toolkits/fox10/Makefile (revision 74695) +++ head/x11-toolkits/fox10/Makefile (revision 74696) @@ -1,90 +1,136 @@ # New ports collection makefile for: fox # Date created: 23 Feb 2000 # Whom: Will Andrews # # $FreeBSD$ # PORTNAME= fox -PORTVERSION?= 1.0.11 +PORTVERSION?= 1.0.30 PORTREVISION?= 0 CATEGORIES= x11-toolkits MASTER_SITES= http://www.fox-toolkit.org/ftp/ \ ftp://ftp.fox-toolkit.org/pub/ \ ftp://ftp.cfdrc.com/pub/FOX/ \ ftp://SunSITE.Informatik.RWTH-Aachen.DE/pub/Linux/fox/ MAINTAINER?= ports@FreeBSD.org LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png + png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff -.if defined(WITH_XUNICODE) -PKGNAMESUFFIX= -unicode - -PATCHVERSION?= ${PORTVERSION} - -PATCH_SITES= http://www.ab.wakwak.com/~tino/jatk/fox/ -PATCHFILES= ${PORTNAME}${PKGNAMESUFFIX}-${PATCHVERSION}.diff -PATCH_DIST_STRIP= -p1 - -BUILD_DEPENDS= ${X11BASE}/include/xunicode/xunicode.h:${PORTSDIR}/converters/xunicode - -CONFIGURE_ENV= X_CFLAGS=-DUSE_UNICODE - -PLIST_SUB= OLDFILE="" \ - NEWFILE="@comment " -.else -PLIST_SUB= OLDFILE="@comment " \ - NEWFILE="" -.endif - USE_MESA= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" \ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS+=--with-opengl=mesa --with-x -.if defined(NO_SHM) + +MAN1= reswrap.1 + +## +## Additional Options +## +# +.if defined(WITHOUT_SHM) CONFIGURE_ARGS+=--with-shm=no .else CONFIGURE_ARGS+=--with-shm=yes .endif -.if defined(DEBUG) +# +.if defined(WITH_CUPS) +CONFIGURE_ARGS+=--enable-cups +.else +CONFIGURE_ARGS+=--disable-cups +.endif +# +.if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug .else CONFIGURE_ARGS+=--enable-release .endif -.if defined(WANT_PROFILE) +# +.if defined(WITH_FOX_APPLICATIONS) +PLIST_SUB+= APPS="" + +MAN1+= PathFinder.1 adie.1 calculator.1 +.else +PLIST_SUB+= APPS="@comment " +.endif +# +.if defined(WITH_OPTIMIZED_CXXFLAGS) +# turn distribution-recommended optimization flags back on +CXXFLAGS+= -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations +.endif +# +.if defined(WITH_PROFILING) CONFIGURE_ARGS+=--with-profiling=gprof .endif -MAKE_ARGS+= -j3 +# .if defined(NOPORTDOCS) MAKE_ARGS+= DOC= .else MAKE_ARGS+= DOC=doc .endif -#USE_LIBTOOL= yes -SHLIB_MAJ= 1 -SHLIB_MIN= 0 -MAKE_ENV+= LT_CURRENT="${SHLIB_MAJ}" LT_REVISION="${SHLIB_MIN}" -PLIST_SUB+= LIBVER="${SHLIB_MAJ}" -MAN1= reswrap.1 -# Uncomment this to turn the distribution-recommended optimization flags on. -#CXXFLAGS= -O2 -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations - -.if defined(WITH_XUNICODE) -post-extract: - cd ${WRKSRC} && ${LN} -s ${X11BASE}/include/xunicode -.endif - post-patch: - ${REINPLACE_CMD} -E 's/^(SUBDIRS[ ]*=[ ]*).*/\1utils include src $${DOC}/' \ +# CXXFLAGS safeness +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${REINPLACE_CMD} -E -e \ + 's|-O2|${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.else + @${REINPLACE_CMD} -E -e \ + 's|-O2|-O2 ${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.endif +# doc prefix safeness + @${REINPLACE_CMD} -E -e \ + 's|^(htmldir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(artdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/art/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(screenshotsdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/screenshots/Makefile.in +.if !defined(WITH_FOX_APPLICATIONS) + @${REINPLACE_CMD} -E -e \ + 's,^(SUBDIRS.*)adie,\1,; \ + s,^(SUBDIRS.*)pathfinder,\1,; \ + s,^(SUBDIRS.*)calculator,\1,' \ ${WRKSRC}/Makefile.in - ${FIND} ${WRKSRC} -name Makefile.in -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -E 's:\$$\(prefix\)/@PACKAGE@:$$(datadir)/doc/@PACKAGE@:' +.endif + +pre-everything:: +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable additional compilation optimizations' + @${ECHO_MSG} 'by defining WITH_OPTIMIZED_CXXFLAGS' +.endif +.if !defined(WITH_CUPS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable CUPS support by defining WITH_CUPS' +.endif +.if !defined(WITH_DEBUG) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build DEBUG support by defining WITH_DEBUG' +.endif +.if !defined(WITH_FOX_APPLICATIONS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can install FOX sample applications by defining WITH_FOX_APPLICATIONS" +.endif +.if !defined(WITH_PROFILING) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build PROFILING support by defining WITH_PROFILING' +.endif +.if !defined(WITHOUT_SHM) + @${ECHO_MSG} + @${ECHO_MSG} 'You can disable Shared Memory support by defining WITHOUT_SHM' +.endif + @${ECHO_MSG} .include Property changes on: head/x11-toolkits/fox10/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.32 \ No newline at end of property +1.33 \ No newline at end of property Index: head/x11-toolkits/fox10/distinfo =================================================================== --- head/x11-toolkits/fox10/distinfo (revision 74695) +++ head/x11-toolkits/fox10/distinfo (revision 74696) @@ -1,3 +1 @@ -MD5 (fox-0.99.174.tar.gz) = 8546249fd51964c8269aecbcbb9e7946 -MD5 (fox-unicode-0.99.174.diff) = 7f24a256f24179e64cd778fa748454a0 -MD5 (fox-1.0.11.tar.gz) = 27d344b24b6158b9bc209f9ee3215619 +MD5 (fox-1.0.30.tar.gz) = 19486a03a11f916c17b8988d9d6f2cef Property changes on: head/x11-toolkits/fox10/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/x11-toolkits/fox10/files/patch-aa =================================================================== --- head/x11-toolkits/fox10/files/patch-aa (revision 74695) +++ head/x11-toolkits/fox10/files/patch-aa (nonexistent) @@ -1,23 +0,0 @@ ---- src/Makefile.in.orig Fri Oct 6 16:07:43 2000 -+++ src/Makefile.in Mon Oct 9 08:18:53 2000 -@@ -74,9 +74,9 @@ - LIBTOOL = @LIBTOOL@ - LN_S = @LN_S@ - LT_AGE = @LT_AGE@ --LT_CURRENT = @LT_CURRENT@ -+LT_CURRENT ?= @LT_CURRENT@ - LT_RELEASE = @LT_RELEASE@ --LT_REVISION = @LT_REVISION@ -+LT_REVISION ?= @LT_REVISION@ - MAKEINFO = @MAKEINFO@ - OBJDUMP = @OBJDUMP@ - PACKAGE = @PACKAGE@ -@@ -91,7 +91,7 @@ - - libFOX_la_LIBADD = $(X_LIBS) $(X_BASE_LIBS) $(X_EXTRA_LIBS) $(GL_LIBS) - --libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION) - - - CURSORS = crosshair.xbm crosshair_mask.xbm dndcopy.xbm dndcopy_mask.xbm dndlink.xbm dndlink_mask.xbm dndmove.xbm dndmove_mask.xbm dontdrop.xbm dontdrop_mask.xbm drag.xbm drag_mask.xbm gray.xbm hsplit.xbm hsplit_mask.xbm move.xbm move_mask.xbm resize.xbm resize_mask.xbm resizeleft.xbm resizeleft_mask.xbm resizetop.xbm resizetop_mask.xbm resizetopleft.xbm resizetopleft_mask.xbm resizetopright.xbm resizetopright_mask.xbm rotate.xbm rotate_mask.xbm swatch.xbm swatch_mask.xbm vsplit.xbm vsplit_mask.xbm xsplit.xbm xsplit_mask.xbm ne.xbm ne_mask.xbm se.xbm se_mask.xbm sw.xbm sw_mask.xbm nw.xbm nw_mask.xbm translate.xbm translate_mask.xbm zoom.xbm zoom_mask.xbm Property changes on: head/x11-toolkits/fox10/files/patch-aa ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox10/files/patch-ad =================================================================== --- head/x11-toolkits/fox10/files/patch-ad (revision 74695) +++ head/x11-toolkits/fox10/files/patch-ad (nonexistent) @@ -1,26 +0,0 @@ ---- configure.orig Thu Apr 5 05:25:59 2001 -+++ configure Tue May 1 01:34:27 2001 -@@ -839,7 +839,7 @@ - - - --CXXFLAGS="" -+#CXXFLAGS="" - - echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 - echo "configure:846: checking whether ${MAKE-make} sets \${MAKE}" >&5 -@@ -3440,9 +3440,12 @@ - - echo "$ac_t""$enable_release" 1>&6 - if test "x$enable_release" = "xyes" ; then --CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" -+CXXFLAGS="${CXXFLAGS} -DNDEBUG" - if test "${GXX}" = "yes" ; then --CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+#CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+if test "${with_profiling}" = ""; then -+CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer" -+fi - fi - fi - Property changes on: head/x11-toolkits/fox10/files/patch-ad ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox10/files/patch-configure =================================================================== --- head/x11-toolkits/fox10/files/patch-configure (nonexistent) +++ head/x11-toolkits/fox10/files/patch-configure (revision 74696) @@ -0,0 +1,11 @@ +--- configure.orig Tue Feb 4 18:33:38 2003 ++++ configure Tue Feb 4 18:34:51 2003 +@@ -7498,7 +7498,7 @@ + if test "x$enable_release" = "xyes" ; then + CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" + if test "${GXX}" = "yes" ; then +-CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" ++CXXFLAGS="${CXXFLAGS} -Wuninitialized" + fi + fi + Property changes on: head/x11-toolkits/fox10/files/patch-configure ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/fox10/pkg-plist =================================================================== --- head/x11-toolkits/fox10/pkg-plist (revision 74695) +++ head/x11-toolkits/fox10/pkg-plist (revision 74696) @@ -1,297 +1,268 @@ +%%APPS%%bin/PathFinder +%%APPS%%bin/adie +%%APPS%%bin/calculator bin/reswrap include/fox/FX4Splitter.h include/fox/FXAccelTable.h include/fox/FXApp.h include/fox/FXArray.h include/fox/FXArrowButton.h include/fox/FXBMPIcon.h include/fox/FXBMPImage.h include/fox/FXBitmap.h include/fox/FXButton.h -%%NEWFILE%%include/fox/FXCURCursor.h +include/fox/FXCURCursor.h include/fox/FXCanvas.h include/fox/FXCharset.h include/fox/FXCheckButton.h -%%NEWFILE%%include/fox/FXColorBar.h +include/fox/FXColorBar.h include/fox/FXColorDialog.h include/fox/FXColorSelector.h include/fox/FXColorWell.h -%%NEWFILE%%include/fox/FXColorWheel.h +include/fox/FXColorWheel.h include/fox/FXComboBox.h include/fox/FXComposite.h include/fox/FXCursor.h include/fox/FXDC.h include/fox/FXDCPrint.h include/fox/FXDCWindow.h include/fox/FXDHMat.h include/fox/FXDHVec.h include/fox/FXDQuat.h include/fox/FXDVec.h include/fox/FXDataTarget.h include/fox/FXDebugTarget.h include/fox/FXDelegator.h include/fox/FXDial.h include/fox/FXDialogBox.h include/fox/FXDict.h include/fox/FXDirBox.h include/fox/FXDirDialog.h include/fox/FXDirList.h include/fox/FXDirSelector.h include/fox/FXDocument.h include/fox/FXDragCorner.h include/fox/FXDrawable.h include/fox/FXDriveBox.h include/fox/FXElement.h include/fox/FXException.h include/fox/FXFile.h include/fox/FXFileDialog.h include/fox/FXFileDict.h include/fox/FXFileList.h include/fox/FXFileSelector.h include/fox/FXFont.h include/fox/FXFontDialog.h include/fox/FXFontSelector.h include/fox/FXFrame.h include/fox/FXGIFCursor.h include/fox/FXGIFIcon.h include/fox/FXGIFImage.h include/fox/FXGLCanvas.h include/fox/FXGLCone.h include/fox/FXGLContext.h include/fox/FXGLCube.h include/fox/FXGLCylinder.h include/fox/FXGLObject.h include/fox/FXGLShape.h include/fox/FXGLSphere.h include/fox/FXGLTriangleMesh.h include/fox/FXGLViewer.h include/fox/FXGLVisual.h include/fox/FXGroupBox.h include/fox/FXHMat.h include/fox/FXHVec.h include/fox/FXHeader.h include/fox/FXHorizontalFrame.h -%%NEWFILE%%include/fox/FXICOIcon.h -%%NEWFILE%%include/fox/FXICOImage.h +include/fox/FXICOIcon.h +include/fox/FXICOImage.h include/fox/FXIcon.h include/fox/FXIconList.h include/fox/FXId.h include/fox/FXImage.h include/fox/FXImageView.h include/fox/FXInputDialog.h -%%OLDFILE%%include/fox/FXJPEGIcon.h -%%OLDFILE%%include/fox/FXJPEGImage.h -%%NEWFILE%%include/fox/FXJPGIcon.h -%%NEWFILE%%include/fox/FXJPGImage.h +include/fox/FXJPGIcon.h +include/fox/FXJPGImage.h include/fox/FXLabel.h include/fox/FXList.h include/fox/FXListBox.h include/fox/FXMDIButton.h include/fox/FXMDIChild.h include/fox/FXMDIClient.h include/fox/FXMainWindow.h include/fox/FXMatrix.h include/fox/FXMenuButton.h include/fox/FXMenuCaption.h include/fox/FXMenuCascade.h include/fox/FXMenuCommand.h include/fox/FXMenuPane.h include/fox/FXMenuSeparator.h include/fox/FXMenuTitle.h include/fox/FXMenubar.h include/fox/FXMessageBox.h include/fox/FXObject.h include/fox/FXObjectList.h include/fox/FXOptionMenu.h include/fox/FXPCXIcon.h include/fox/FXPCXImage.h include/fox/FXPNGIcon.h include/fox/FXPNGImage.h include/fox/FXPacker.h -%%NEWFILE%%include/fox/FXPicker.h +include/fox/FXPicker.h include/fox/FXPoint.h include/fox/FXPopup.h include/fox/FXPrintDialog.h -%%OLDFILE%%include/fox/FXProfiler.h include/fox/FXProgressBar.h include/fox/FXProgressDialog.h include/fox/FXQuat.h -%%NEWFILE%%include/fox/FXRGBIcon.h -%%NEWFILE%%include/fox/FXRGBImage.h +include/fox/FXRGBIcon.h +include/fox/FXRGBImage.h include/fox/FXRadioButton.h include/fox/FXRange.h include/fox/FXRecentFiles.h include/fox/FXRectangle.h include/fox/FXRegion.h include/fox/FXRegistry.h include/fox/FXReplaceDialog.h -%%NEWFILE%%include/fox/FXRex.h +include/fox/FXRex.h include/fox/FXRootWindow.h include/fox/FXScrollArea.h include/fox/FXScrollWindow.h include/fox/FXScrollbar.h include/fox/FXSearchDialog.h include/fox/FXSeparator.h include/fox/FXSettings.h include/fox/FXShell.h include/fox/FXShutter.h include/fox/FXSize.h include/fox/FXSlider.h include/fox/FXSpinner.h include/fox/FXSplitter.h include/fox/FXStatusbar.h include/fox/FXStatusline.h include/fox/FXStream.h include/fox/FXString.h -%%NEWFILE%%include/fox/FXStringDict.h +include/fox/FXStringDict.h include/fox/FXSwitcher.h -%%NEWFILE%%include/fox/FXTGAIcon.h -%%NEWFILE%%include/fox/FXTGAImage.h +include/fox/FXTGAIcon.h +include/fox/FXTGAImage.h include/fox/FXTIFIcon.h include/fox/FXTIFImage.h -%%OLDFILE%%include/fox/FXTab.h -%%NEWFILE%%include/fox/FXTabBar.h -%%NEWFILE%%include/fox/FXTabBook.h -%%NEWFILE%%include/fox/FXTabItem.h +include/fox/FXTabBar.h +include/fox/FXTabBook.h +include/fox/FXTabItem.h include/fox/FXTable.h include/fox/FXText.h include/fox/FXTextField.h include/fox/FXToggleButton.h include/fox/FXToolbar.h include/fox/FXToolbarGrip.h include/fox/FXToolbarShell.h include/fox/FXToolbarTab.h include/fox/FXTooltip.h include/fox/FXTopWindow.h include/fox/FXTreeList.h include/fox/FXTreeListBox.h include/fox/FXURL.h include/fox/FXUndoList.h include/fox/FXVec.h include/fox/FXVerticalFrame.h include/fox/FXVisual.h include/fox/FXWindow.h include/fox/FXXPMIcon.h include/fox/FXXPMImage.h include/fox/fx.h include/fox/fx3d.h include/fox/fxdefs.h include/fox/fxkeys.h -%%OLDFILE%%include/fox/fxregex.h include/fox/fxver.h include/fox/xincs.h -@dirrm include/fox +lib/libFOX-1.0.so +lib/libFOX-1.0.so.0 lib/libFOX.a lib/libFOX.la lib/libFOX.so -lib/libFOX.so.%%LIBVER%% -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.jpg +%%PORTDOCS%%share/doc/fox/html/adie_colors.jpg +%%PORTDOCS%%share/doc/fox/html/adie_del.jpg +%%PORTDOCS%%share/doc/fox/html/adie_edit.jpg +%%PORTDOCS%%share/doc/fox/html/adie_font.jpg +%%PORTDOCS%%share/doc/fox/html/adie_pat.jpg %%PORTDOCS%%share/doc/fox/html/app.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxstart.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/freespeach.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ill.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ilr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/innernerd.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iur.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/nerd_inside.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oll.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/olr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/opengl_logo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul_grey.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/our.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/slingerzbutton1.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-libraries.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-linkoutput.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-postbuild.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-preprocessor.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-project.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-tooloptions.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/wintextedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/calc.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrc.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrclogo.png +%%PORTDOCS%%share/doc/fox/html/bigpenguin.png +%%PORTDOCS%%share/doc/fox/html/calc.html +%%PORTDOCS%%share/doc/fox/html/colordialog.png %%PORTDOCS%%share/doc/fox/html/datatarget.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit1.gif -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit2.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/doc.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/download.html +%%PORTDOCS%%share/doc/fox/html/dirdialog.png +%%PORTDOCS%%share/doc/fox/html/doc.html +%%PORTDOCS%%share/doc/fox/html/download.html %%PORTDOCS%%share/doc/fox/html/draganddrop.html %%PORTDOCS%%share/doc/fox/html/faq.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/filefuncs.html +%%PORTDOCS%%share/doc/fox/html/filedialog.png +%%PORTDOCS%%share/doc/fox/html/filefuncs.html %%PORTDOCS%%share/doc/fox/html/focus.html +%%PORTDOCS%%share/doc/fox/html/fontdialog.png %%PORTDOCS%%share/doc/fox/html/fonts.html %%PORTDOCS%%share/doc/fox/html/foreword.html %%PORTDOCS%%share/doc/fox/html/fox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxback.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/goals.html +%%PORTDOCS%%share/doc/fox/html/foxcalc.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_01_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_02_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_03_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxlogo.png +%%PORTDOCS%%share/doc/fox/html/foxstart.png +%%PORTDOCS%%share/doc/fox/html/freespeach.gif +%%PORTDOCS%%share/doc/fox/html/glview.png +%%PORTDOCS%%share/doc/fox/html/goals.html %%PORTDOCS%%share/doc/fox/html/guiupdate.html %%PORTDOCS%%share/doc/fox/html/icons.html +%%PORTDOCS%%share/doc/fox/html/ill.gif +%%PORTDOCS%%share/doc/fox/html/ilr.gif +%%PORTDOCS%%share/doc/fox/html/innernerd.gif %%PORTDOCS%%share/doc/fox/html/introduction.html +%%PORTDOCS%%share/doc/fox/html/iul.gif +%%PORTDOCS%%share/doc/fox/html/iur.gif %%PORTDOCS%%share/doc/fox/html/layout.html %%PORTDOCS%%share/doc/fox/html/messages.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/nasafan.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/news.html +%%PORTDOCS%%share/doc/fox/html/nerd_inside.gif +%%PORTDOCS%%share/doc/fox/html/news.html %%PORTDOCS%%share/doc/fox/html/oldfox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/opengl_logo.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/owl-anim.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pathfinder.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pcboard.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/platforms.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/pathfinder.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/projects.html +%%PORTDOCS%%share/doc/fox/html/oll.gif +%%PORTDOCS%%share/doc/fox/html/olr.gif +%%PORTDOCS%%share/doc/fox/html/opengl_logo.png +%%PORTDOCS%%share/doc/fox/html/oul.gif +%%PORTDOCS%%share/doc/fox/html/oul_grey.gif +%%PORTDOCS%%share/doc/fox/html/our.gif +%%PORTDOCS%%share/doc/fox/html/pathfinder.html +%%PORTDOCS%%share/doc/fox/html/pathfinder.png +%%PORTDOCS%%share/doc/fox/html/printdialog.png +%%PORTDOCS%%share/doc/fox/html/progress.png +%%PORTDOCS%%share/doc/fox/html/projects.html %%PORTDOCS%%share/doc/fox/html/registry.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/rex.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_colors.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_del.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_edit.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_font.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_pat.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/colordialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/dirdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/filedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/fontdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_01_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_02_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_03_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/glview.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/pathfinder.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/printdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/replacedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/searchdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/table.png +%%PORTDOCS%%share/doc/fox/html/replacedialog.png +%%PORTDOCS%%share/doc/fox/html/rex.html +%%PORTDOCS%%share/doc/fox/html/screenshots.html +%%PORTDOCS%%share/doc/fox/html/scribble.png +%%PORTDOCS%%share/doc/fox/html/searchdialog.png %%PORTDOCS%%share/doc/fox/html/serialization.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/styles.css -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/tb-paste.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit2.png +%%PORTDOCS%%share/doc/fox/html/sgitextedit.png +%%PORTDOCS%%share/doc/fox/html/slingerzbutton1.gif +%%PORTDOCS%%share/doc/fox/html/styles.css +%%PORTDOCS%%share/doc/fox/html/table.png %%PORTDOCS%%share/doc/fox/html/timers.html %%PORTDOCS%%share/doc/fox/html/widgets.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-libraries.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-linkoutput.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-postbuild.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-preprocessor.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-project.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-tooloptions.png +%%PORTDOCS%%share/doc/fox/html/win32-libraries.png +%%PORTDOCS%%share/doc/fox/html/win32-linkoutput.png +%%PORTDOCS%%share/doc/fox/html/win32-postbuild.png +%%PORTDOCS%%share/doc/fox/html/win32-preprocessor.png +%%PORTDOCS%%share/doc/fox/html/win32-project.png +%%PORTDOCS%%share/doc/fox/html/win32-tooloptions.png %%PORTDOCS%%share/doc/fox/html/win32.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/wintextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/window.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/xml.html -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/screenshots -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/art +%%PORTDOCS%%share/doc/fox/html/window.html +%%PORTDOCS%%share/doc/fox/html/wintextedit.png +%%PORTDOCS%%share/doc/fox/html/xml.html %%PORTDOCS%%@dirrm share/doc/fox/html %%PORTDOCS%%@dirrm share/doc/fox +@dirrm include/fox Property changes on: head/x11-toolkits/fox10/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/x11-toolkits/fox14/Makefile =================================================================== --- head/x11-toolkits/fox14/Makefile (revision 74695) +++ head/x11-toolkits/fox14/Makefile (revision 74696) @@ -1,90 +1,136 @@ # New ports collection makefile for: fox # Date created: 23 Feb 2000 # Whom: Will Andrews # # $FreeBSD$ # PORTNAME= fox -PORTVERSION?= 1.0.11 +PORTVERSION?= 1.0.30 PORTREVISION?= 0 CATEGORIES= x11-toolkits MASTER_SITES= http://www.fox-toolkit.org/ftp/ \ ftp://ftp.fox-toolkit.org/pub/ \ ftp://ftp.cfdrc.com/pub/FOX/ \ ftp://SunSITE.Informatik.RWTH-Aachen.DE/pub/Linux/fox/ MAINTAINER?= ports@FreeBSD.org LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ - png.5:${PORTSDIR}/graphics/png + png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff -.if defined(WITH_XUNICODE) -PKGNAMESUFFIX= -unicode - -PATCHVERSION?= ${PORTVERSION} - -PATCH_SITES= http://www.ab.wakwak.com/~tino/jatk/fox/ -PATCHFILES= ${PORTNAME}${PKGNAMESUFFIX}-${PATCHVERSION}.diff -PATCH_DIST_STRIP= -p1 - -BUILD_DEPENDS= ${X11BASE}/include/xunicode/xunicode.h:${PORTSDIR}/converters/xunicode - -CONFIGURE_ENV= X_CFLAGS=-DUSE_UNICODE - -PLIST_SUB= OLDFILE="" \ - NEWFILE="@comment " -.else -PLIST_SUB= OLDFILE="@comment " \ - NEWFILE="" -.endif - USE_MESA= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" \ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS+=--with-opengl=mesa --with-x -.if defined(NO_SHM) + +MAN1= reswrap.1 + +## +## Additional Options +## +# +.if defined(WITHOUT_SHM) CONFIGURE_ARGS+=--with-shm=no .else CONFIGURE_ARGS+=--with-shm=yes .endif -.if defined(DEBUG) +# +.if defined(WITH_CUPS) +CONFIGURE_ARGS+=--enable-cups +.else +CONFIGURE_ARGS+=--disable-cups +.endif +# +.if defined(WITH_DEBUG) CONFIGURE_ARGS+=--enable-debug .else CONFIGURE_ARGS+=--enable-release .endif -.if defined(WANT_PROFILE) +# +.if defined(WITH_FOX_APPLICATIONS) +PLIST_SUB+= APPS="" + +MAN1+= PathFinder.1 adie.1 calculator.1 +.else +PLIST_SUB+= APPS="@comment " +.endif +# +.if defined(WITH_OPTIMIZED_CXXFLAGS) +# turn distribution-recommended optimization flags back on +CXXFLAGS+= -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations +.endif +# +.if defined(WITH_PROFILING) CONFIGURE_ARGS+=--with-profiling=gprof .endif -MAKE_ARGS+= -j3 +# .if defined(NOPORTDOCS) MAKE_ARGS+= DOC= .else MAKE_ARGS+= DOC=doc .endif -#USE_LIBTOOL= yes -SHLIB_MAJ= 1 -SHLIB_MIN= 0 -MAKE_ENV+= LT_CURRENT="${SHLIB_MAJ}" LT_REVISION="${SHLIB_MIN}" -PLIST_SUB+= LIBVER="${SHLIB_MAJ}" -MAN1= reswrap.1 -# Uncomment this to turn the distribution-recommended optimization flags on. -#CXXFLAGS= -O2 -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations - -.if defined(WITH_XUNICODE) -post-extract: - cd ${WRKSRC} && ${LN} -s ${X11BASE}/include/xunicode -.endif - post-patch: - ${REINPLACE_CMD} -E 's/^(SUBDIRS[ ]*=[ ]*).*/\1utils include src $${DOC}/' \ +# CXXFLAGS safeness +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${REINPLACE_CMD} -E -e \ + 's|-O2|${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.else + @${REINPLACE_CMD} -E -e \ + 's|-O2|-O2 ${CXXFLAGS}|g' \ + ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} +.endif +# doc prefix safeness + @${REINPLACE_CMD} -E -e \ + 's|^(htmldir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(artdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/art/Makefile.in + @${REINPLACE_CMD} -E -e \ + 's|^(screenshotsdir).*$$|\1=${DOCSDIR}/html|' \ + ${WRKSRC}/doc/screenshots/Makefile.in +.if !defined(WITH_FOX_APPLICATIONS) + @${REINPLACE_CMD} -E -e \ + 's,^(SUBDIRS.*)adie,\1,; \ + s,^(SUBDIRS.*)pathfinder,\1,; \ + s,^(SUBDIRS.*)calculator,\1,' \ ${WRKSRC}/Makefile.in - ${FIND} ${WRKSRC} -name Makefile.in -print0 | \ - ${XARGS} -0 ${REINPLACE_CMD} -E 's:\$$\(prefix\)/@PACKAGE@:$$(datadir)/doc/@PACKAGE@:' +.endif + +pre-everything:: +.if !defined(WITH_OPTIMIZED_CXXFLAGS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable additional compilation optimizations' + @${ECHO_MSG} 'by defining WITH_OPTIMIZED_CXXFLAGS' +.endif +.if !defined(WITH_CUPS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can enable CUPS support by defining WITH_CUPS' +.endif +.if !defined(WITH_DEBUG) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build DEBUG support by defining WITH_DEBUG' +.endif +.if !defined(WITH_FOX_APPLICATIONS) + @${ECHO_MSG} + @${ECHO_MSG} 'You can install FOX sample applications by defining WITH_FOX_APPLICATIONS" +.endif +.if !defined(WITH_PROFILING) + @${ECHO_MSG} + @${ECHO_MSG} 'You can build PROFILING support by defining WITH_PROFILING' +.endif +.if !defined(WITHOUT_SHM) + @${ECHO_MSG} + @${ECHO_MSG} 'You can disable Shared Memory support by defining WITHOUT_SHM' +.endif + @${ECHO_MSG} .include Property changes on: head/x11-toolkits/fox14/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.32 \ No newline at end of property +1.33 \ No newline at end of property Index: head/x11-toolkits/fox14/distinfo =================================================================== --- head/x11-toolkits/fox14/distinfo (revision 74695) +++ head/x11-toolkits/fox14/distinfo (revision 74696) @@ -1,3 +1 @@ -MD5 (fox-0.99.174.tar.gz) = 8546249fd51964c8269aecbcbb9e7946 -MD5 (fox-unicode-0.99.174.diff) = 7f24a256f24179e64cd778fa748454a0 -MD5 (fox-1.0.11.tar.gz) = 27d344b24b6158b9bc209f9ee3215619 +MD5 (fox-1.0.30.tar.gz) = 19486a03a11f916c17b8988d9d6f2cef Property changes on: head/x11-toolkits/fox14/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/x11-toolkits/fox14/files/patch-aa =================================================================== --- head/x11-toolkits/fox14/files/patch-aa (revision 74695) +++ head/x11-toolkits/fox14/files/patch-aa (nonexistent) @@ -1,23 +0,0 @@ ---- src/Makefile.in.orig Fri Oct 6 16:07:43 2000 -+++ src/Makefile.in Mon Oct 9 08:18:53 2000 -@@ -74,9 +74,9 @@ - LIBTOOL = @LIBTOOL@ - LN_S = @LN_S@ - LT_AGE = @LT_AGE@ --LT_CURRENT = @LT_CURRENT@ -+LT_CURRENT ?= @LT_CURRENT@ - LT_RELEASE = @LT_RELEASE@ --LT_REVISION = @LT_REVISION@ -+LT_REVISION ?= @LT_REVISION@ - MAKEINFO = @MAKEINFO@ - OBJDUMP = @OBJDUMP@ - PACKAGE = @PACKAGE@ -@@ -91,7 +91,7 @@ - - libFOX_la_LIBADD = $(X_LIBS) $(X_BASE_LIBS) $(X_EXTRA_LIBS) $(GL_LIBS) - --libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -+libFOX_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION) - - - CURSORS = crosshair.xbm crosshair_mask.xbm dndcopy.xbm dndcopy_mask.xbm dndlink.xbm dndlink_mask.xbm dndmove.xbm dndmove_mask.xbm dontdrop.xbm dontdrop_mask.xbm drag.xbm drag_mask.xbm gray.xbm hsplit.xbm hsplit_mask.xbm move.xbm move_mask.xbm resize.xbm resize_mask.xbm resizeleft.xbm resizeleft_mask.xbm resizetop.xbm resizetop_mask.xbm resizetopleft.xbm resizetopleft_mask.xbm resizetopright.xbm resizetopright_mask.xbm rotate.xbm rotate_mask.xbm swatch.xbm swatch_mask.xbm vsplit.xbm vsplit_mask.xbm xsplit.xbm xsplit_mask.xbm ne.xbm ne_mask.xbm se.xbm se_mask.xbm sw.xbm sw_mask.xbm nw.xbm nw_mask.xbm translate.xbm translate_mask.xbm zoom.xbm zoom_mask.xbm Property changes on: head/x11-toolkits/fox14/files/patch-aa ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox14/files/patch-ad =================================================================== --- head/x11-toolkits/fox14/files/patch-ad (revision 74695) +++ head/x11-toolkits/fox14/files/patch-ad (nonexistent) @@ -1,26 +0,0 @@ ---- configure.orig Thu Apr 5 05:25:59 2001 -+++ configure Tue May 1 01:34:27 2001 -@@ -839,7 +839,7 @@ - - - --CXXFLAGS="" -+#CXXFLAGS="" - - echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 - echo "configure:846: checking whether ${MAKE-make} sets \${MAKE}" >&5 -@@ -3440,9 +3440,12 @@ - - echo "$ac_t""$enable_release" 1>&6 - if test "x$enable_release" = "xyes" ; then --CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" -+CXXFLAGS="${CXXFLAGS} -DNDEBUG" - if test "${GXX}" = "yes" ; then --CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+#CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" -+if test "${with_profiling}" = ""; then -+CXXFLAGS="${CXXFLAGS} -fomit-frame-pointer" -+fi - fi - fi - Property changes on: head/x11-toolkits/fox14/files/patch-ad ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.4 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/x11-toolkits/fox14/files/patch-configure =================================================================== --- head/x11-toolkits/fox14/files/patch-configure (nonexistent) +++ head/x11-toolkits/fox14/files/patch-configure (revision 74696) @@ -0,0 +1,11 @@ +--- configure.orig Tue Feb 4 18:33:38 2003 ++++ configure Tue Feb 4 18:34:51 2003 +@@ -7498,7 +7498,7 @@ + if test "x$enable_release" = "xyes" ; then + CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" + if test "${GXX}" = "yes" ; then +-CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" ++CXXFLAGS="${CXXFLAGS} -Wuninitialized" + fi + fi + Property changes on: head/x11-toolkits/fox14/files/patch-configure ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/x11-toolkits/fox14/pkg-plist =================================================================== --- head/x11-toolkits/fox14/pkg-plist (revision 74695) +++ head/x11-toolkits/fox14/pkg-plist (revision 74696) @@ -1,297 +1,268 @@ +%%APPS%%bin/PathFinder +%%APPS%%bin/adie +%%APPS%%bin/calculator bin/reswrap include/fox/FX4Splitter.h include/fox/FXAccelTable.h include/fox/FXApp.h include/fox/FXArray.h include/fox/FXArrowButton.h include/fox/FXBMPIcon.h include/fox/FXBMPImage.h include/fox/FXBitmap.h include/fox/FXButton.h -%%NEWFILE%%include/fox/FXCURCursor.h +include/fox/FXCURCursor.h include/fox/FXCanvas.h include/fox/FXCharset.h include/fox/FXCheckButton.h -%%NEWFILE%%include/fox/FXColorBar.h +include/fox/FXColorBar.h include/fox/FXColorDialog.h include/fox/FXColorSelector.h include/fox/FXColorWell.h -%%NEWFILE%%include/fox/FXColorWheel.h +include/fox/FXColorWheel.h include/fox/FXComboBox.h include/fox/FXComposite.h include/fox/FXCursor.h include/fox/FXDC.h include/fox/FXDCPrint.h include/fox/FXDCWindow.h include/fox/FXDHMat.h include/fox/FXDHVec.h include/fox/FXDQuat.h include/fox/FXDVec.h include/fox/FXDataTarget.h include/fox/FXDebugTarget.h include/fox/FXDelegator.h include/fox/FXDial.h include/fox/FXDialogBox.h include/fox/FXDict.h include/fox/FXDirBox.h include/fox/FXDirDialog.h include/fox/FXDirList.h include/fox/FXDirSelector.h include/fox/FXDocument.h include/fox/FXDragCorner.h include/fox/FXDrawable.h include/fox/FXDriveBox.h include/fox/FXElement.h include/fox/FXException.h include/fox/FXFile.h include/fox/FXFileDialog.h include/fox/FXFileDict.h include/fox/FXFileList.h include/fox/FXFileSelector.h include/fox/FXFont.h include/fox/FXFontDialog.h include/fox/FXFontSelector.h include/fox/FXFrame.h include/fox/FXGIFCursor.h include/fox/FXGIFIcon.h include/fox/FXGIFImage.h include/fox/FXGLCanvas.h include/fox/FXGLCone.h include/fox/FXGLContext.h include/fox/FXGLCube.h include/fox/FXGLCylinder.h include/fox/FXGLObject.h include/fox/FXGLShape.h include/fox/FXGLSphere.h include/fox/FXGLTriangleMesh.h include/fox/FXGLViewer.h include/fox/FXGLVisual.h include/fox/FXGroupBox.h include/fox/FXHMat.h include/fox/FXHVec.h include/fox/FXHeader.h include/fox/FXHorizontalFrame.h -%%NEWFILE%%include/fox/FXICOIcon.h -%%NEWFILE%%include/fox/FXICOImage.h +include/fox/FXICOIcon.h +include/fox/FXICOImage.h include/fox/FXIcon.h include/fox/FXIconList.h include/fox/FXId.h include/fox/FXImage.h include/fox/FXImageView.h include/fox/FXInputDialog.h -%%OLDFILE%%include/fox/FXJPEGIcon.h -%%OLDFILE%%include/fox/FXJPEGImage.h -%%NEWFILE%%include/fox/FXJPGIcon.h -%%NEWFILE%%include/fox/FXJPGImage.h +include/fox/FXJPGIcon.h +include/fox/FXJPGImage.h include/fox/FXLabel.h include/fox/FXList.h include/fox/FXListBox.h include/fox/FXMDIButton.h include/fox/FXMDIChild.h include/fox/FXMDIClient.h include/fox/FXMainWindow.h include/fox/FXMatrix.h include/fox/FXMenuButton.h include/fox/FXMenuCaption.h include/fox/FXMenuCascade.h include/fox/FXMenuCommand.h include/fox/FXMenuPane.h include/fox/FXMenuSeparator.h include/fox/FXMenuTitle.h include/fox/FXMenubar.h include/fox/FXMessageBox.h include/fox/FXObject.h include/fox/FXObjectList.h include/fox/FXOptionMenu.h include/fox/FXPCXIcon.h include/fox/FXPCXImage.h include/fox/FXPNGIcon.h include/fox/FXPNGImage.h include/fox/FXPacker.h -%%NEWFILE%%include/fox/FXPicker.h +include/fox/FXPicker.h include/fox/FXPoint.h include/fox/FXPopup.h include/fox/FXPrintDialog.h -%%OLDFILE%%include/fox/FXProfiler.h include/fox/FXProgressBar.h include/fox/FXProgressDialog.h include/fox/FXQuat.h -%%NEWFILE%%include/fox/FXRGBIcon.h -%%NEWFILE%%include/fox/FXRGBImage.h +include/fox/FXRGBIcon.h +include/fox/FXRGBImage.h include/fox/FXRadioButton.h include/fox/FXRange.h include/fox/FXRecentFiles.h include/fox/FXRectangle.h include/fox/FXRegion.h include/fox/FXRegistry.h include/fox/FXReplaceDialog.h -%%NEWFILE%%include/fox/FXRex.h +include/fox/FXRex.h include/fox/FXRootWindow.h include/fox/FXScrollArea.h include/fox/FXScrollWindow.h include/fox/FXScrollbar.h include/fox/FXSearchDialog.h include/fox/FXSeparator.h include/fox/FXSettings.h include/fox/FXShell.h include/fox/FXShutter.h include/fox/FXSize.h include/fox/FXSlider.h include/fox/FXSpinner.h include/fox/FXSplitter.h include/fox/FXStatusbar.h include/fox/FXStatusline.h include/fox/FXStream.h include/fox/FXString.h -%%NEWFILE%%include/fox/FXStringDict.h +include/fox/FXStringDict.h include/fox/FXSwitcher.h -%%NEWFILE%%include/fox/FXTGAIcon.h -%%NEWFILE%%include/fox/FXTGAImage.h +include/fox/FXTGAIcon.h +include/fox/FXTGAImage.h include/fox/FXTIFIcon.h include/fox/FXTIFImage.h -%%OLDFILE%%include/fox/FXTab.h -%%NEWFILE%%include/fox/FXTabBar.h -%%NEWFILE%%include/fox/FXTabBook.h -%%NEWFILE%%include/fox/FXTabItem.h +include/fox/FXTabBar.h +include/fox/FXTabBook.h +include/fox/FXTabItem.h include/fox/FXTable.h include/fox/FXText.h include/fox/FXTextField.h include/fox/FXToggleButton.h include/fox/FXToolbar.h include/fox/FXToolbarGrip.h include/fox/FXToolbarShell.h include/fox/FXToolbarTab.h include/fox/FXTooltip.h include/fox/FXTopWindow.h include/fox/FXTreeList.h include/fox/FXTreeListBox.h include/fox/FXURL.h include/fox/FXUndoList.h include/fox/FXVec.h include/fox/FXVerticalFrame.h include/fox/FXVisual.h include/fox/FXWindow.h include/fox/FXXPMIcon.h include/fox/FXXPMImage.h include/fox/fx.h include/fox/fx3d.h include/fox/fxdefs.h include/fox/fxkeys.h -%%OLDFILE%%include/fox/fxregex.h include/fox/fxver.h include/fox/xincs.h -@dirrm include/fox +lib/libFOX-1.0.so +lib/libFOX-1.0.so.0 lib/libFOX.a lib/libFOX.la lib/libFOX.so -lib/libFOX.so.%%LIBVER%% -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.html +%%PORTDOCS%%share/doc/fox/html/adie.jpg +%%PORTDOCS%%share/doc/fox/html/adie_colors.jpg +%%PORTDOCS%%share/doc/fox/html/adie_del.jpg +%%PORTDOCS%%share/doc/fox/html/adie_edit.jpg +%%PORTDOCS%%share/doc/fox/html/adie_font.jpg +%%PORTDOCS%%share/doc/fox/html/adie_pat.jpg %%PORTDOCS%%share/doc/fox/html/app.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/foxstart.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/freespeach.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ill.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/ilr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/innernerd.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/iur.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/nerd_inside.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oll.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/olr.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/opengl_logo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/oul_grey.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/our.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/slingerzbutton1.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-libraries.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-linkoutput.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-postbuild.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-preprocessor.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-project.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/win32-tooloptions.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/art/wintextedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/bigpenguin.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/calc.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrc.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/cfdrclogo.png +%%PORTDOCS%%share/doc/fox/html/bigpenguin.png +%%PORTDOCS%%share/doc/fox/html/calc.html +%%PORTDOCS%%share/doc/fox/html/colordialog.png %%PORTDOCS%%share/doc/fox/html/datatarget.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit1.gif -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/dlgedit2.gif -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/doc.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/download.html +%%PORTDOCS%%share/doc/fox/html/dirdialog.png +%%PORTDOCS%%share/doc/fox/html/doc.html +%%PORTDOCS%%share/doc/fox/html/download.html %%PORTDOCS%%share/doc/fox/html/draganddrop.html %%PORTDOCS%%share/doc/fox/html/faq.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/filefuncs.html +%%PORTDOCS%%share/doc/fox/html/filedialog.png +%%PORTDOCS%%share/doc/fox/html/filefuncs.html %%PORTDOCS%%share/doc/fox/html/focus.html +%%PORTDOCS%%share/doc/fox/html/fontdialog.png %%PORTDOCS%%share/doc/fox/html/fonts.html %%PORTDOCS%%share/doc/fox/html/foreword.html %%PORTDOCS%%share/doc/fox/html/fox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxback.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/foxlogo.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/goals.html +%%PORTDOCS%%share/doc/fox/html/foxcalc.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_01_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_02_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxcalc_prefdialog_03_small.jpg +%%PORTDOCS%%share/doc/fox/html/foxlogo.png +%%PORTDOCS%%share/doc/fox/html/foxstart.png +%%PORTDOCS%%share/doc/fox/html/freespeach.gif +%%PORTDOCS%%share/doc/fox/html/glview.png +%%PORTDOCS%%share/doc/fox/html/goals.html %%PORTDOCS%%share/doc/fox/html/guiupdate.html %%PORTDOCS%%share/doc/fox/html/icons.html +%%PORTDOCS%%share/doc/fox/html/ill.gif +%%PORTDOCS%%share/doc/fox/html/ilr.gif +%%PORTDOCS%%share/doc/fox/html/innernerd.gif %%PORTDOCS%%share/doc/fox/html/introduction.html +%%PORTDOCS%%share/doc/fox/html/iul.gif +%%PORTDOCS%%share/doc/fox/html/iur.gif %%PORTDOCS%%share/doc/fox/html/layout.html %%PORTDOCS%%share/doc/fox/html/messages.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/nasafan.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/news.html +%%PORTDOCS%%share/doc/fox/html/nerd_inside.gif +%%PORTDOCS%%share/doc/fox/html/news.html %%PORTDOCS%%share/doc/fox/html/oldfox.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/opengl_logo.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/owl-anim.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pathfinder.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/pcboard.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/platforms.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/progress.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/pathfinder.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/projects.html +%%PORTDOCS%%share/doc/fox/html/oll.gif +%%PORTDOCS%%share/doc/fox/html/olr.gif +%%PORTDOCS%%share/doc/fox/html/opengl_logo.png +%%PORTDOCS%%share/doc/fox/html/oul.gif +%%PORTDOCS%%share/doc/fox/html/oul_grey.gif +%%PORTDOCS%%share/doc/fox/html/our.gif +%%PORTDOCS%%share/doc/fox/html/pathfinder.html +%%PORTDOCS%%share/doc/fox/html/pathfinder.png +%%PORTDOCS%%share/doc/fox/html/printdialog.png +%%PORTDOCS%%share/doc/fox/html/progress.png +%%PORTDOCS%%share/doc/fox/html/projects.html %%PORTDOCS%%share/doc/fox/html/registry.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/rex.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/scribble.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_colors.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_del.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_edit.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_font.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/adie_pat.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/colordialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/dirdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/filedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/fontdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_01_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_02_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/foxcalc_prefdialog_03_small.jpg -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/glview.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/pathfinder.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/printdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/replacedialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/searchdialog.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/screenshots/table.png +%%PORTDOCS%%share/doc/fox/html/replacedialog.png +%%PORTDOCS%%share/doc/fox/html/rex.html +%%PORTDOCS%%share/doc/fox/html/screenshots.html +%%PORTDOCS%%share/doc/fox/html/scribble.png +%%PORTDOCS%%share/doc/fox/html/searchdialog.png %%PORTDOCS%%share/doc/fox/html/serialization.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/sgitextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/styles.css -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/tb-paste.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/textedit2.png +%%PORTDOCS%%share/doc/fox/html/sgitextedit.png +%%PORTDOCS%%share/doc/fox/html/slingerzbutton1.gif +%%PORTDOCS%%share/doc/fox/html/styles.css +%%PORTDOCS%%share/doc/fox/html/table.png %%PORTDOCS%%share/doc/fox/html/timers.html %%PORTDOCS%%share/doc/fox/html/widgets.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-libraries.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-linkoutput.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-postbuild.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-preprocessor.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-project.png -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/win32-tooloptions.png +%%PORTDOCS%%share/doc/fox/html/win32-libraries.png +%%PORTDOCS%%share/doc/fox/html/win32-linkoutput.png +%%PORTDOCS%%share/doc/fox/html/win32-postbuild.png +%%PORTDOCS%%share/doc/fox/html/win32-preprocessor.png +%%PORTDOCS%%share/doc/fox/html/win32-project.png +%%PORTDOCS%%share/doc/fox/html/win32-tooloptions.png %%PORTDOCS%%share/doc/fox/html/win32.html -%%PORTDOCS%%%%OLDFILE%%share/doc/fox/html/wintextedit.png -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/window.html -%%PORTDOCS%%%%NEWFILE%%share/doc/fox/html/xml.html -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/screenshots -%%PORTDOCS%%%%NEWFILE%%@dirrm share/doc/fox/html/art +%%PORTDOCS%%share/doc/fox/html/window.html +%%PORTDOCS%%share/doc/fox/html/wintextedit.png +%%PORTDOCS%%share/doc/fox/html/xml.html %%PORTDOCS%%@dirrm share/doc/fox/html %%PORTDOCS%%@dirrm share/doc/fox +@dirrm include/fox Property changes on: head/x11-toolkits/fox14/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property