diff options
author | oliver <oliver@FreeBSD.org> | 2007-10-11 23:31:13 +0800 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2007-10-11 23:31:13 +0800 |
commit | f8424a4fcd53e1205459b3655b4f898f0ab02cf2 (patch) | |
tree | 61f8e57dd2fedab73f33b23ff416ee400aa42aa5 /graphics | |
parent | 5f50ec752979321e9736ca127a3eb86bdb808eae (diff) | |
download | freebsd-ports-gnome-f8424a4fcd53e1205459b3655b4f898f0ab02cf2.tar.gz freebsd-ports-gnome-f8424a4fcd53e1205459b3655b4f898f0ab02cf2.tar.zst freebsd-ports-gnome-f8424a4fcd53e1205459b3655b4f898f0ab02cf2.zip |
rempove graphics/cegui04 and graphics/ogre3d12
Both ports where exclusively created by repocopy to fulfil games/fwp's
dependencies. Since games/fwp got deleted, there is no need for both
ports to stay in our portstree
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 2 | ||||
-rw-r--r-- | graphics/cegui04/Makefile | 56 | ||||
-rw-r--r-- | graphics/cegui04/distinfo | 3 | ||||
-rw-r--r-- | graphics/cegui04/pkg-descr | 7 | ||||
-rw-r--r-- | graphics/cegui04/pkg-plist | 192 | ||||
-rw-r--r-- | graphics/ogre3d12/Makefile | 75 | ||||
-rw-r--r-- | graphics/ogre3d12/distinfo | 3 | ||||
-rw-r--r-- | graphics/ogre3d12/pkg-descr | 8 | ||||
-rw-r--r-- | graphics/ogre3d12/pkg-plist | 248 |
9 files changed, 0 insertions, 594 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index 1e1bebef1ce1..3e7b154f1263 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -56,7 +56,6 @@ SUBDIR += cbrpager SUBDIR += cbview SUBDIR += cegui - SUBDIR += cegui04 SUBDIR += cenon SUBDIR += chbg SUBDIR += cimg @@ -443,7 +442,6 @@ SUBDIR += ocre SUBDIR += oglext SUBDIR += ogre3d - SUBDIR += ogre3d12 SUBDIR += openclipart SUBDIR += opencv SUBDIR += opendis diff --git a/graphics/cegui04/Makefile b/graphics/cegui04/Makefile deleted file mode 100644 index 7ab01cf5fe9b..000000000000 --- a/graphics/cegui04/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -# New ports collection makefile for: cegui -# Date created: 03 Oct 2005 -# Whom: Oliver Lehmann <oliver@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= cegui -PORTVERSION= 0.4.1 -PORTREVISION= 5 -CATEGORIES= graphics devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=crayzedsgui -DISTNAME= ${PORTNAME}_mk2-source-${PORTVERSION} - -MAINTAINER= oliver@FreeBSD.org -COMMENT= A library providing windowing and widgets for graphics APIs - -LIB_DEPENDS= IL.1:${PORTSDIR}/graphics/devil - -LATEST_LINK= cegui04 -WRKSRC= ${WRKDIR}/${PORTNAME}_mk2 -CONFIGURE_ARGS= --without-xerces-c -GNU_CONFIGURE= YES -USE_LDCONFIG= YES -USE_BZIP2= YES -USE_GL= YES -USE_XLIB= YES -USE_GNOME= gnomehack - -post-patch: - @${REINPLACE_CMD} -e ' \ - s|"-lILU.*"|"-lm -L${LOCALBASE}/lib -lILU -lIL $$LIBS"|g; \ - s|-lpthread|${PTHREAD_LIBS}|g; \ - s|DevIL_CFLAGS=.*|DevIL_CFLAGS="-DUSE_DEVIL_LIBRARY -I${LOCALBASE}/include"|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's| Samples$$||g' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \ - ${WRKSRC}/include/CEGUIDataContainer.h - @${REINPLACE_CMD} -e 's|__linux__)|& \|\| defined(__FreeBSD__)|g' \ - ${WRKSRC}/include/CEGUIFactoryModule.h \ - ${WRKSRC}/src/CEGUIFactoryModule.cpp - @${REINPLACE_CMD} -e 's|(linux)|& \|\| defined(__FreeBSD__)|g' \ - ${WRKSRC}/Samples/common/src/CEGuiSample.cpp - @${REINPLACE_CMD} -e 's|ILvoid|void|g' \ - ${WRKSRC}/src/renderers/OpenGLGUIRenderer/opengltexture.cpp - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for docfile in README COPYING AUTHORS ChangeLog TODO - @${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/graphics/cegui04/distinfo b/graphics/cegui04/distinfo deleted file mode 100644 index 29d37c06bae3..000000000000 --- a/graphics/cegui04/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (cegui_mk2-source-0.4.1.tar.bz2) = 7b1df5ba4dd91376b79bd5968a429e23 -SHA256 (cegui_mk2-source-0.4.1.tar.bz2) = a3bdd7f528daa97d2e432994ef249c61b951137aa54aa59dfd04656e3be67d11 -SIZE (cegui_mk2-source-0.4.1.tar.bz2) = 7393348 diff --git a/graphics/cegui04/pkg-descr b/graphics/cegui04/pkg-descr deleted file mode 100644 index cc79561b9a3a..000000000000 --- a/graphics/cegui04/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Crazy Eddie's GUI System is a free library providing windowing and widgets for -graphics APIs / engines where such functionality is not natively available, or -severely lacking. The library is object orientated, written in C++, and -targeted at games developers who should be spending their time creating great -games, not building GUI sub-systems! - -WWW: http://www.cegui.org.uk diff --git a/graphics/cegui04/pkg-plist b/graphics/cegui04/pkg-plist deleted file mode 100644 index 3bf28b65441f..000000000000 --- a/graphics/cegui04/pkg-plist +++ /dev/null @@ -1,192 +0,0 @@ -include/CEGUI/CEGUI.h -include/CEGUI/CEGUIBase.h -include/CEGUI/CEGUIColourRect.h -include/CEGUI/CEGUIConfig.h -include/CEGUI/CEGUIConfig_xmlHandler.h -include/CEGUI/CEGUIDataContainer.h -include/CEGUI/CEGUIDefaultResourceProvider.h -include/CEGUI/CEGUIEvent.h -include/CEGUI/CEGUIEventArgs.h -include/CEGUI/CEGUIEventSet.h -include/CEGUI/CEGUIExceptions.h -include/CEGUI/CEGUIFactoryModule.h -include/CEGUI/CEGUIFont.h -include/CEGUI/CEGUIFontManager.h -include/CEGUI/CEGUIFont_xmlHandler.h -include/CEGUI/CEGUIForwardRefs.h -include/CEGUI/CEGUIGUILayout_xmlHandler.h -include/CEGUI/CEGUIGlobalEventSet.h -include/CEGUI/CEGUIImage.h -include/CEGUI/CEGUIImageset.h -include/CEGUI/CEGUIImagesetManager.h -include/CEGUI/CEGUIImageset_xmlHandler.h -include/CEGUI/CEGUIInputEvent.h -include/CEGUI/CEGUIIteratorBase.h -include/CEGUI/CEGUILogger.h -include/CEGUI/CEGUILua.h -include/CEGUI/CEGUIMouseCursor.h -include/CEGUI/CEGUIProperty.h -include/CEGUI/CEGUIPropertyHelper.h -include/CEGUI/CEGUIPropertySet.h -include/CEGUI/CEGUIRect.h -include/CEGUI/CEGUIRefPtr.h -include/CEGUI/CEGUIRenderableElement.h -include/CEGUI/CEGUIRenderableFrame.h -include/CEGUI/CEGUIRenderableImage.h -include/CEGUI/CEGUIRenderer.h -include/CEGUI/CEGUIRenderCache.h -include/CEGUI/CEGUIResourceProvider.h -include/CEGUI/CEGUIScheme.h -include/CEGUI/CEGUISchemeManager.h -include/CEGUI/CEGUIScheme_xmlHandler.h -include/CEGUI/CEGUIScriptModule.h -include/CEGUI/CEGUISingleton.h -include/CEGUI/CEGUISize.h -include/CEGUI/CEGUIString.h -include/CEGUI/CEGUISystem.h -include/CEGUI/CEGUITextUtils.h -include/CEGUI/CEGUITexture.h -include/CEGUI/CEGUIUDim.h -include/CEGUI/CEGUIVector.h -include/CEGUI/CEGUIVersion.h -include/CEGUI/CEGUIWindow.h -include/CEGUI/CEGUIWindowFactory.h -include/CEGUI/CEGUIWindowFactoryManager.h -include/CEGUI/CEGUIWindowManager.h -include/CEGUI/CEGUIWindowProperties.h -include/CEGUI/CEGUIXMLAttributes.h -include/CEGUI/CEGUIXMLHandler.h -include/CEGUI/CEGUIXMLParser.h -include/CEGUI/CEGUIcolour.h -include/CEGUI/elements/CEGUIButtonBase.h -include/CEGUI/elements/CEGUIButtonBaseProperties.h -include/CEGUI/elements/CEGUICheckbox.h -include/CEGUI/elements/CEGUICheckboxProperties.h -include/CEGUI/elements/CEGUIComboDropList.h -include/CEGUI/elements/CEGUICombobox.h -include/CEGUI/elements/CEGUIComboboxProperties.h -include/CEGUI/elements/CEGUIDragContainer.h -include/CEGUI/elements/CEGUIDragContainerProperties.h -include/CEGUI/elements/CEGUIEditbox.h -include/CEGUI/elements/CEGUIEditboxProperties.h -include/CEGUI/elements/CEGUIFrameWindow.h -include/CEGUI/elements/CEGUIFrameWindowProperties.h -include/CEGUI/elements/CEGUIGUISheet.h -include/CEGUI/elements/CEGUIItemEntry.h -include/CEGUI/elements/CEGUIItemListBase.h -include/CEGUI/elements/CEGUIItemListBaseProperties.h -include/CEGUI/elements/CEGUIListHeader.h -include/CEGUI/elements/CEGUIListHeaderProperties.h -include/CEGUI/elements/CEGUIListHeaderSegment.h -include/CEGUI/elements/CEGUIListHeaderSegmentProperties.h -include/CEGUI/elements/CEGUIListbox.h -include/CEGUI/elements/CEGUIListboxItem.h -include/CEGUI/elements/CEGUIListboxProperties.h -include/CEGUI/elements/CEGUIListboxTextItem.h -include/CEGUI/elements/CEGUIMenuBase.h -include/CEGUI/elements/CEGUIMenuBaseProperties.h -include/CEGUI/elements/CEGUIMenuItem.h -include/CEGUI/elements/CEGUIMenuItemProperties.h -include/CEGUI/elements/CEGUIMenubar.h -include/CEGUI/elements/CEGUIMultiColumnList.h -include/CEGUI/elements/CEGUIMultiColumnListProperties.h -include/CEGUI/elements/CEGUIMultiLineEditbox.h -include/CEGUI/elements/CEGUIMultiLineEditboxProperties.h -include/CEGUI/elements/CEGUIPopupMenu.h -include/CEGUI/elements/CEGUIPopupMenuProperties.h -include/CEGUI/elements/CEGUIProgressBar.h -include/CEGUI/elements/CEGUIProgressBarProperties.h -include/CEGUI/elements/CEGUIPushButton.h -include/CEGUI/elements/CEGUIPushButtonProperties.h -include/CEGUI/elements/CEGUIRadioButton.h -include/CEGUI/elements/CEGUIRadioButtonProperties.h -include/CEGUI/elements/CEGUIScrollablePane.h -include/CEGUI/elements/CEGUIScrollablePaneProperties.h -include/CEGUI/elements/CEGUIScrollbar.h -include/CEGUI/elements/CEGUIScrollbarProperties.h -include/CEGUI/elements/CEGUIScrolledContainer.h -include/CEGUI/elements/CEGUIScrolledContainerProperties.h -include/CEGUI/elements/CEGUISlider.h -include/CEGUI/elements/CEGUISliderProperties.h -include/CEGUI/elements/CEGUISpinner.h -include/CEGUI/elements/CEGUISpinnerProperties.h -include/CEGUI/elements/CEGUIStatic.h -include/CEGUI/elements/CEGUIStaticImage.h -include/CEGUI/elements/CEGUIStaticImageProperties.h -include/CEGUI/elements/CEGUIStaticProperties.h -include/CEGUI/elements/CEGUIStaticText.h -include/CEGUI/elements/CEGUIStaticTextProperties.h -include/CEGUI/elements/CEGUITabButton.h -include/CEGUI/elements/CEGUITabControl.h -include/CEGUI/elements/CEGUITabControlProperties.h -include/CEGUI/elements/CEGUITabPane.h -include/CEGUI/elements/CEGUITextItem.h -include/CEGUI/elements/CEGUITextItemProperties.h -include/CEGUI/elements/CEGUIThumb.h -include/CEGUI/elements/CEGUIThumbProperties.h -include/CEGUI/elements/CEGUITitlebar.h -include/CEGUI/elements/CEGUITitlebarProperties.h -include/CEGUI/elements/CEGUITooltip.h -include/CEGUI/elements/CEGUITooltipProperties.h -include/CEGUI/falagard/CEGUIFalComponentBase.h -include/CEGUI/falagard/CEGUIFalDimensions.h -include/CEGUI/falagard/CEGUIFalEnums.h -include/CEGUI/falagard/CEGUIFalFrameComponent.h -include/CEGUI/falagard/CEGUIFalImageryComponent.h -include/CEGUI/falagard/CEGUIFalImagerySection.h -include/CEGUI/falagard/CEGUIFalLayerSpecification.h -include/CEGUI/falagard/CEGUIFalNamedArea.h -include/CEGUI/falagard/CEGUIFalPropertyDefinition.h -include/CEGUI/falagard/CEGUIFalPropertyInitialiser.h -include/CEGUI/falagard/CEGUIFalSectionSpecification.h -include/CEGUI/falagard/CEGUIFalStateImagery.h -include/CEGUI/falagard/CEGUIFalTextComponent.h -include/CEGUI/falagard/CEGUIFalWidgetComponent.h -include/CEGUI/falagard/CEGUIFalWidgetLookFeel.h -include/CEGUI/falagard/CEGUIFalWidgetLookManager.h -include/CEGUI/falagard/CEGUIFalXMLEnumHelper.h -include/CEGUI/lauxlib.h -include/CEGUI/lua.h -include/CEGUI/lualib.h -include/CEGUI/renderers/IrrlichtRenderer/IrrlichtRendererDef.h -include/CEGUI/renderers/IrrlichtRenderer/IrrlichtResourceProvider.h -include/CEGUI/renderers/IrrlichtRenderer/irrlichtrenderer.h -include/CEGUI/renderers/IrrlichtRenderer/irrlichttexture.h -include/CEGUI/renderers/OpenGLGUIRenderer/openglrenderer.h -include/CEGUI/renderers/OpenGLGUIRenderer/opengltexture.h -include/CEGUI/tolua++.h -lib/libCEGUIBase.la -lib/libCEGUIBase.so -lib/libCEGUIBase.so.0 -lib/libCEGUIFalagardBase.la -lib/libCEGUIFalagardBase.so -lib/libCEGUIFalagardBase.so.0 -lib/libCEGUILuaScriptModule.la -lib/libCEGUILuaScriptModule.so -lib/libCEGUILuaScriptModule.so.0 -lib/libCEGUIOpenGLRenderer.la -lib/libCEGUIOpenGLRenderer.so -lib/libCEGUIOpenGLRenderer.so.0 -lib/libCEGUITaharezLook.la -lib/libCEGUITaharezLook.so -lib/libCEGUITaharezLook.so.0 -lib/libCEGUIWindowsLook.la -lib/libCEGUIWindowsLook.so -lib/libCEGUIWindowsLook.so.0 -lib/libCEGUIluatoluapp.la -lib/libCEGUIluatoluapp.so -lib/libCEGUIluatoluapp.so.0 -libdata/pkgconfig/CEGUI-OPENGL.pc -libdata/pkgconfig/CEGUI.pc -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/TODO -@dirrm include/CEGUI/elements -@dirrm include/CEGUI/falagard -@dirrm include/CEGUI/renderers/IrrlichtRenderer -@dirrm include/CEGUI/renderers/OpenGLGUIRenderer -@dirrm include/CEGUI/renderers -@dirrm include/CEGUI -%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/graphics/ogre3d12/Makefile b/graphics/ogre3d12/Makefile deleted file mode 100644 index 02e5e8297eed..000000000000 --- a/graphics/ogre3d12/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -# New ports collection makefile for: ogre3d -# Date created: 03 Oct 2005 -# Whom: Oliver Lehmann <oliver@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= ogre3d -PORTVERSION= 1.2.5 -PORTREVISION= 2 -CATEGORIES= graphics devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=ogre -DISTNAME= ogre-linux_osx-v${PORTVERSION:S/./-/g} - -MAINTAINER= oliver@FreeBSD.org -COMMENT= A scene-oriented, flexible 3D engine written in C++ - -LIB_DEPENDS= zzip.13:${PORTSDIR}/devel/zziplib \ - CEGUIBase.0:${PORTSDIR}/graphics/cegui04 - -LATEST_LINK= ogre3d12 -WRKSRC= ${WRKDIR}/ogrenew -CONFIGURE_ARGS= --disable-cg --program-transform-name= --enable-static --with-platform=SDL \ - --with-cppunit-prefix=/nonexistent -CONFIGURE_ENV+= CPPFLAGS="-I${X11BASE}/include -DNDEBUG" \ - ZZIPLIB_CFLAGS="-I${LOCALBASE}/include" \ - ZZIPLIB_LIBS="-L${LOCALBASE}/lib -lzzip" -GNU_CONFIGURE= YES -USE_AUTOTOOLS= libtool:15 -USE_LDCONFIG= YES -USE_BZIP2= YES -USE_XLIB= YES -USE_GNOME= gnomehack -USE_GMAKE= YES -USE_SDL= sdl - -post-patch: - @${REINPLACE_CMD} -e '\ - s|sdl-config|${SDL_CONFIG}|g; \ - s|-lpthread|${PTHREAD_LIBS}|g; \ - s|"-lIL|"-L${LOCALBASE}/lib -lIL|g; \ - s|-lGL -lGLU|-L${X11BASE}/lib &|g' \ - ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|<CEGUI/|<|g' \ - ${WRKSRC}/Samples/Gui/src/Gui.cpp \ - ${WRKSRC}/Samples/Common/CEGUIRenderer/include/OgreCEGUIResourceProvider.h \ - ${WRKSRC}/Samples/Common/CEGUIRenderer/include/OgreCEGUITexture.h \ - ${WRKSRC}/Samples/Common/CEGUIRenderer/include/OgreCEGUIRenderer.h \ - ${WRKSRC}/Samples/Common/CEGUIRenderer/src/OgreCEGUIRenderer.cpp \ - ${WRKSRC}/Samples/Common/CEGUIRenderer/src/OgreCEGUIResourceProvider.cpp \ - ${WRKSRC}/Samples/Common/CEGUIRenderer/src/OgreCEGUITexture.cpp - @${REINPLACE_CMD} -e 's| -Wl,-z,defs||' \ - ${WRKSRC}/PlatformManagers/SDL/src/Makefile.in \ - ${WRKSRC}/PlugIns/BSPSceneManager/src/Makefile.in \ - ${WRKSRC}/PlugIns/ParticleFX/src/Makefile.in \ - ${WRKSRC}/PlugIns/OctreeSceneManager/src/Makefile.in \ - ${WRKSRC}/RenderSystems/GL/src/Makefile.in - @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ - ${WRKSRC}/Samples/Terrain/src/Makefile.in - @${REINPLACE_CMD} -e 's|(CEGUI::uint)|(size_t)|' \ - ${WRKSRC}/Samples/OceanDemo/src/OceanDemo.cpp - @${REINPLACE_CMD} -e '\ - s,defined(__x86_64__),& || defined(__powerpc__) || defined(__ia64__) || defined(__sparc64__) || defined(__alpha__) || defined(__amd64__),' \ - ${WRKSRC}/OgreMain/include/OgrePlatform.h - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for docfile in README COPYING AUTHORS - @${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} -.endfor -.endif - -.include <bsd.port.mk> diff --git a/graphics/ogre3d12/distinfo b/graphics/ogre3d12/distinfo deleted file mode 100644 index 28c72bf8b340..000000000000 --- a/graphics/ogre3d12/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (ogre-linux_osx-v1-2-5.tar.bz2) = b4c9c0e6dda14009c8e7a29de876d9a1 -SHA256 (ogre-linux_osx-v1-2-5.tar.bz2) = 9c7a31d41b626ff276b975f52395d17ee561e2d1dbcf1f6698fcb25c154d2d33 -SIZE (ogre-linux_osx-v1-2-5.tar.bz2) = 22994042 diff --git a/graphics/ogre3d12/pkg-descr b/graphics/ogre3d12/pkg-descr deleted file mode 100644 index 34c8cbfc4a5a..000000000000 --- a/graphics/ogre3d12/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -OGRE (Object-Oriented Graphics Rendering Engine) is a scene-oriented, flexible -3D engine written in C++ designed to make it easier and more intuitive for -developers to produce games and demos utilising 3D hardware. The class library -abstracts all the details of using the underlying system libraries like -Direct3D and OpenGL and provides an interface based on world objects and other -intuitive classes. - -WWW: http://www.ogre3d.org/ diff --git a/graphics/ogre3d12/pkg-plist b/graphics/ogre3d12/pkg-plist deleted file mode 100644 index d06c729406eb..000000000000 --- a/graphics/ogre3d12/pkg-plist +++ /dev/null @@ -1,248 +0,0 @@ -bin/OgreMaterialUpgrade -bin/OgreMeshUpgrade -bin/OgreXMLConverter -include/OGRE/Ogre.h -include/OGRE/OgreAnimable.h -include/OGRE/OgreAnimation.h -include/OGRE/OgreAnimationState.h -include/OGRE/OgreAnimationTrack.h -include/OGRE/OgreAny.h -include/OGRE/OgreArchive.h -include/OGRE/OgreArchiveFactory.h -include/OGRE/OgreArchiveManager.h -include/OGRE/OgreAutoParamDataSource.h -include/OGRE/OgreAxisAlignedBox.h -include/OGRE/OgreBillboard.h -include/OGRE/OgreBillboardChain.h -include/OGRE/OgreBillboardParticleRenderer.h -include/OGRE/OgreBillboardSet.h -include/OGRE/OgreBitwise.h -include/OGRE/OgreBlendMode.h -include/OGRE/OgreBone.h -include/OGRE/OgreBorderPanelOverlayElement.h -include/OGRE/OgreCEGUIRenderer.h -include/OGRE/OgreCEGUIResourceProvider.h -include/OGRE/OgreCEGUITexture.h -include/OGRE/OgreCamera.h -include/OGRE/OgreCodec.h -include/OGRE/OgreColourValue.h -include/OGRE/OgreCommon.h -include/OGRE/OgreCompiler2Pass.h -include/OGRE/OgreCompositionPass.h -include/OGRE/OgreCompositionTargetPass.h -include/OGRE/OgreCompositionTechnique.h -include/OGRE/OgreCompositor.h -include/OGRE/OgreCompositorChain.h -include/OGRE/OgreCompositorInstance.h -include/OGRE/OgreCompositorManager.h -include/OGRE/OgreCompositorScriptCompiler.h -include/OGRE/OgreCompositorSerializer.h -include/OGRE/OgreConfig.h -include/OGRE/OgreConfigDialog.h -include/OGRE/OgreConfigFile.h -include/OGRE/OgreConfigOptionMap.h -include/OGRE/OgreController.h -include/OGRE/OgreControllerManager.h -include/OGRE/OgreCursor.h -include/OGRE/OgreDataStream.h -include/OGRE/OgreDefaultHardwareBufferManager.h -include/OGRE/OgreDynLib.h -include/OGRE/OgreDynLibManager.h -include/OGRE/OgreEdgeListBuilder.h -include/OGRE/OgreEntity.h -include/OGRE/OgreErrorDialog.h -include/OGRE/OgreEventDispatcher.h -include/OGRE/OgreEventListeners.h -include/OGRE/OgreEventProcessor.h -include/OGRE/OgreEventQueue.h -include/OGRE/OgreEventTarget.h -include/OGRE/OgreException.h -include/OGRE/OgreExternalTextureSource.h -include/OGRE/OgreExternalTextureSourceManager.h -include/OGRE/OgreFactoryObj.h -include/OGRE/OgreFileSystem.h -include/OGRE/OgreFont.h -include/OGRE/OgreFontManager.h -include/OGRE/OgreFrameListener.h -include/OGRE/OgreFrustum.h -include/OGRE/OgreGpuProgram.h -include/OGRE/OgreGpuProgramManager.h -include/OGRE/OgreGpuProgramUsage.h -include/OGRE/OgreHardwareBuffer.h -include/OGRE/OgreHardwareBufferManager.h -include/OGRE/OgreHardwareIndexBuffer.h -include/OGRE/OgreHardwareOcclusionQuery.h -include/OGRE/OgreHardwarePixelBuffer.h -include/OGRE/OgreHardwareVertexBuffer.h -include/OGRE/OgreHighLevelGpuProgram.h -include/OGRE/OgreHighLevelGpuProgramManager.h -include/OGRE/OgreILCodecs.h -include/OGRE/OgreILImageCodec.h -include/OGRE/OgreImage.h -include/OGRE/OgreImageCodec.h -include/OGRE/OgreInput.h -include/OGRE/OgreInputEvent.h -include/OGRE/OgreIteratorWrappers.h -include/OGRE/OgreKeyEvent.h -include/OGRE/OgreKeyFrame.h -include/OGRE/OgreKeyTarget.h -include/OGRE/OgreLight.h -include/OGRE/OgreLog.h -include/OGRE/OgreLogManager.h -include/OGRE/OgreManualObject.h -include/OGRE/OgreMaterial.h -include/OGRE/OgreMaterialManager.h -include/OGRE/OgreMaterialSerializer.h -include/OGRE/OgreMath.h -include/OGRE/OgreMatrix3.h -include/OGRE/OgreMatrix4.h -include/OGRE/OgreMemoryMacros.h -include/OGRE/OgreMemoryManager.h -include/OGRE/OgreMesh.h -include/OGRE/OgreMeshFileFormat.h -include/OGRE/OgreMeshManager.h -include/OGRE/OgreMeshSerializer.h -include/OGRE/OgreMeshSerializerImpl.h -include/OGRE/OgreMouseEvent.h -include/OGRE/OgreMouseMotionTarget.h -include/OGRE/OgreMouseTarget.h -include/OGRE/OgreMovableObject.h -include/OGRE/OgreMovablePlane.h -include/OGRE/OgreNoMemoryMacros.h -include/OGRE/OgreNode.h -include/OGRE/OgreOverlay.h -include/OGRE/OgreOverlayContainer.h -include/OGRE/OgreOverlayElement.h -include/OGRE/OgreOverlayElementCommands.h -include/OGRE/OgreOverlayElementFactory.h -include/OGRE/OgreOverlayManager.h -include/OGRE/OgrePanelOverlayElement.h -include/OGRE/OgreParticle.h -include/OGRE/OgreParticleAffector.h -include/OGRE/OgreParticleAffectorFactory.h -include/OGRE/OgreParticleEmitter.h -include/OGRE/OgreParticleEmitterCommands.h -include/OGRE/OgreParticleEmitterFactory.h -include/OGRE/OgreParticleIterator.h -include/OGRE/OgreParticleSystem.h -include/OGRE/OgreParticleSystemManager.h -include/OGRE/OgreParticleSystemRenderer.h -include/OGRE/OgrePass.h -include/OGRE/OgrePatchMesh.h -include/OGRE/OgrePatchSurface.h -include/OGRE/OgrePixelFormat.h -include/OGRE/OgrePlane.h -include/OGRE/OgrePlaneBoundedVolume.h -include/OGRE/OgrePlatform.h -include/OGRE/OgrePlatformManager.h -include/OGRE/OgrePose.h -include/OGRE/OgrePositionTarget.h -include/OGRE/OgrePredefinedControllers.h -include/OGRE/OgrePrerequisites.h -include/OGRE/OgreProfiler.h -include/OGRE/OgreProgressiveMesh.h -include/OGRE/OgreQuaternion.h -include/OGRE/OgreRadixSort.h -include/OGRE/OgreRay.h -include/OGRE/OgreRectangle.h -include/OGRE/OgreRectangle2D.h -include/OGRE/OgreRenderOperation.h -include/OGRE/OgreRenderQueue.h -include/OGRE/OgreRenderQueueInvocation.h -include/OGRE/OgreRenderQueueListener.h -include/OGRE/OgreRenderQueueSortingGrouping.h -include/OGRE/OgreRenderSystem.h -include/OGRE/OgreRenderSystemCapabilities.h -include/OGRE/OgreRenderTarget.h -include/OGRE/OgreRenderTargetListener.h -include/OGRE/OgreRenderTexture.h -include/OGRE/OgreRenderWindow.h -include/OGRE/OgreRenderable.h -include/OGRE/OgreResource.h -include/OGRE/OgreResourceBackgroundQueue.h -include/OGRE/OgreResourceGroupManager.h -include/OGRE/OgreResourceManager.h -include/OGRE/OgreRibbonTrail.h -include/OGRE/OgreRoot.h -include/OGRE/OgreRotationalSpline.h -include/OGRE/OgreSceneManager.h -include/OGRE/OgreSceneManagerEnumerator.h -include/OGRE/OgreSceneNode.h -include/OGRE/OgreSceneQuery.h -include/OGRE/OgreScriptLoader.h -include/OGRE/OgreSearchOps.h -include/OGRE/OgreSerializer.h -include/OGRE/OgreShadowCaster.h -include/OGRE/OgreShadowVolumeExtrudeProgram.h -include/OGRE/OgreSharedPtr.h -include/OGRE/OgreSimpleRenderable.h -include/OGRE/OgreSimpleSpline.h -include/OGRE/OgreSingleton.h -include/OGRE/OgreSkeleton.h -include/OGRE/OgreSkeletonFileFormat.h -include/OGRE/OgreSkeletonInstance.h -include/OGRE/OgreSkeletonManager.h -include/OGRE/OgreSkeletonSerializer.h -include/OGRE/OgreSphere.h -include/OGRE/OgreSpotShadowFadePng.h -include/OGRE/OgreStableHeaders.h -include/OGRE/OgreStaticFaceGroup.h -include/OGRE/OgreStaticGeometry.h -include/OGRE/OgreStdHeaders.h -include/OGRE/OgreString.h -include/OGRE/OgreStringConverter.h -include/OGRE/OgreStringInterface.h -include/OGRE/OgreStringVector.h -include/OGRE/OgreSubEntity.h -include/OGRE/OgreSubMesh.h -include/OGRE/OgreTagPoint.h -include/OGRE/OgreTargetManager.h -include/OGRE/OgreTechnique.h -include/OGRE/OgreTextAreaOverlayElement.h -include/OGRE/OgreTexture.h -include/OGRE/OgreTextureManager.h -include/OGRE/OgreTextureUnitState.h -include/OGRE/OgreTimer.h -include/OGRE/OgreUserDefinedObject.h -include/OGRE/OgreVector2.h -include/OGRE/OgreVector3.h -include/OGRE/OgreVector4.h -include/OGRE/OgreVertexBoneAssignment.h -include/OGRE/OgreVertexIndexData.h -include/OGRE/OgreViewport.h -include/OGRE/OgreWireBoundingBox.h -include/OGRE/OgreZip.h -include/OGRE/asm_math.h -lib/OGRE/Plugin_BSPSceneManager.a -lib/OGRE/Plugin_BSPSceneManager.la -lib/OGRE/Plugin_BSPSceneManager.so -lib/OGRE/Plugin_OctreeSceneManager.a -lib/OGRE/Plugin_OctreeSceneManager.la -lib/OGRE/Plugin_OctreeSceneManager.so -lib/OGRE/Plugin_ParticleFX.a -lib/OGRE/Plugin_ParticleFX.la -lib/OGRE/Plugin_ParticleFX.so -lib/OGRE/RenderSystem_GL.a -lib/OGRE/RenderSystem_GL.la -lib/OGRE/RenderSystem_GL.so -lib/libCEGUIOgreRenderer.a -lib/libCEGUIOgreRenderer.la -lib/libCEGUIOgreRenderer.so -lib/libCEGUIOgreRenderer.so.0 -lib/libOgreMain.a -lib/libOgreMain.la -lib/libOgreMain.so -lib/libOgreMain.so.13 -lib/libOgrePlatform.a -lib/libOgrePlatform.la -lib/libOgrePlatform.so -libdata/pkgconfig/CEGUI-OGRE.pc -libdata/pkgconfig/OGRE.pc -share/OGRE/ogre-config.glade -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/README -@dirrm include/OGRE -@dirrm lib/OGRE -@dirrm share/OGRE -%%PORTDOCS%%@dirrm %%DOCSDIR%% |