git: 1b009496c574 - main - x11-toolkits/fox14: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Thu, 27 Jul 2023 19:34:59 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=1b009496c574b26976cd1ad3790f8354905700b9

commit 1b009496c574b26976cd1ad3790f8354905700b9
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2023-07-27 19:33:32 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2023-07-27 19:33:32 +0000

    x11-toolkits/fox14: Remove expired port
    
    2023-07-26 x11-toolkits/fox14: Obsolete leaf port, use x11-toolkits/fox(16,17) instead
---
 MOVED                                             |   1 +
 x11-toolkits/Makefile                             |   1 -
 x11-toolkits/fox14/Makefile                       | 132 ------------
 x11-toolkits/fox14/distinfo                       |   2 -
 x11-toolkits/fox14/files/patch-configure          |  11 -
 x11-toolkits/fox14/files/patch-src_FXFile.cpp     |  47 -----
 x11-toolkits/fox14/files/patch-src_FXGZStream.cpp |  29 ---
 x11-toolkits/fox14/files/patch-src_fxpngio.cpp    |  46 ----
 x11-toolkits/fox14/pkg-descr                      |   6 -
 x11-toolkits/fox14/pkg-plist                      | 246 ----------------------
 10 files changed, 1 insertion(+), 520 deletions(-)

diff --git a/MOVED b/MOVED
index ff67422697f4..6b72d4d6308a 100644
--- a/MOVED
+++ b/MOVED
@@ -7774,3 +7774,4 @@ graphics/gmic-qt@krita|graphics/krita-gmic-plugin|2023-07-14|Forked to a seperat
 devel/capstone5|devel/capstone|2023-07-15|Keep the latest version without any pkgnamesufix
 games/naev-data||2023-07-15|Remove obsoleted port. Now games/naev installs data files
 graphics/pecl-imagick-im7|graphics/pecl-imagick|2023-07-19|Merged into master port
+x11-toolkits/fox14||2023-07-27|Has expired: Obsolete leaf port, use x11-toolkits/fox(16,17) instead
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile
index ad7921f00e9b..79fc60282e7d 100644
--- a/x11-toolkits/Makefile
+++ b/x11-toolkits/Makefile
@@ -10,7 +10,6 @@
     SUBDIR += copperspice
     SUBDIR += ctk
     SUBDIR += fltk
-    SUBDIR += fox14
     SUBDIR += fox16
     SUBDIR += fox17
     SUBDIR += fpc-gtk2
