Date: Thu, 28 Jul 2005 19:52:12 +0400 (MSD) From: Alexander Novitsky <alecn2002@yandex.ru> To: FreeBSD-gnats-submit@FreeBSD.org Cc: alecn2002@yandex.ru Subject: ports/84230: [NEW PORT] x11-toolkits/fox: Fast and extensive C++ GUI toolkit -- ver.1.2 Message-ID: <200507281552.j6SFqCGt059214@server.v42of.icc-vvd.ru> Resent-Message-ID: <200507281600.j6SG0hvT005762@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 84230 >Category: ports >Synopsis: [NEW PORT] x11-toolkits/fox: Fast and extensive C++ GUI toolkit -- ver.1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 28 16:00:42 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alexander Novitsky >Release: FreeBSD 5.4-RELEASE i386 >Organization: Inzhcomcentre VVD >Environment: System: FreeBSD server.v42of.icc-vvd.ru 5.4-RELEASE FreeBSD 5.4-RELEASE #1: Fri May 13 16:59:19 MSD 2005 >Description: I've asked Lule Johnson, author of FXRuby (see ports/x11-toolkits/ruby-fox-devel), could we hope to get FOX 1.4 support in FXRuby in the nearest future, and answer was 'No'. So, FXRuby supports FOX 1.0 and FOX 1.2 now. As FXRuby required by other ports that I maintain, I've decided to reincarnate FOX 1.2, bumping it to the most modern revision 1.2.16. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- fox-1.2.16.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # fox12 # fox12/files # fox12/files/patch-configure # fox12/files/patch-src::FXFile.cpp # fox12/files/patch-utils::Makefile.in # fox12/Makefile # fox12/distinfo # fox12/pkg-descr # fox12/pkg-plist # echo c - fox12 mkdir -p fox12 > /dev/null 2>&1 echo c - fox12/files mkdir -p fox12/files > /dev/null 2>&1 echo x - fox12/files/patch-configure sed 's/^X//' >fox12/files/patch-configure << 'END-of-fox12/files/patch-configure' X--- configure.orig Tue Feb 4 18:33:38 2003 X+++ configure Tue Feb 4 18:34:51 2003 X@@ -7498,7 +7498,7 @@ X if test "x$enable_release" = "xyes" ; then X CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG" X if test "${GXX}" = "yes" ; then X-CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations" X+CXXFLAGS="${CXXFLAGS} -Wuninitialized" X fi X fi X END-of-fox12/files/patch-configure echo x - fox12/files/patch-src::FXFile.cpp sed 's/^X//' >fox12/files/patch-src::FXFile.cpp << 'END-of-fox12/files/patch-src::FXFile.cpp' X--- src/FXFile.cpp.orig Fri Apr 16 23:25:33 2004 X+++ src/FXFile.cpp Sat May 22 13:13:48 2004 X@@ -159,7 +159,7 @@ X // Get home directory for a given user X FXString FXFile::getUserDirectory(const FXString& user){ X #ifndef WIN32 X-#ifdef FOX_THREAD_SAFE X+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__) X struct passwd pwdresult,*pwd; X char buffer[1024]; X if(user.empty()){ X@@ -1032,7 +1032,7 @@ X FXString FXFile::owner(FXuint uid){ X FXchar result[64]; X #ifndef WIN32 X-#ifdef FOX_THREAD_SAFE X+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__) X struct passwd pwdresult,*pwd; X char buffer[1024]; X if(getpwuid_r(uid,&pwdresult,buffer,sizeof(buffer),&pwd)==0 && pwd) return pwd->pw_name; X@@ -1050,7 +1050,7 @@ X FXString FXFile::group(FXuint gid){ X FXchar result[64]; X #ifndef WIN32 X-#ifdef FOX_THREAD_SAFE X+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__) X ::group grpresult; X ::group *grp; X char buffer[1024]; END-of-fox12/files/patch-src::FXFile.cpp echo x - fox12/files/patch-utils::Makefile.in sed 's/^X//' >fox12/files/patch-utils::Makefile.in << 'END-of-fox12/files/patch-utils::Makefile.in' X--- utils/Makefile.in.orig Sun Aug 15 11:30:45 2004 X+++ utils/Makefile.in Sun Aug 15 11:30:55 2004 X@@ -106,7 +106,7 @@ X DEFS = @DEFS@ -I. -I$(srcdir) X CPPFLAGS = @CPPFLAGS@ X LDFLAGS = @LDFLAGS@ X-LIBS = @LIBS@ X+LIBS = @LIBS@ -lX11 -lXext X X_CFLAGS = @X_CFLAGS@ X X_LIBS = @X_LIBS@ X X_EXTRA_LIBS = @X_EXTRA_LIBS@ END-of-fox12/files/patch-utils::Makefile.in echo x - fox12/Makefile sed 's/^X//' >fox12/Makefile << 'END-of-fox12/Makefile' X# New ports collection makefile for: fox X# Date created: 28 Jul 2005 X# Whom: Alexander Novitsky <alecn2002@yandex.ru> X# X# $FreeBSD$ X# X XPORTNAME= fox XPORTVERSION= ${MAJORVER}.${SHVER} XCATEGORIES= x11-toolkits XMASTER_SITES= http://www.fox-toolkit.org/ftp/ \ X ftp://ftp.fox-toolkit.org/pub/ \ X http://fresh.t-systems-sfr.com/unix/src/misc/ X XMAINTAINER?= alecn2002@yandex.ru XCOMMENT= Fast and extensive C++ GUI toolkit -- ver.1.2 X XLIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ X png.5:${PORTSDIR}/graphics/png \ X tiff.4:${PORTSDIR}/graphics/tiff \ X Xft.2:${PORTSDIR}/x11-fonts/libXft X XCONFLICTS= fox-1.0.* fox-1.4.* X XLATEST_LINK= fox12 X XMAJORVER= 1.2 XSHVER= 16 XPLIST_SUB+= MAJORVER=${MAJORVER} SHVER=${SHVER} X XUSE_GNOME= lthack XUSE_GL= yes XUSE_REINPLACE= yes XUSE_INC_LIBTOOL_VER= 13 XCONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" XCONFIGURE_ARGS= --with-opengl --with-x --enable-threadsafe XINSTALLS_SHLIB= yes X XMAN1= shutterbug.1 reswrap.1 X XCPPFLAGS= -I${LOCALBASE}/include -I${X11BASE}/include XLDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib X X.include <bsd.port.pre.mk> X X## X## Additional Options X## X# X.if ${X_WINDOW_SYSTEM:L} == xfree86-3 || defined(WITHOUT_XFT) XCONFIGURE_ARGS+= --with-xft=no X.else XCONFIGURE_ARGS+= --with-xft=yes XCPPFLAGS+= `freetype-config --cflags` XLDFLAGS+= `freetype-config --libs` X.endif X# X.if defined(WITHOUT_SHM) XCONFIGURE_ARGS+= --with-xshm=no X.else XCONFIGURE_ARGS+= --with-xshm=yes X.endif X# X.if defined(WITH_CUPS) XCONFIGURE_ARGS+= --enable-cups X.else XCONFIGURE_ARGS+= --disable-cups X.endif X# X.if defined(WITH_DEBUG) XCONFIGURE_ARGS+= --enable-debug X.else XCONFIGURE_ARGS+= --enable-release X.endif X# X.if defined(WITH_FOX_APPLICATIONS) XMAN1+= PathFinder.1 adie.1 calculator.1 XPLIST_SUB+= APPS="" X.else XPLIST_SUB+= APPS="@comment " X.endif X# X.if defined(WITH_OPTIMIZED_CXXFLAGS) X# turn distribution-recommended optimization flags back on XCXXFLAGS+= -O2 -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations X.endif X# X.if defined(WITH_PROFILING) XCONFIGURE_ARGS+= --with-profiling=gprof X.endif X# X.if defined(NOPORTDOCS) XMAKE_ARGS+= DOC= X.else XMAKE_ARGS+= DOC=doc X.endif X Xpost-patch: X# CXXFLAGS safeness X @${REINPLACE_CMD} -E -e \ X 's|-O2|${CXXFLAGS}|g ; \ X s|-lc_r|${PTHREAD_LIBS}|g ; \ X s|FOX_INTERFACE_VERSION=0|FOX_INTERFACE_VERSION=${SHVER}|g' \ X ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} X# doc prefix safeness X @${REINPLACE_CMD} -E -e \ X 's|^(htmldir).*$$|\1=${DOCSDIR}/html|' \ X ${WRKSRC}/doc/Makefile.in X @${REINPLACE_CMD} -E -e \ X 's|^(artdir).*$$|\1=${DOCSDIR}/html|' \ X ${WRKSRC}/doc/art/Makefile.in X @${REINPLACE_CMD} -E -e \ X 's|^(screenshotsdir).*$$|\1=${DOCSDIR}/html|' \ X ${WRKSRC}/doc/screenshots/Makefile.in X.if !defined(WITH_FOX_APPLICATIONS) X @${REINPLACE_CMD} -E -e \ X 's,^(SUBDIRS.*)adie,\1,; \ X s,^(SUBDIRS.*)pathfinder,\1,; \ X s,^(SUBDIRS.*)calculator,\1,' \ X ${WRKSRC}/Makefile.in X.endif X Xpre-everything:: X.if !defined(WITH_OPTIMIZED_CXXFLAGS) X @${ECHO_MSG} X @${ECHO_MSG} 'You can enable additional compilation optimizations' X @${ECHO_MSG} 'by defining WITH_OPTIMIZED_CXXFLAGS' X.endif X.if !defined(WITH_CUPS) X @${ECHO_MSG} X @${ECHO_MSG} 'You can enable CUPS support by defining WITH_CUPS' X.endif X.if !defined(WITH_DEBUG) X @${ECHO_MSG} X @${ECHO_MSG} 'You can build DEBUG support by defining WITH_DEBUG' X.endif X.if !defined(WITH_FOX_APPLICATIONS) X @${ECHO_MSG} X @${ECHO_MSG} 'You can install FOX sample applications by defining WITH_FOX_APPLICATIONS" X.endif X.if !defined(WITH_PROFILING) X @${ECHO_MSG} X @${ECHO_MSG} 'You can build PROFILING support by defining WITH_PROFILING' X.endif X.if !defined(WITHOUT_SHM) X @${ECHO_MSG} X @${ECHO_MSG} 'You can disable Shared Memory support by defining WITHOUT_SHM' X.endif X.if !defined(WITHOUT_XFT) X @${ECHO_MSG} X @${ECHO_MSG} 'You can disable Xft support by defining WITHOUT_XFT' X.endif X @${ECHO_MSG} X X.include <bsd.port.post.mk> END-of-fox12/Makefile echo x - fox12/distinfo sed 's/^X//' >fox12/distinfo << 'END-of-fox12/distinfo' XMD5 (fox-1.2.16.tar.gz) = f898da23fe7678faf5380224fbf0b3c3 XSIZE (fox-1.2.16.tar.gz) = 3896051 END-of-fox12/distinfo echo x - fox12/pkg-descr sed 's/^X//' >fox12/pkg-descr << 'END-of-fox12/pkg-descr' XFOX is a C++ GUI toolkit that is supposed to Xallow programmers to write a program once, and Xcompile anywhere (or so the website says, it sounds Xlike Java to me). FOX is a very flexible library, Xit has all sorts of functions and options, and is Xsupposed to be fairly fast. X XWWW: http://www.fox-toolkit.org/fox.html XAuthor: Jeroen van der Zijp <jvz@cfdrc.com> X X--Will <andrews@technologist.com> END-of-fox12/pkg-descr echo x - fox12/pkg-plist sed 's/^X//' >fox12/pkg-plist << 'END-of-fox12/pkg-plist' X%%APPS%%bin/PathFinder X%%APPS%%bin/adie X%%APPS%%bin/calculator Xbin/reswrap Xbin/shutterbug Xbin/fox-config Xinclude/fox-%%MAJORVER%%/FX4Splitter.h Xinclude/fox-%%MAJORVER%%/FXAccelTable.h Xinclude/fox-%%MAJORVER%%/FXApp.h Xinclude/fox-%%MAJORVER%%/FXArray.h Xinclude/fox-%%MAJORVER%%/FXArrowButton.h Xinclude/fox-%%MAJORVER%%/FXBMPIcon.h Xinclude/fox-%%MAJORVER%%/FXBMPImage.h Xinclude/fox-%%MAJORVER%%/FXBZStream.h Xinclude/fox-%%MAJORVER%%/FXBitmap.h Xinclude/fox-%%MAJORVER%%/FXBitmapFrame.h Xinclude/fox-%%MAJORVER%%/FXBitmapView.h Xinclude/fox-%%MAJORVER%%/FXButton.h Xinclude/fox-%%MAJORVER%%/FXCURCursor.h Xinclude/fox-%%MAJORVER%%/FXCanvas.h Xinclude/fox-%%MAJORVER%%/FXCharset.h Xinclude/fox-%%MAJORVER%%/FXCheckButton.h Xinclude/fox-%%MAJORVER%%/FXColorBar.h Xinclude/fox-%%MAJORVER%%/FXColorDialog.h Xinclude/fox-%%MAJORVER%%/FXColorSelector.h Xinclude/fox-%%MAJORVER%%/FXColorWell.h Xinclude/fox-%%MAJORVER%%/FXColorWheel.h Xinclude/fox-%%MAJORVER%%/FXComboBox.h Xinclude/fox-%%MAJORVER%%/FXComposite.h Xinclude/fox-%%MAJORVER%%/FXCursor.h Xinclude/fox-%%MAJORVER%%/FXDC.h Xinclude/fox-%%MAJORVER%%/FXDCPrint.h Xinclude/fox-%%MAJORVER%%/FXDCWindow.h Xinclude/fox-%%MAJORVER%%/FXDLL.h Xinclude/fox-%%MAJORVER%%/FXDataTarget.h Xinclude/fox-%%MAJORVER%%/FXDebugTarget.h Xinclude/fox-%%MAJORVER%%/FXDelegator.h Xinclude/fox-%%MAJORVER%%/FXDial.h Xinclude/fox-%%MAJORVER%%/FXDialogBox.h Xinclude/fox-%%MAJORVER%%/FXDict.h Xinclude/fox-%%MAJORVER%%/FXDirBox.h Xinclude/fox-%%MAJORVER%%/FXDirDialog.h Xinclude/fox-%%MAJORVER%%/FXDirList.h Xinclude/fox-%%MAJORVER%%/FXDirSelector.h Xinclude/fox-%%MAJORVER%%/FXDocument.h Xinclude/fox-%%MAJORVER%%/FXDragCorner.h Xinclude/fox-%%MAJORVER%%/FXDrawable.h Xinclude/fox-%%MAJORVER%%/FXDriveBox.h Xinclude/fox-%%MAJORVER%%/FXElement.h Xinclude/fox-%%MAJORVER%%/FXException.h Xinclude/fox-%%MAJORVER%%/FXFile.h Xinclude/fox-%%MAJORVER%%/FXFileDialog.h Xinclude/fox-%%MAJORVER%%/FXFileDict.h Xinclude/fox-%%MAJORVER%%/FXFileList.h Xinclude/fox-%%MAJORVER%%/FXFileSelector.h Xinclude/fox-%%MAJORVER%%/FXFileStream.h Xinclude/fox-%%MAJORVER%%/FXFoldingList.h Xinclude/fox-%%MAJORVER%%/FXFont.h Xinclude/fox-%%MAJORVER%%/FXFontDialog.h Xinclude/fox-%%MAJORVER%%/FXFontSelector.h Xinclude/fox-%%MAJORVER%%/FXFrame.h Xinclude/fox-%%MAJORVER%%/FXGIFCursor.h Xinclude/fox-%%MAJORVER%%/FXGIFIcon.h Xinclude/fox-%%MAJORVER%%/FXGIFImage.h Xinclude/fox-%%MAJORVER%%/FXGLCanvas.h Xinclude/fox-%%MAJORVER%%/FXGLCone.h Xinclude/fox-%%MAJORVER%%/FXGLContext.h Xinclude/fox-%%MAJORVER%%/FXGLCube.h Xinclude/fox-%%MAJORVER%%/FXGLCylinder.h Xinclude/fox-%%MAJORVER%%/FXGLObject.h Xinclude/fox-%%MAJORVER%%/FXGLShape.h Xinclude/fox-%%MAJORVER%%/FXGLSphere.h Xinclude/fox-%%MAJORVER%%/FXGLTriangleMesh.h Xinclude/fox-%%MAJORVER%%/FXGLViewer.h Xinclude/fox-%%MAJORVER%%/FXGLVisual.h Xinclude/fox-%%MAJORVER%%/FXGZStream.h Xinclude/fox-%%MAJORVER%%/FXGradientBar.h Xinclude/fox-%%MAJORVER%%/FXGroupBox.h Xinclude/fox-%%MAJORVER%%/FXHash.h Xinclude/fox-%%MAJORVER%%/FXHeader.h Xinclude/fox-%%MAJORVER%%/FXHorizontalFrame.h Xinclude/fox-%%MAJORVER%%/FXICOIcon.h Xinclude/fox-%%MAJORVER%%/FXICOImage.h Xinclude/fox-%%MAJORVER%%/FXIcon.h Xinclude/fox-%%MAJORVER%%/FXIconList.h Xinclude/fox-%%MAJORVER%%/FXId.h Xinclude/fox-%%MAJORVER%%/FXImage.h Xinclude/fox-%%MAJORVER%%/FXImageFrame.h Xinclude/fox-%%MAJORVER%%/FXImageView.h Xinclude/fox-%%MAJORVER%%/FXInputDialog.h Xinclude/fox-%%MAJORVER%%/FXJPGIcon.h Xinclude/fox-%%MAJORVER%%/FXJPGImage.h Xinclude/fox-%%MAJORVER%%/FXLabel.h Xinclude/fox-%%MAJORVER%%/FXList.h Xinclude/fox-%%MAJORVER%%/FXListBox.h Xinclude/fox-%%MAJORVER%%/FXMDIButton.h Xinclude/fox-%%MAJORVER%%/FXMDIChild.h Xinclude/fox-%%MAJORVER%%/FXMDIClient.h Xinclude/fox-%%MAJORVER%%/FXMainWindow.h Xinclude/fox-%%MAJORVER%%/FXMat3d.h Xinclude/fox-%%MAJORVER%%/FXMat3f.h Xinclude/fox-%%MAJORVER%%/FXMat4d.h Xinclude/fox-%%MAJORVER%%/FXMat4f.h Xinclude/fox-%%MAJORVER%%/FXMatrix.h Xinclude/fox-%%MAJORVER%%/FXMemoryStream.h Xinclude/fox-%%MAJORVER%%/FXMenuBar.h Xinclude/fox-%%MAJORVER%%/FXMenuButton.h Xinclude/fox-%%MAJORVER%%/FXMenuCaption.h Xinclude/fox-%%MAJORVER%%/FXMenuCascade.h Xinclude/fox-%%MAJORVER%%/FXMenuCheck.h Xinclude/fox-%%MAJORVER%%/FXMenuCommand.h Xinclude/fox-%%MAJORVER%%/FXMenuPane.h Xinclude/fox-%%MAJORVER%%/FXMenuRadio.h Xinclude/fox-%%MAJORVER%%/FXMenuSeparator.h Xinclude/fox-%%MAJORVER%%/FXMenuTitle.h Xinclude/fox-%%MAJORVER%%/FXMessageBox.h Xinclude/fox-%%MAJORVER%%/FXObject.h Xinclude/fox-%%MAJORVER%%/FXObjectList.h Xinclude/fox-%%MAJORVER%%/FXOptionMenu.h Xinclude/fox-%%MAJORVER%%/FXPCXIcon.h Xinclude/fox-%%MAJORVER%%/FXPCXImage.h Xinclude/fox-%%MAJORVER%%/FXPNGIcon.h Xinclude/fox-%%MAJORVER%%/FXPNGImage.h Xinclude/fox-%%MAJORVER%%/FXPPMIcon.h Xinclude/fox-%%MAJORVER%%/FXPPMImage.h Xinclude/fox-%%MAJORVER%%/FXPacker.h Xinclude/fox-%%MAJORVER%%/FXPicker.h Xinclude/fox-%%MAJORVER%%/FXPoint.h Xinclude/fox-%%MAJORVER%%/FXPopup.h Xinclude/fox-%%MAJORVER%%/FXPrintDialog.h Xinclude/fox-%%MAJORVER%%/FXProgressBar.h Xinclude/fox-%%MAJORVER%%/FXProgressDialog.h Xinclude/fox-%%MAJORVER%%/FXQuatd.h Xinclude/fox-%%MAJORVER%%/FXQuatf.h Xinclude/fox-%%MAJORVER%%/FXRGBIcon.h Xinclude/fox-%%MAJORVER%%/FXRGBImage.h Xinclude/fox-%%MAJORVER%%/FXRadioButton.h Xinclude/fox-%%MAJORVER%%/FXRanged.h Xinclude/fox-%%MAJORVER%%/FXRangef.h Xinclude/fox-%%MAJORVER%%/FXRealSlider.h Xinclude/fox-%%MAJORVER%%/FXRealSpinner.h Xinclude/fox-%%MAJORVER%%/FXRecentFiles.h Xinclude/fox-%%MAJORVER%%/FXRectangle.h Xinclude/fox-%%MAJORVER%%/FXRegion.h Xinclude/fox-%%MAJORVER%%/FXRegistry.h Xinclude/fox-%%MAJORVER%%/FXReplaceDialog.h Xinclude/fox-%%MAJORVER%%/FXRex.h Xinclude/fox-%%MAJORVER%%/FXRootWindow.h Xinclude/fox-%%MAJORVER%%/FXRuler.h Xinclude/fox-%%MAJORVER%%/FXScrollArea.h Xinclude/fox-%%MAJORVER%%/FXScrollBar.h Xinclude/fox-%%MAJORVER%%/FXScrollPane.h Xinclude/fox-%%MAJORVER%%/FXScrollWindow.h Xinclude/fox-%%MAJORVER%%/FXSearchDialog.h Xinclude/fox-%%MAJORVER%%/FXSeparator.h Xinclude/fox-%%MAJORVER%%/FXSettings.h Xinclude/fox-%%MAJORVER%%/FXShell.h Xinclude/fox-%%MAJORVER%%/FXShutter.h Xinclude/fox-%%MAJORVER%%/FXSize.h Xinclude/fox-%%MAJORVER%%/FXSlider.h Xinclude/fox-%%MAJORVER%%/FXSphered.h Xinclude/fox-%%MAJORVER%%/FXSpheref.h Xinclude/fox-%%MAJORVER%%/FXSpinner.h Xinclude/fox-%%MAJORVER%%/FXSplitter.h Xinclude/fox-%%MAJORVER%%/FXSpring.h Xinclude/fox-%%MAJORVER%%/FXStatusBar.h Xinclude/fox-%%MAJORVER%%/FXStatusLine.h Xinclude/fox-%%MAJORVER%%/FXStream.h Xinclude/fox-%%MAJORVER%%/FXString.h Xinclude/fox-%%MAJORVER%%/FXStringDict.h Xinclude/fox-%%MAJORVER%%/FXSwitcher.h Xinclude/fox-%%MAJORVER%%/FXTGAIcon.h Xinclude/fox-%%MAJORVER%%/FXTGAImage.h Xinclude/fox-%%MAJORVER%%/FXTIFIcon.h Xinclude/fox-%%MAJORVER%%/FXTIFImage.h Xinclude/fox-%%MAJORVER%%/FXTabBar.h Xinclude/fox-%%MAJORVER%%/FXTabBook.h Xinclude/fox-%%MAJORVER%%/FXTabItem.h Xinclude/fox-%%MAJORVER%%/FXTable.h Xinclude/fox-%%MAJORVER%%/FXText.h Xinclude/fox-%%MAJORVER%%/FXTextCodec.h Xinclude/fox-%%MAJORVER%%/FXTextField.h Xinclude/fox-%%MAJORVER%%/FXThread.h Xinclude/fox-%%MAJORVER%%/FXToggleButton.h Xinclude/fox-%%MAJORVER%%/FXToolBar.h Xinclude/fox-%%MAJORVER%%/FXToolBarGrip.h Xinclude/fox-%%MAJORVER%%/FXToolBarShell.h Xinclude/fox-%%MAJORVER%%/FXToolBarTab.h Xinclude/fox-%%MAJORVER%%/FXToolTip.h Xinclude/fox-%%MAJORVER%%/FXTopWindow.h Xinclude/fox-%%MAJORVER%%/FXTreeList.h Xinclude/fox-%%MAJORVER%%/FXTreeListBox.h Xinclude/fox-%%MAJORVER%%/FXTriStateButton.h Xinclude/fox-%%MAJORVER%%/FXURL.h Xinclude/fox-%%MAJORVER%%/FXUTF16Codec.h Xinclude/fox-%%MAJORVER%%/FXUTF32Codec.h Xinclude/fox-%%MAJORVER%%/FXUTF8Codec.h Xinclude/fox-%%MAJORVER%%/FXUndoList.h Xinclude/fox-%%MAJORVER%%/FXVec2d.h Xinclude/fox-%%MAJORVER%%/FXVec2f.h Xinclude/fox-%%MAJORVER%%/FXVec3d.h Xinclude/fox-%%MAJORVER%%/FXVec3f.h Xinclude/fox-%%MAJORVER%%/FXVec4d.h Xinclude/fox-%%MAJORVER%%/FXVec4f.h Xinclude/fox-%%MAJORVER%%/FXVerticalFrame.h Xinclude/fox-%%MAJORVER%%/FXVisual.h Xinclude/fox-%%MAJORVER%%/FXWString.h Xinclude/fox-%%MAJORVER%%/FXWindow.h Xinclude/fox-%%MAJORVER%%/FXWizard.h Xinclude/fox-%%MAJORVER%%/FXXBMIcon.h Xinclude/fox-%%MAJORVER%%/FXXBMImage.h Xinclude/fox-%%MAJORVER%%/FXXPMIcon.h Xinclude/fox-%%MAJORVER%%/FXXPMImage.h Xinclude/fox-%%MAJORVER%%/chart/FXChart.h Xinclude/fox-%%MAJORVER%%/fx.h Xinclude/fox-%%MAJORVER%%/fx3d.h Xinclude/fox-%%MAJORVER%%/fxdefs.h Xinclude/fox-%%MAJORVER%%/fxkeys.h Xinclude/fox-%%MAJORVER%%/fxver.h Xinclude/fox-%%MAJORVER%%/xincs.h Xlib/libCHART-%%MAJORVER%%.a Xlib/libCHART-%%MAJORVER%%.so Xlib/libCHART-%%MAJORVER%%.so.%%SHVER%% Xlib/libFOX-%%MAJORVER%%.a Xlib/libFOX-%%MAJORVER%%.so Xlib/libFOX-%%MAJORVER%%.so.%%SHVER%% X%%PORTDOCS%%%%DOCSDIR%%/html/SbSScreen1.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/SbSScreen1_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/adie.gif X%%PORTDOCS%%%%DOCSDIR%%/html/adie.html X%%PORTDOCS%%%%DOCSDIR%%/html/adie_colors.gif X%%PORTDOCS%%%%DOCSDIR%%/html/adie_edit.gif X%%PORTDOCS%%%%DOCSDIR%%/html/adie_font.gif X%%PORTDOCS%%%%DOCSDIR%%/html/adie_sty.gif X%%PORTDOCS%%%%DOCSDIR%%/html/analysisview.png X%%PORTDOCS%%%%DOCSDIR%%/html/app.html X%%PORTDOCS%%%%DOCSDIR%%/html/aqx_linux_visualizacao_peq.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/arithmedrill-screenshot.png X%%PORTDOCS%%%%DOCSDIR%%/html/arithmedrill-screenshot_small.png X%%PORTDOCS%%%%DOCSDIR%%/html/bigpenguin.png X%%PORTDOCS%%%%DOCSDIR%%/html/boskalisday.gif X%%PORTDOCS%%%%DOCSDIR%%/html/boskalisnite.gif X%%PORTDOCS%%%%DOCSDIR%%/html/calc.html X%%PORTDOCS%%%%DOCSDIR%%/html/clipboard.html X%%PORTDOCS%%%%DOCSDIR%%/html/clview_icon.gif X%%PORTDOCS%%%%DOCSDIR%%/html/colordialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/cometassay.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/consulting.html X%%PORTDOCS%%%%DOCSDIR%%/html/contact.gif X%%PORTDOCS%%%%DOCSDIR%%/html/datatarget.html X%%PORTDOCS%%%%DOCSDIR%%/html/dirdialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/dlgedit1.png X%%PORTDOCS%%%%DOCSDIR%%/html/dlgedit2.png X%%PORTDOCS%%%%DOCSDIR%%/html/doc.html X%%PORTDOCS%%%%DOCSDIR%%/html/download.html X%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.cfg X%%PORTDOCS%%%%DOCSDIR%%/html/draganddrop.html X%%PORTDOCS%%%%DOCSDIR%%/html/emso_screen.png X%%PORTDOCS%%%%DOCSDIR%%/html/emso_screen_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/faq.html X%%PORTDOCS%%%%DOCSDIR%%/html/fifthplanet.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/filedialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/filefuncs.html X%%PORTDOCS%%%%DOCSDIR%%/html/filter.pl X%%PORTDOCS%%%%DOCSDIR%%/html/focus.html X%%PORTDOCS%%%%DOCSDIR%%/html/fontdialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/fonts.html X%%PORTDOCS%%%%DOCSDIR%%/html/footer.html X%%PORTDOCS%%%%DOCSDIR%%/html/foreword.html X%%PORTDOCS%%%%DOCSDIR%%/html/fox.gif X%%PORTDOCS%%%%DOCSDIR%%/html/fox.html X%%PORTDOCS%%%%DOCSDIR%%/html/foxcalc.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/foxcalc_prefdialog_01_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/foxcalc_prefdialog_02_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/foxcalc_prefdialog_03_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/foxlogo.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/foxlogo.png X%%PORTDOCS%%%%DOCSDIR%%/html/foxlogo_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/foxstart.png X%%PORTDOCS%%%%DOCSDIR%%/html/freespeach.gif X%%PORTDOCS%%%%DOCSDIR%%/html/glview.png X%%PORTDOCS%%%%DOCSDIR%%/html/goals.html X%%PORTDOCS%%%%DOCSDIR%%/html/goggles.png X%%PORTDOCS%%%%DOCSDIR%%/html/guiupdate.html X%%PORTDOCS%%%%DOCSDIR%%/html/header.html X%%PORTDOCS%%%%DOCSDIR%%/html/home.html X%%PORTDOCS%%%%DOCSDIR%%/html/icons.html X%%PORTDOCS%%%%DOCSDIR%%/html/ill.gif X%%PORTDOCS%%%%DOCSDIR%%/html/ilr.gif X%%PORTDOCS%%%%DOCSDIR%%/html/imagedebugger.gif X%%PORTDOCS%%%%DOCSDIR%%/html/innernerd.gif X%%PORTDOCS%%%%DOCSDIR%%/html/install.html X%%PORTDOCS%%%%DOCSDIR%%/html/introduction.html X%%PORTDOCS%%%%DOCSDIR%%/html/iul.gif X%%PORTDOCS%%%%DOCSDIR%%/html/iur.gif X%%PORTDOCS%%%%DOCSDIR%%/html/layout.gif X%%PORTDOCS%%%%DOCSDIR%%/html/layout.html X%%PORTDOCS%%%%DOCSDIR%%/html/license.html X%%PORTDOCS%%%%DOCSDIR%%/html/line.gif X%%PORTDOCS%%%%DOCSDIR%%/html/menu.css X%%PORTDOCS%%%%DOCSDIR%%/html/menu.html X%%PORTDOCS%%%%DOCSDIR%%/html/messages.html X%%PORTDOCS%%%%DOCSDIR%%/html/mouse.gif X%%PORTDOCS%%%%DOCSDIR%%/html/nerd_inside.gif X%%PORTDOCS%%%%DOCSDIR%%/html/news.html X%%PORTDOCS%%%%DOCSDIR%%/html/news1.html X%%PORTDOCS%%%%DOCSDIR%%/html/oldfox.html X%%PORTDOCS%%%%DOCSDIR%%/html/oll.gif X%%PORTDOCS%%%%DOCSDIR%%/html/olr.gif X%%PORTDOCS%%%%DOCSDIR%%/html/opengl_logo.png X%%PORTDOCS%%%%DOCSDIR%%/html/oul.gif X%%PORTDOCS%%%%DOCSDIR%%/html/oul_grey.gif X%%PORTDOCS%%%%DOCSDIR%%/html/our.gif X%%PORTDOCS%%%%DOCSDIR%%/html/page.css X%%PORTDOCS%%%%DOCSDIR%%/html/pathfinder.html X%%PORTDOCS%%%%DOCSDIR%%/html/pathfinder.png X%%PORTDOCS%%%%DOCSDIR%%/html/printdialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/progress.png X%%PORTDOCS%%%%DOCSDIR%%/html/projects.html X%%PORTDOCS%%%%DOCSDIR%%/html/references.html X%%PORTDOCS%%%%DOCSDIR%%/html/registry.html X%%PORTDOCS%%%%DOCSDIR%%/html/replacedialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/rex.html X%%PORTDOCS%%%%DOCSDIR%%/html/rezound_thumb.gif X%%PORTDOCS%%%%DOCSDIR%%/html/scenegraphnavigator.gif X%%PORTDOCS%%%%DOCSDIR%%/html/screenshots.html X%%PORTDOCS%%%%DOCSDIR%%/html/scribble.png X%%PORTDOCS%%%%DOCSDIR%%/html/scriptolutions.gif X%%PORTDOCS%%%%DOCSDIR%%/html/searchdialog.png X%%PORTDOCS%%%%DOCSDIR%%/html/serialization.html X%%PORTDOCS%%%%DOCSDIR%%/html/sgitextedit.png X%%PORTDOCS%%%%DOCSDIR%%/html/slingerzbutton1.gif X%%PORTDOCS%%%%DOCSDIR%%/html/ss1.png X%%PORTDOCS%%%%DOCSDIR%%/html/ss1_small.png X%%PORTDOCS%%%%DOCSDIR%%/html/ss2.png X%%PORTDOCS%%%%DOCSDIR%%/html/ss2_small.png X%%PORTDOCS%%%%DOCSDIR%%/html/ss3.png X%%PORTDOCS%%%%DOCSDIR%%/html/ss3_small.png X%%PORTDOCS%%%%DOCSDIR%%/html/styles.css X%%PORTDOCS%%%%DOCSDIR%%/html/table.png X%%PORTDOCS%%%%DOCSDIR%%/html/timers.html X%%PORTDOCS%%%%DOCSDIR%%/html/tmp_vision_snap.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/top.html X%%PORTDOCS%%%%DOCSDIR%%/html/tux.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/tux_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/udine_physics.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/vorhour1.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/vorhour1_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/vorhour2.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/vorhour2_small.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/widget.jpg X%%PORTDOCS%%%%DOCSDIR%%/html/widgets.html X%%PORTDOCS%%%%DOCSDIR%%/html/win32-libraries.png X%%PORTDOCS%%%%DOCSDIR%%/html/win32-linkoutput.png X%%PORTDOCS%%%%DOCSDIR%%/html/win32-postbuild.png X%%PORTDOCS%%%%DOCSDIR%%/html/win32-preprocessor.png X%%PORTDOCS%%%%DOCSDIR%%/html/win32-project.png X%%PORTDOCS%%%%DOCSDIR%%/html/win32-tooloptions.png X%%PORTDOCS%%%%DOCSDIR%%/html/win32.html X%%PORTDOCS%%%%DOCSDIR%%/html/window.html X%%PORTDOCS%%%%DOCSDIR%%/html/wintextedit.png X%%PORTDOCS%%%%DOCSDIR%%/html/xfe.png X%%PORTDOCS%%%%DOCSDIR%%/html/xfe_small.png X%%PORTDOCS%%%%DOCSDIR%%/html/xml.html X%%PORTDOCS%%@dirrm %%DOCSDIR%%/html X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm include/fox-%%MAJORVER%%/chart X@dirrm include/fox-%%MAJORVER%% END-of-fox12/pkg-plist exit --- fox-1.2.16.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507281552.j6SFqCGt059214>