diff --git a/x11-toolkits/fox14/Makefile b/x11-toolkits/fox14/Makefile
deleted file mode 100644
index 5dc149d40ce9..000000000000
--- a/x11-toolkits/fox14/Makefile
+++ /dev/null
@@ -1,132 +0,0 @@
-PORTNAME=	fox
-PORTVERSION=	1.4.35
-PORTREVISION=	15
-CATEGORIES=	x11-toolkits
-MASTER_SITES=	http://www.fox-toolkit.org/ftp/ \
-		ftp://ftp.fox-toolkit.org/pub/ \
-		http://fresh.t-systems-sfr.com/unix/src/misc/
-PKGNAMESUFFIX=	${PORTVERSION:R:S/.//}
-
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Fast and extensive C++ GUI toolkit
-WWW=		http://www.fox-toolkit.org/fox.html
-
-LICENSE=	LGPL21
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-DEPRECATED=		Obsolete leaf port, use x11-toolkits/fox(16|17) instead
-EXPIRATION_DATE=	2023-07-26
-
-LIB_DEPENDS=	libpng.so:graphics/png \
-		libtiff.so:graphics/tiff
-
-MAJORVER=	${PORTVERSION:R}
-SHVER=		${PORTVERSION:S/${MAJORVER}.//}
-PLIST_SUB+=	MAJORVER=${MAJORVER} SHVER=${SHVER}
-
-USES=		gl jpeg libtool localbase:ldflags
-USE_GL=		gl glu
-GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--with-opengl=yes \
-		--bindir=${PREFIX}/bin/${PORTNAME}-${MAJORVER} \
-		--enable-threadsafe
-CXXFLAGS+=	-Dregister=
-USE_LDCONFIG=	yes
-PORTDOCS=	*
-
-OPTIONS_DEFINE=	OPTIMIZED_CFLAGS CUPS DEBUG APPS PROFILE SHM XFT DOCS
-OPTIONS_DEFAULT=SHM XFT
-APPS_DESC=	Install sample applications
-SHM_DESC=	Shared Memory support
-
-.include <bsd.port.options.mk>
-
-##
-## Additional Options
-##
-#
-.if ${PORT_OPTIONS:MXFT}
-CONFIGURE_ARGS+=--with-xft=yes
-USES+=		xorg
-USE_XORG+=	xft
-CPPFLAGS+=	`freetype-config --cflags`
-LDFLAGS+=	`freetype-config --libs`
-.else
-CONFIGURE_ARGS+=	--with-xft=no
-.endif
-#
-.if ${PORT_OPTIONS:MSHM}
-CONFIGURE_ARGS+=	--with-xshm=yes
-.else
-CONFIGURE_ARGS+=	--with-xshm=no
-.endif
-#
-.if ${PORT_OPTIONS:MCUPS}
-LIB_DEPENDS+=	libcups.so:print/cups
-CONFIGURE_ARGS+=	--enable-cups
-.else
-CONFIGURE_ARGS+=	--disable-cups
-.endif
-#
-.if ${PORT_OPTIONS:MDEBUG}
-CONFIGURE_ARGS+=	--enable-debug
-.else
-CONFIGURE_ARGS+=	--enable-release
-.endif
-#
-.if ${PORT_OPTIONS:MAPPS}
-PLIST_SUB+=	APPS=""
-.else
-PLIST_SUB+=	APPS="@comment "
-.endif
-#
-.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
-# turn distribution-recommended optimization flags back on
-CXXFLAGS+=	-O2 -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations
-.endif
-#
-.if ${PORT_OPTIONS:MPROFILE}
-CONFIGURE_ARGS+=	--with-profiling=gprof
-.endif
-
-post-patch:
-# Rename man pages as in manpage.1 --> manpage-14.1 to avoid
-# conflicts with fox16 and fox17
-	files=$$(${FIND} ${WRKSRC} -name *.1); \
-	for f in $$files; do \
-		${MV} $$f `echo $$f | ${SED} -e 's|\.1|-14.1|'`; \
-	done;
-	${FIND} ${WRKSRC} -name Makefile.am -o -name Makefile.in | ${XARGS} \
-	    ${REINPLACE_CMD} -i '' -e '/man_MANS/s|\.1|-14.1|g'
-# CXXFLAGS safeness
-	@${REINPLACE_CMD} -E -e \
-		's|-O2|${CXXFLAGS}|g ; \
-		 s|-lc_r|-lpthread|g' \
-		${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
-# 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
-
-post-patch-DOCS-off:
-	@${REINPLACE_CMD} -e \
-		'/^SUBDIRS/s/ doc//' \
-		${WRKSRC}/Makefile.in
-
-post-patch-APPS-off:
-	@${REINPLACE_CMD} -E -e \
-		's,^(SUBDIRS.*)adie,\1,; \
-		s,^(SUBDIRS.*)pathfinder,\1,; \
-		s,^(SUBDIRS.*)calculator,\1,' \
-		${WRKSRC}/Makefile.in
-
-post-install:
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
-
-.include <bsd.port.mk>
diff --git a/x11-toolkits/fox14/distinfo b/x11-toolkits/fox14/distinfo
deleted file mode 100644
index 2f37749c68e3..000000000000
--- a/x11-toolkits/fox14/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (fox-1.4.35.tar.gz) = c94e330047193440e446fc6a8185a266265cef3fbb8584405df8cf4b34ae1894
-SIZE (fox-1.4.35.tar.gz) = 4026552
diff --git a/x11-toolkits/fox14/files/patch-configure b/x11-toolkits/fox14/files/patch-configure
deleted file mode 100644
index a7675b6d3a31..000000000000
--- a/x11-toolkits/fox14/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig	Tue Mar 21 07:09:23 2006
-+++ configure	Wed May 24 01:06:39 2006
-@@ -25469,7 +25469,7 @@
- if test "x$enable_release" = "xyes" ; then
- CXXFLAGS="${CXXFLAGS} -O2 -DNDEBUG"
- if test "${GXX}" = "yes" ; then
--CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -fno-strict-aliasing -finline-functions -fomit-frame-pointer -fexpensive-optimizations"
-+CXXFLAGS="${CXXFLAGS} -Wuninitialized"
- fi
- fi
- 
diff --git a/x11-toolkits/fox14/files/patch-src_FXFile.cpp b/x11-toolkits/fox14/files/patch-src_FXFile.cpp
deleted file mode 100644
index 44f33e7947d7..000000000000
--- a/x11-toolkits/fox14/files/patch-src_FXFile.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
---- src/FXFile.cpp.orig	Sat Feb  5 13:10:50 2005
-+++ src/FXFile.cpp	Wed Feb  9 17:40:15 2005
-@@ -102,7 +102,7 @@
- // Get current user name
- FXString FXFile::getCurrentUserName(){
- #ifndef WIN32
--#ifdef FOX_THREAD_SAFE
-+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__)
-   struct passwd pwdresult,*pwd;
-   char buffer[1024];
-   if(getpwuid_r(geteuid(),&pwdresult,buffer,sizeof(buffer),&pwd)==0 && pwd) return pwd->pw_name;
-@@ -180,7 +180,7 @@
- // Get home directory for a given user
- FXString FXFile::getUserDirectory(const FXString& user){
- #ifndef WIN32
--#ifdef FOX_THREAD_SAFE
-+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__)
-   struct passwd pwdresult,*pwd;
-   char buffer[1024];
-   if(user.empty()){
-@@ -1059,7 +1059,7 @@
- FXString FXFile::owner(FXuint uid){
-   FXchar result[64];
- #ifndef WIN32
--#ifdef FOX_THREAD_SAFE
-+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__)
-   struct passwd pwdresult,*pwd;
-   char buffer[1024];
-   if(getpwuid_r(uid,&pwdresult,buffer,sizeof(buffer),&pwd)==0 && pwd) return pwd->pw_name;
-@@ -1077,7 +1077,7 @@
- FXString FXFile::group(FXuint gid){
-   FXchar result[64];
- #ifndef WIN32
--#ifdef FOX_THREAD_SAFE
-+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__)
-   ::group grpresult;
-   ::group *grp;
-   char buffer[1024];
-@@ -1435,7 +1435,7 @@
- // Convert file time to string as per strftime format
- FXString FXFile::time(const FXchar *format,FXTime filetime){
- #ifndef WIN32
--#ifdef FOX_THREAD_SAFE
-+#if defined(FOX_THREAD_SAFE) && !defined(__FreeBSD__)
-   time_t tmp=(time_t)FXMAX(filetime,0);
-   struct tm tmresult;
-   FXchar buffer[512];
diff --git a/x11-toolkits/fox14/files/patch-src_FXGZStream.cpp b/x11-toolkits/fox14/files/patch-src_FXGZStream.cpp
deleted file mode 100644
index e267cd54a25f..000000000000
--- a/x11-toolkits/fox14/files/patch-src_FXGZStream.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/FXGZStream.cpp.orig	2012-10-03 10:13:33.000000000 +0200
-+++ src/FXGZStream.cpp	2012-10-03 10:15:57.000000000 +0200
-@@ -60,7 +60,7 @@
-   FXASSERT(wrptr<=endptr);
-   if(code==FXStreamOK){
-     m=wrptr-rdptr;
--    n=gzwrite((gzFile*)file,rdptr,m);
-+    n=gzwrite((gzFile)file,rdptr,m);
-     if(0<n){
-       m-=n;
-       if(m){memmove(begptr,rdptr+n,m);}
-@@ -85,7 +85,7 @@
-     if(m){memmove(begptr,rdptr,m);}
-     rdptr=begptr;
-     wrptr=begptr+m;
--    n=gzread((gzFile*)file,wrptr,endptr-wrptr);
-+    n=gzread((gzFile)file,wrptr,endptr-wrptr);
-     if(0<n){
-       wrptr+=n;
-       }
-@@ -117,7 +117,7 @@
- FXbool FXGZFileStream::close(){
-   if(dir){
-     if(dir==FXStreamSave) flush();
--    gzclose((gzFile*)file);
-+    gzclose((gzFile)file);
-     return FXStream::close();
-     }
-   return FALSE;
diff --git a/x11-toolkits/fox14/files/patch-src_fxpngio.cpp b/x11-toolkits/fox14/files/patch-src_fxpngio.cpp
deleted file mode 100644
index b1854671bad9..000000000000
--- a/x11-toolkits/fox14/files/patch-src_fxpngio.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
---- src/fxpngio.cpp.orig	2005-11-19 21:22:25.000000000 +0100
-+++ src/fxpngio.cpp	2012-05-07 07:11:22.000000000 +0200
-@@ -21,13 +21,13 @@
- *********************************************************************************
- * $Id: fxpngio.cpp,v 1.35.2.1 2005/11/19 20:22:25 fox Exp $                         *
- ********************************************************************************/
-+#ifdef HAVE_PNG_H
-+#include "png.h"
-+#endif
- #include "fxver.h"
- #include "fxdefs.h"
- #include "FXHash.h"
- #include "FXStream.h"
--#ifdef HAVE_PNG_H
--#include "png.h"
--#endif
- 
- /*
-   Notes:
-@@ -76,7 +76,7 @@
-   FXStream* store=(FXStream*)png_get_error_ptr(png_ptr);
-   store->setError(FXStreamFormat);                      // Flag this as a format error in FXStream
-   FXTRACE((100,"Error in png: %s\n",message));
--  longjmp(png_ptr->jmpbuf,1);                           // Bail out
-+  longjmp(png_jmpbuf(png_ptr),1);                           // Bail out
-   }
- 
- 
-@@ -121,7 +121,7 @@
-     }
- 
-   // Set error handling
--  if(setjmp(png_ptr->jmpbuf)){
-+  if(setjmp(png_jmpbuf(png_ptr))){
- 
-     // Free all of the memory associated with the png_ptr and info_ptr
-     png_destroy_read_struct(&png_ptr,&info_ptr,(png_infopp)NULL);
-@@ -234,7 +234,7 @@
-     }
- 
-   // Set error handling.
--  if(setjmp(png_ptr->jmpbuf)){
-+  if(setjmp(png_jmpbuf(png_ptr))){
-     png_destroy_write_struct(&png_ptr,&info_ptr);
-     return FALSE;
-     }
diff --git a/x11-toolkits/fox14/pkg-descr b/x11-toolkits/fox14/pkg-descr
deleted file mode 100644
index 4d3dc2283aad..000000000000
--- a/x11-toolkits/fox14/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-FOX is a C++ GUI toolkit that is supposed to
-allow programmers to write a program once, and
-compile anywhere (or so the website says, it sounds
-like Java to me). FOX is a very flexible library,
-it has all sorts of functions and options, and is
-supposed to be fairly fast.
diff --git a/x11-toolkits/fox14/pkg-plist b/x11-toolkits/fox14/pkg-plist
deleted file mode 100644
index e3fe406a2f3d..000000000000
--- a/x11-toolkits/fox14/pkg-plist
+++ /dev/null
@@ -1,246 +0,0 @@
-%%APPS%%bin/fox-%%MAJORVER%%/PathFinder
-%%APPS%%bin/fox-%%MAJORVER%%/adie
-%%APPS%%bin/fox-%%MAJORVER%%/calculator
-bin/fox-%%MAJORVER%%/fox-config
-bin/fox-%%MAJORVER%%/reswrap
-bin/fox-%%MAJORVER%%/shutterbug
-include/fox-%%MAJORVER%%/FX4Splitter.h
-include/fox-%%MAJORVER%%/FX7Segment.h
-include/fox-%%MAJORVER%%/FXAccelTable.h
-include/fox-%%MAJORVER%%/FXApp.h
-include/fox-%%MAJORVER%%/FXArray.h
-include/fox-%%MAJORVER%%/FXArrowButton.h
-include/fox-%%MAJORVER%%/FXBMPIcon.h
-include/fox-%%MAJORVER%%/FXBMPImage.h
-include/fox-%%MAJORVER%%/FXBZStream.h
-include/fox-%%MAJORVER%%/FXBitmap.h
-include/fox-%%MAJORVER%%/FXBitmapFrame.h
-include/fox-%%MAJORVER%%/FXBitmapView.h
-include/fox-%%MAJORVER%%/FXButton.h
-include/fox-%%MAJORVER%%/FXCURCursor.h
-include/fox-%%MAJORVER%%/FXCanvas.h
-include/fox-%%MAJORVER%%/FXCheckButton.h
-include/fox-%%MAJORVER%%/FXChoiceBox.h
-include/fox-%%MAJORVER%%/FXColorBar.h
-include/fox-%%MAJORVER%%/FXColorDialog.h
-include/fox-%%MAJORVER%%/FXColorSelector.h
-include/fox-%%MAJORVER%%/FXColorWell.h
-include/fox-%%MAJORVER%%/FXColorWheel.h
-include/fox-%%MAJORVER%%/FXComboBox.h
-include/fox-%%MAJORVER%%/FXComposite.h
-include/fox-%%MAJORVER%%/FXCursor.h
-include/fox-%%MAJORVER%%/FXDC.h
-include/fox-%%MAJORVER%%/FXDCPrint.h
-include/fox-%%MAJORVER%%/FXDCWindow.h
-include/fox-%%MAJORVER%%/FXDLL.h
-include/fox-%%MAJORVER%%/FXDataTarget.h
-include/fox-%%MAJORVER%%/FXDebugTarget.h
-include/fox-%%MAJORVER%%/FXDelegator.h
-include/fox-%%MAJORVER%%/FXDial.h
-include/fox-%%MAJORVER%%/FXDialogBox.h
-include/fox-%%MAJORVER%%/FXDict.h
-include/fox-%%MAJORVER%%/FXDirBox.h
-include/fox-%%MAJORVER%%/FXDirDialog.h
-include/fox-%%MAJORVER%%/FXDirList.h
-include/fox-%%MAJORVER%%/FXDirSelector.h
-include/fox-%%MAJORVER%%/FXDockBar.h
-include/fox-%%MAJORVER%%/FXDockHandler.h
-include/fox-%%MAJORVER%%/FXDockSite.h
-include/fox-%%MAJORVER%%/FXDockTitle.h
-include/fox-%%MAJORVER%%/FXDocument.h
-include/fox-%%MAJORVER%%/FXDragCorner.h
-include/fox-%%MAJORVER%%/FXDrawable.h
-include/fox-%%MAJORVER%%/FXDriveBox.h
-include/fox-%%MAJORVER%%/FXElement.h
-include/fox-%%MAJORVER%%/FXException.h
-include/fox-%%MAJORVER%%/FXFile.h
-include/fox-%%MAJORVER%%/FXFileDialog.h
-include/fox-%%MAJORVER%%/FXFileDict.h
-include/fox-%%MAJORVER%%/FXFileList.h
-include/fox-%%MAJORVER%%/FXFileSelector.h
-include/fox-%%MAJORVER%%/FXFileStream.h
-include/fox-%%MAJORVER%%/FXFoldingList.h
-include/fox-%%MAJORVER%%/FXFont.h
-include/fox-%%MAJORVER%%/FXFontDialog.h
-include/fox-%%MAJORVER%%/FXFontSelector.h
-include/fox-%%MAJORVER%%/FXFrame.h
-include/fox-%%MAJORVER%%/FXGIFCursor.h
-include/fox-%%MAJORVER%%/FXGIFIcon.h
-include/fox-%%MAJORVER%%/FXGIFImage.h
-include/fox-%%MAJORVER%%/FXGLCanvas.h
-include/fox-%%MAJORVER%%/FXGLCone.h
-include/fox-%%MAJORVER%%/FXGLContext.h
-include/fox-%%MAJORVER%%/FXGLCube.h
-include/fox-%%MAJORVER%%/FXGLCylinder.h
-include/fox-%%MAJORVER%%/FXGLObject.h
-include/fox-%%MAJORVER%%/FXGLShape.h
-include/fox-%%MAJORVER%%/FXGLSphere.h
-include/fox-%%MAJORVER%%/FXGLTriangleMesh.h
-include/fox-%%MAJORVER%%/FXGLViewer.h
-include/fox-%%MAJORVER%%/FXGLVisual.h
-include/fox-%%MAJORVER%%/FXGUISignal.h
-include/fox-%%MAJORVER%%/FXGZStream.h
-include/fox-%%MAJORVER%%/FXGradientBar.h
-include/fox-%%MAJORVER%%/FXGroupBox.h
-include/fox-%%MAJORVER%%/FXHash.h
-include/fox-%%MAJORVER%%/FXHeader.h
-include/fox-%%MAJORVER%%/FXHorizontalFrame.h
-include/fox-%%MAJORVER%%/FXICOIcon.h
-include/fox-%%MAJORVER%%/FXICOImage.h
-include/fox-%%MAJORVER%%/FXIFFIcon.h
-include/fox-%%MAJORVER%%/FXIFFImage.h
-include/fox-%%MAJORVER%%/FXIcon.h
-include/fox-%%MAJORVER%%/FXIconDict.h
-include/fox-%%MAJORVER%%/FXIconList.h
-include/fox-%%MAJORVER%%/FXIconSource.h
-include/fox-%%MAJORVER%%/FXId.h
-include/fox-%%MAJORVER%%/FXImage.h
-include/fox-%%MAJORVER%%/FXImageFrame.h
-include/fox-%%MAJORVER%%/FXImageView.h
-include/fox-%%MAJORVER%%/FXInputDialog.h
-include/fox-%%MAJORVER%%/FXJPGIcon.h
-include/fox-%%MAJORVER%%/FXJPGImage.h
-include/fox-%%MAJORVER%%/FXLabel.h
-include/fox-%%MAJORVER%%/FXList.h
-include/fox-%%MAJORVER%%/FXListBox.h
-include/fox-%%MAJORVER%%/FXMDIButton.h
-include/fox-%%MAJORVER%%/FXMDIChild.h
-include/fox-%%MAJORVER%%/FXMDIClient.h
-include/fox-%%MAJORVER%%/FXMainWindow.h
-include/fox-%%MAJORVER%%/FXMat3d.h
-include/fox-%%MAJORVER%%/FXMat3f.h
-include/fox-%%MAJORVER%%/FXMat4d.h
-include/fox-%%MAJORVER%%/FXMat4f.h
-include/fox-%%MAJORVER%%/FXMatrix.h
-include/fox-%%MAJORVER%%/FXMemMap.h
-include/fox-%%MAJORVER%%/FXMemoryStream.h
-include/fox-%%MAJORVER%%/FXMenuBar.h
-include/fox-%%MAJORVER%%/FXMenuButton.h
-include/fox-%%MAJORVER%%/FXMenuCaption.h
-include/fox-%%MAJORVER%%/FXMenuCascade.h
-include/fox-%%MAJORVER%%/FXMenuCheck.h
-include/fox-%%MAJORVER%%/FXMenuCommand.h
-include/fox-%%MAJORVER%%/FXMenuPane.h
-include/fox-%%MAJORVER%%/FXMenuRadio.h
-include/fox-%%MAJORVER%%/FXMenuSeparator.h
-include/fox-%%MAJORVER%%/FXMenuTitle.h
-include/fox-%%MAJORVER%%/FXMessageBox.h
-include/fox-%%MAJORVER%%/FXObject.h
-include/fox-%%MAJORVER%%/FXObjectList.h
-include/fox-%%MAJORVER%%/FXOptionMenu.h
-include/fox-%%MAJORVER%%/FXPCXIcon.h
-include/fox-%%MAJORVER%%/FXPCXImage.h
-include/fox-%%MAJORVER%%/FXPNGIcon.h
-include/fox-%%MAJORVER%%/FXPNGImage.h
-include/fox-%%MAJORVER%%/FXPPMIcon.h
-include/fox-%%MAJORVER%%/FXPPMImage.h
-include/fox-%%MAJORVER%%/FXPacker.h
-include/fox-%%MAJORVER%%/FXPicker.h
-include/fox-%%MAJORVER%%/FXPoint.h
-include/fox-%%MAJORVER%%/FXPopup.h
-include/fox-%%MAJORVER%%/FXPrintDialog.h
-include/fox-%%MAJORVER%%/FXProgressBar.h
-include/fox-%%MAJORVER%%/FXProgressDialog.h
-include/fox-%%MAJORVER%%/FXQuatd.h
-include/fox-%%MAJORVER%%/FXQuatf.h
-include/fox-%%MAJORVER%%/FXRASIcon.h
-include/fox-%%MAJORVER%%/FXRASImage.h
-include/fox-%%MAJORVER%%/FXRGBIcon.h
-include/fox-%%MAJORVER%%/FXRGBImage.h
-include/fox-%%MAJORVER%%/FXRadioButton.h
-include/fox-%%MAJORVER%%/FXRanged.h
-include/fox-%%MAJORVER%%/FXRangef.h
-include/fox-%%MAJORVER%%/FXRealSlider.h
-include/fox-%%MAJORVER%%/FXRealSpinner.h
-include/fox-%%MAJORVER%%/FXRecentFiles.h
-include/fox-%%MAJORVER%%/FXRectangle.h
-include/fox-%%MAJORVER%%/FXRegion.h
-include/fox-%%MAJORVER%%/FXRegistry.h
-include/fox-%%MAJORVER%%/FXReplaceDialog.h
-include/fox-%%MAJORVER%%/FXRex.h
-include/fox-%%MAJORVER%%/FXRootWindow.h
-include/fox-%%MAJORVER%%/FXRuler.h
-include/fox-%%MAJORVER%%/FXScrollArea.h
-include/fox-%%MAJORVER%%/FXScrollBar.h
-include/fox-%%MAJORVER%%/FXScrollPane.h
-include/fox-%%MAJORVER%%/FXScrollWindow.h
-include/fox-%%MAJORVER%%/FXSearchDialog.h
-include/fox-%%MAJORVER%%/FXSeparator.h
-include/fox-%%MAJORVER%%/FXSettings.h
-include/fox-%%MAJORVER%%/FXShell.h
-include/fox-%%MAJORVER%%/FXShutter.h
-include/fox-%%MAJORVER%%/FXSize.h
-include/fox-%%MAJORVER%%/FXSlider.h
-include/fox-%%MAJORVER%%/FXSphered.h
-include/fox-%%MAJORVER%%/FXSpheref.h
-include/fox-%%MAJORVER%%/FXSpinner.h
-include/fox-%%MAJORVER%%/FXSplashWindow.h
-include/fox-%%MAJORVER%%/FXSplitter.h
-include/fox-%%MAJORVER%%/FXSpring.h
-include/fox-%%MAJORVER%%/FXStatusBar.h
-include/fox-%%MAJORVER%%/FXStatusLine.h
-include/fox-%%MAJORVER%%/FXStream.h
-include/fox-%%MAJORVER%%/FXString.h
-include/fox-%%MAJORVER%%/FXStringDict.h
-include/fox-%%MAJORVER%%/FXSwitcher.h
-include/fox-%%MAJORVER%%/FXTGAIcon.h
-include/fox-%%MAJORVER%%/FXTGAImage.h
-include/fox-%%MAJORVER%%/FXTIFIcon.h
-include/fox-%%MAJORVER%%/FXTIFImage.h
-include/fox-%%MAJORVER%%/FXTabBar.h
-include/fox-%%MAJORVER%%/FXTabBook.h
-include/fox-%%MAJORVER%%/FXTabItem.h
-include/fox-%%MAJORVER%%/FXTable.h
-include/fox-%%MAJORVER%%/FXText.h
-include/fox-%%MAJORVER%%/FXTextCodec.h
-include/fox-%%MAJORVER%%/FXTextField.h
-include/fox-%%MAJORVER%%/FXThread.h
-include/fox-%%MAJORVER%%/FXToggleButton.h
-include/fox-%%MAJORVER%%/FXToolBar.h
-include/fox-%%MAJORVER%%/FXToolBarGrip.h
-include/fox-%%MAJORVER%%/FXToolBarShell.h
-include/fox-%%MAJORVER%%/FXToolBarTab.h
-include/fox-%%MAJORVER%%/FXToolTip.h
-include/fox-%%MAJORVER%%/FXTopWindow.h
-include/fox-%%MAJORVER%%/FXTreeList.h
-include/fox-%%MAJORVER%%/FXTreeListBox.h
-include/fox-%%MAJORVER%%/FXTriStateButton.h
-include/fox-%%MAJORVER%%/FXURL.h
-include/fox-%%MAJORVER%%/FXUTF16Codec.h
-include/fox-%%MAJORVER%%/FXUTF32Codec.h
-include/fox-%%MAJORVER%%/FXUTF8Codec.h
-include/fox-%%MAJORVER%%/FXUndoList.h
-include/fox-%%MAJORVER%%/FXVec2d.h
-include/fox-%%MAJORVER%%/FXVec2f.h
-include/fox-%%MAJORVER%%/FXVec3d.h
-include/fox-%%MAJORVER%%/FXVec3f.h
-include/fox-%%MAJORVER%%/FXVec4d.h
-include/fox-%%MAJORVER%%/FXVec4f.h
-include/fox-%%MAJORVER%%/FXVerticalFrame.h
-include/fox-%%MAJORVER%%/FXVisual.h
-include/fox-%%MAJORVER%%/FXWindow.h
-include/fox-%%MAJORVER%%/FXWizard.h
-include/fox-%%MAJORVER%%/FXXBMIcon.h
-include/fox-%%MAJORVER%%/FXXBMImage.h
-include/fox-%%MAJORVER%%/FXXPMIcon.h
-include/fox-%%MAJORVER%%/FXXPMImage.h
-include/fox-%%MAJORVER%%/chart/FXChart.h
-include/fox-%%MAJORVER%%/fx.h
-include/fox-%%MAJORVER%%/fx3d.h
-include/fox-%%MAJORVER%%/fxdefs.h
-include/fox-%%MAJORVER%%/fxkeys.h
-include/fox-%%MAJORVER%%/fxver.h
-include/fox-%%MAJORVER%%/xincs.h
-lib/libCHART-%%MAJORVER%%.a
-lib/libCHART-%%MAJORVER%%.so
-lib/libCHART-%%MAJORVER%%.so.0
-lib/libCHART-%%MAJORVER%%.so.0.0.%%SHVER%%
-lib/libFOX-%%MAJORVER%%.a
-lib/libFOX-%%MAJORVER%%.so
-lib/libFOX-%%MAJORVER%%.so.0
-lib/libFOX-%%MAJORVER%%.so.0.0.%%SHVER%%
-man/man1/shutterbug-14.1.gz
-man/man1/reswrap-14.1.gz
-%%APPS%%man/man1/PathFinder-14.1.gz
-%%APPS%%man/man1/adie-14.1.gz
-%%APPS%%man/man1/calculator-14.1.gz