ports/126425: Update port: graphics/gephex to 0.4.4

KATO Tsuguru tkato432 at yahoo.com
Sun Aug 10 18:10:03 UTC 2008


>Number:         126425
>Category:       ports
>Synopsis:       Update port: graphics/gephex to 0.4.4
>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:   Sun Aug 10 18:10:02 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     KATO Tsuguru
>Release:        FreeBSD 7.0-RELEASE-p3 i386
>Organization:
>Environment:
>Description:
- Update to version 0.4.4

New file:
files/patch-data__Makefile.am
files/patch-doc__Makefile.am
files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.cpp
files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.h
files/patch-modules__src__frbinmodule__ffmpegdriver.cpp
files/patch-modules__src__frbinmodule__mpeg3driver.cpp
files/patch-modules__src__frboutmodule__Makefile.am

Remove file:
files/patch-base_src_utils_structscanner.h
files/patch-engine-src-model-model.h
files/patch-modules_src_ffmpegoutmodule_ffmpegwriter.h      
files/patch-modules_src_frbinmodule_Makefile.am
files/patch-modules_src_frboutmodule_gloutput.cpp
files/patch-modules_src_frboutmodule_glxutil.c
files/patch-modules_src_frboutmodule_x11output.c
files/patch-modules_src_gradnormmodule_gradnormmodule.cpp
files/patch-modules_src_imagewritermodule_Makefile.am
files/patch-modules_src_oscinmodule_oscinmodule.cpp
files/patch-modules_src_oscnummodule_oscnummodule.cpp
files/patch-qtgui-src-gui-graphnameview.cpp
files/patch-util_include_basic__types.h

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/graphics/gephex/Makefile graphics/gephex/Makefile
--- /usr/ports/graphics/gephex/Makefile	2008-06-07 00:23:13.000000000 +0900
+++ graphics/gephex/Makefile	2008-08-09 19:36:30.000000000 +0900
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	gephex
-PORTVERSION=	0.4.3b
-PORTREVISION=	6
+PORTVERSION=	0.4.4
 CATEGORIES=	graphics
 MASTER_SITES=	http://www.gephex.org/download/src/
 
@@ -16,163 +15,110 @@
 
 LIB_DEPENDS=	jpeg.9:${PORTSDIR}/graphics/jpeg
 
+OPTIONS=	SDL	"Turn on SDL support"		on \
+		AALIB	"Turn on AALIB support"		on \
+		FFMPEG	"Turn on FFMPEG support"	on \
+		MPEG3	"Turn on MPEG3 support"		off \
+		PNG	"Turn on PNG support"		off \
+		GL	"Turn on GL support"		off
+
+ONLY_FOR_ARCHS=	i386
+
 USE_BZIP2=	yes
+USE_QT_VER=	4
+QT_COMPONENTS=	corelib gui moc_build uic_build
+USE_GNOME=	gnometarget
 USE_GMAKE=	yes
-ACLOCAL_ARGS=	--acdir=${ACLOCAL_DIR} -I ${LOCALBASE}/share/aclocal
-USE_AUTOTOOLS=	autoconf:261 autoheader:261 libtool:15 aclocal:19 automake:19
-CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-CONFIGURE_ARGS=	--without-V4L --without-ASOUNDLIB --without-LINUX_JOYSTICK \
-		--without-FFMPEG --without-AVIFILE --without-MPEG3 \
-		--without-LIBPNG --without-SDL --without-SDL_IMAGE \
-		--without-SDL_TTF --without-AALIB --disable-static \
-		--with-qt-libdir="${LOCALBASE}/lib" \
-		--with-qt-incdir="${LOCALBASE}/include" \
-		--with-qt-bindir="${LOCALBASE}/bin"
-USE_QT_VER=	3
-WANT_SDL=	yes
-USE_LDCONFIG=	yes
-LDCONFIG_DIRS=	%%PREFIX%%/lib/${PORTNAME}-${PORTVERSION:R}
-WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:C/[[:alpha:]]//g}
-ONLY_FOR_ARCHS=	i386
+USE_AUTOTOOLS=	automake:18 autoconf:261 libtool:15
+AUTOMAKE_ARGS=	--foreign
+CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+CONFIGURE_ARGS=	--without-ASOUNDLIB --without-AVIFILE \
+		--without-LINUX_JOYSTICK --without-V4L \
+		--disable-static
 
 MAN1=		gephex-engine.1 gephex-gui.1 gephex.1
 
-.include <bsd.port.pre.mk>
-
-.if ${HAVE_SDL:Msdl} && ${HAVE_SDL:Mimage} && ${HAVE_SDL:Mttf} && !defined(WITHOUT_SDL)
-WITH_SDL=	yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libaa.so.1) && !defined(WITHOUT_AALIB)
-WITH_AALIB=	yes
-.endif
-
-.if exists(${LOCALBASE}/bin/avifile-config) && !defined(WITHOUT_AVIFILE)
-WITH_AVIFILE=	yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libavcodec.a) && !defined(WITHOUT_FFMPEG)
-WITH_FFMPEG=	yes
-.endif
-
-.if exists(${LOCALBASE}/lib/libmpeg3.a) && !defined(WITHOUT_MPEG3)
-WITH_MPEG3=	yes
-.endif
+PLIST_SUB=	VERSION="${PORTVERSION:R}"
 
-.if exists(${LOCALBASE}/lib/libpng.so.5) && !defined(WITHOUT_PNG)
-WITH_PNG=	yes
-.endif
+CPPFLAGS=	-I${LOCALBASE}/include
+LDFLAGS=	-L${LOCALBASE}/lib
 
-.if exists(${LOCALBASE}/lib/libGL.so) && !defined(WITHOUT_GL)
-WITH_GL=	yes
-.endif
+.include <bsd.port.pre.mk>
 
 .if ${ARCH} != "i386"
 CONFIGURE_ARGS+=	--disable-mmx
 .else
-BUILD_DEPENDS+=		${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm
+BUILD_DEPENDS+=	${LOCALBASE}/bin/nasm:${PORTSDIR}/devel/nasm
 .endif
 
-.ifdef (WITH_SDL)
+.if defined(WITHOUT_SDL)
+CONFIGURE_ARGS+=	--without-SDL --without-SDL_IMAGE --without-SDL_TTF
+PLIST_SUB+=	SDL="@comment "
+.else
 CONFIGURE_ARGS+=	--with-SDL --with-SDL_IMAGE --with-SDL_TTF
 USE_SDL=	sdl image ttf
+PLIST_SUB+=	SDL=""
 .endif
 
-.ifdef (WITH_AALIB)
+.if defined(WITHOUT_AALIB)
+CONFIGURE_ARGS+=	--without-AALIB
+PLIST_SUB+=	AALIB="@comment "
+.else
 CONFIGURE_ARGS+=	--with-AALIB
 LIB_DEPENDS+=	aa.1:${PORTSDIR}/graphics/aalib
+PLIST_SUB+=	AALIB=""
 .endif
 
-.ifdef (WITH_AVIFILE)
-CONFIGURE_ARGS+=	--with-AVIFILE
-LIB_DEPENDS+=	aviplay.0:${PORTSDIR}/multimedia/avifile
-.endif
-
-.ifdef (WITH_FFMPEG)
+.if defined(WITHOUT_FFMPEG)
+CONFIGURE_ARGS+=	--without-FFMPEG
+PLIST_SUB+=	FFMPEG="@comment "
+.else
+BUILD_DEPENDS+=	${LOCALBASE}/lib/libavcodec.a:${PORTSDIR}/multimedia/ffmpeg
 CONFIGURE_ARGS+=	--with-FFMPEG
-BUILD_DEPENDS+=		${LOCALBASE}/lib/libavcodec.a:${PORTSDIR}/multimedia/ffmpeg
+PLIST_SUB+=	FFMPEG=""
 .endif
 
-.ifdef (WITH_MPEG3)
+.if defined(WITH_MPEG3)
 CONFIGURE_ARGS+=	--with-MPEG3
-BUILD_DEPENDS+=		${LOCALBASE}/lib/libmpeg3.a:${PORTSDIR}/multimedia/libmpeg3
+BUILD_DEPENDS+=	${LOCALBASE}/lib/libmpeg3.a:${PORTSDIR}/multimedia/libmpeg3
+PLIST_SUB+=	MPEG3=""
+.else
+CONFIGURE_ARGS+=	--without-MPEG3
+PLIST_SUB+=	MPEG3="@comment "
 .endif
 
-.ifdef (WITH_PNG)
+.if defined(WITH_PNG)
 CONFIGURE_ARGS+=	--with-LIBPNG
 LIB_DEPENDS+=	png.5:${PORTSDIR}/graphics/png
-.endif
-
-.ifdef (WITH_GL)
-CONFIGURE_ARGS+=	--with-GL
-USE_GL=		yes
-.endif
-
-.if !defined(WITH_SDL)
-PLIST_SUB+=	WITH_SDL="@comment "
+PLIST_SUB+=	PNG=""
 .else
-PLIST_SUB+=	WITH_SDL=""
+CONFIGURE_ARGS+=	--without-LIBPNG
+PLIST_SUB+=	PNG="@comment "
 .endif
 
-.if !defined(WITH_FFMPEG)
-PLIST_SUB+=	WITH_FFMPEG="@comment "
-.else
-PLIST_SUB+=	WITH_FFMPEG=""
-.endif
-
-.if !defined(WITH_PNG)
-PLIST_SUB+=	WITH_PNG="@comment "
-.else
-PLIST_SUB+=	WITH_PNG=""
-.endif
-
-.ifdef (NOPORTDOCS)
-DO_DOCS=\#
-.endif
-
-pre-everything::
-	@${ECHO_CMD} "Building with the following configuration:"
-.if defined (WITH_AALIB)
-	@${ECHO_CMD} "WITH_AALIB=${WITH_AALIB}"
-.else
-	@${ECHO_CMD} "WITH_AALIB=no"
-.endif
-.if defined (WITH_AVIFILE)
-	@${ECHO_CMD} "WITH_AVIFILE=${WITH_AVIFILE}"
-.else
-	@${ECHO_CMD} "WITH_AVIFILE=no"
-.endif
-.if defined (WITH_FFMPEG)
-	@${ECHO_CMD} "WITH_FFMPEG=${WITH_FFMPEG}"
-.else
-	@${ECHO_CMD} "WITH_FFMPEG=no"
-.endif
-.if defined (WITH_GL)
-	@${ECHO_CMD} "WITH_GL=${WITH_GL}"
-.else
-	@${ECHO_CMD} "WITH_GL=no"
-.endif
-.if defined (WITH_MPEG3)
-	@${ECHO_CMD} "WITH_MPEG3=${WITH_MPEG3}"
-.else
-	@${ECHO_CMD} "WITH_MPEG3=no"
-.endif
-.if defined (WITH_PNG)
-	@${ECHO_CMD} "WITH_PNG=${WITH_PNG}"
-.else
-	@${ECHO_CMD} "WITH_PNG=no"
-.endif
-.if defined (WITH_SDL)
-	@${ECHO_CMD} "WITH_SDL=${WITH_SDL}"
+.if defined(WITH_GL)
+CONFIGURE_ARGS+=	--with-GL
+USE_GL=		gl
+PLIST_SUB+=	GL=""
 .else
-	@${ECHO_CMD} "WITH_SDL=no"
+CONFIGURE_ARGS+=	--without-GL
+PLIST_SUB+=	GL="@comment "
 .endif
-	@${ECHO_CMD} "Use WITH[OUT]_ definitions to change current port behaviour"
 
 post-patch:
-	@${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|; \
-			      s|%%LOCALBASE%%|${LOCALBASE}|g' \
-		${WRKSRC}/configure.ac
-	@${REINPLACE_CMD} -e 's|%%PORTDOCS%%|${DO_DOCS}|' ${WRKSRC}/Makefile.am
+	@${REINPLACE_CMD} -e \
+		's|$$QTDIR/include |${QT_INCDIR} |g ; \
+		 s|$$QTDIR/lib |${QT_LIBDIR} |g ; \
+		 s|$$QTDIR/bin |${QT_PREFIX}/bin |g ; \
+		 s|/moc|/${MOC:T}|g ; \
+		 s|/uic|/${UIC:T}|g' ${WRKSRC}/acinclude.m4
+	@${REINPLACE_CMD} -e \
+		's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure.ac
+
+post-install:
+.if !defined(NOPORTDOCS)
+	@${MKDIR} ${DOCSDIR}/html
+	${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}/html
+.endif
 
 .include <bsd.port.post.mk>
diff -urN /usr/ports/graphics/gephex/distinfo graphics/gephex/distinfo
--- /usr/ports/graphics/gephex/distinfo	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/distinfo	2008-08-08 17:09:57.000000000 +0900
@@ -1,3 +1,3 @@
-MD5 (gephex-0.4.3b.tar.bz2) = d4e1343fcca8314e773d6daacb8af841
-SHA256 (gephex-0.4.3b.tar.bz2) = c6958df62506b3bcb25801d76e0e583652b2a32c86c0f7da73eca29b0366e5df
-SIZE (gephex-0.4.3b.tar.bz2) = 6123279
+MD5 (gephex-0.4.4.tar.bz2) = 5cde05a6c8396fabdaba2efc77731590
+SHA256 (gephex-0.4.4.tar.bz2) = a5a221036b5ae72cd5c8bedaac83f857c979ed6b8c932be897bdf19a4578d685
+SIZE (gephex-0.4.4.tar.bz2) = 4204313
diff -urN /usr/ports/graphics/gephex/files/patch-Makefile.am graphics/gephex/files/patch-Makefile.am
--- /usr/ports/graphics/gephex/files/patch-Makefile.am	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-Makefile.am	2008-08-08 23:26:55.000000000 +0900
@@ -1,7 +1,9 @@
---- Makefile.am.orig	Sat Aug 20 20:52:10 2005
-+++ Makefile.am	Sat Aug 20 20:52:33 2005
-@@ -1,3 +1,3 @@
+--- Makefile.am.orig	2007-04-29 23:53:38.000000000 +0900
++++ Makefile.am	2008-08-08 23:24:21.000000000 +0900
+@@ -1,6 +1,6 @@
  AUTOMAKE_OPTIONS = 1.6
 -SUBDIRS = contrib base build engine types util modules effectvmodules qtgui data examples doc
-+SUBDIRS = base build engine types util modules effectvmodules qtgui data examples %%PORTDOCS%% doc
++SUBDIRS = base build engine types util modules effectvmodules qtgui data examples doc
  EXTRA_DIST = BUGS NEWS README COPYING README.win32 README.macosx config_h.win32
+ 
+ # Strip binaries
diff -urN /usr/ports/graphics/gephex/files/patch-base_src_utils_structscanner.h graphics/gephex/files/patch-base_src_utils_structscanner.h
--- /usr/ports/graphics/gephex/files/patch-base_src_utils_structscanner.h	2006-12-23 01:58:22.000000000 +0900
+++ graphics/gephex/files/patch-base_src_utils_structscanner.h	1970-01-01 09:00:00.000000000 +0900
@@ -1,17 +0,0 @@
---- base/src/utils/structscanner.h.orig	Fri Dec 22 15:31:34 2006
-+++ base/src/utils/structscanner.h	Fri Dec 22 15:32:09 2006
-@@ -40,11 +40,11 @@
- {
-  IStructTokenListener& m_listener;
-   
--  void StructScanner::divideNameFromContent(const std::string& text,
-+  void divideNameFromContent(const std::string& text,
- 					    std::string& name,
- 					    std::string& content) const;
--  void StructScanner::processName(const std::string& name) const;
--  void StructScanner::processContent(const std::string& content) const;
-+  void processName(const std::string& name) const;
-+  void processContent(const std::string& content) const;
-   std::string::size_type
-   findNextClosingBracket(const std::string& content,
- 			 std::string::size_type n) const;
diff -urN /usr/ports/graphics/gephex/files/patch-configure.ac graphics/gephex/files/patch-configure.ac
--- /usr/ports/graphics/gephex/files/patch-configure.ac	2008-04-20 10:15:05.000000000 +0900
+++ graphics/gephex/files/patch-configure.ac	2008-08-08 23:36:57.000000000 +0900
@@ -1,61 +1,22 @@
---- configure.ac.orig
-+++ configure.ac
-@@ -126,8 +126,11 @@
- fi
- 
- # qt
-+saved_LDFLAGS="${LDFLAGS}"
-+LDFLAGS="${LDFLAGS} %%PTHREAD_LIBS%%"
- AM_PATH_QT([2.3.0], $SHAREDLIBEXT, have_qt=yes, have_qt=no)
- AM_CONDITIONAL(HAVE_QT, test "x$have_qt" = "xyes")
-+LDFLAGS="${saved_LDFLAGS}"
- 
- # Checks for libraries.
- AC_CHECK_LIB(dl,dlopen,
-@@ -170,11 +173,16 @@
- 
- # optional libraries
- 
-+ac_save_CFLAGS="$CFLAGS"
-+CFLAGS="${CFLAGS} -I%%LOCALBASE%%/include"
-+
- CHECK_EXTRA_LIB([GL],
-                 [AC_CHECK_HEADER([GL/glx.h],have_gl=yes,have_gl=no)],
-                 [no], [with_gl], [have_gl], [use_gl])
- AM_CONDITIONAL([WITH_GL], test "x$use_gl" = "xyes")
- 
-+CFLAGS="${ac_save_CFLAGS}"
-+
- CHECK_EXTRA_LIB([SDL], [AM_PATH_SDL([1.1.0], have_sdl=yes, have_sdl=no)],
-                 [yes], [with_sdl], [have_sdl], [use_sdl])
- AM_CONDITIONAL([WITH_SDL], test "x$use_sdl" = "xyes")
-@@ -223,7 +231,8 @@
- # libpng
- CHECK_EXTRA_LIB([LIBPNG],
-                 [AC_CHECK_HEADER([png.h],have_libpng=yes,have_libpng=no)],
--                [no], [with_libpng], [have_libpng], [use_libpng])
-+                [no], [with_libpng], [have_libpng], [use_libpng],
-+		[AC_SUBST(PNG_LDFLAGS, "-L%%LOCALBASE%%/lib")])
- AM_CONDITIONAL([WITH_LIBPNG], test "x$use_libpng" = "xyes")
- 
- # aalib
-@@ -269,7 +278,7 @@
+--- configure.ac.orig	2007-04-29 23:53:44.000000000 +0900
++++ configure.ac	2008-08-08 23:06:42.000000000 +0900
+@@ -290,7 +290,7 @@
  
  # ffmpeg
  CHECK_EXTRA_LIB([FFMPEG],
 -                [if test -d $srcdir/contrib/ffmpeg; then have_ffmpeg=yes; else have_ffmpeg=no; fi],
-+		[have_ffmpeg=yes],
++                [have_ffmpeg=yes],
                  [yes], [with_ffmpeg], [have_ffmpeg], [use_ffmpeg])
  AM_CONDITIONAL([WITH_FFMPEG], test "x$use_ffmpeg" = "xyes")
  
-@@ -345,46 +354,46 @@
+@@ -366,48 +366,48 @@
  AC_DEFINE_UNQUOTED([FRBINMODULE_CACHE_SIZE], $FRBINCACHE, [Size of the cache the frbinmodule uses (in MB)])
  fi;
  
 -if test "x$use_ffmpeg" = "xyes"; then
-- FFMPEG_CONFIGURE_FLAGS="--prefix=$prefix --disable-ffserver --disable-ffplay --enable-shared" 
+- FFMPEG_CONFIGURE_FLAGS="--prefix=$prefix --disable-ffserver --disable-ffplay --enable-shared --enable-memalign-hack" 
 +#if test "x$use_ffmpeg" = "xyes"; then
-+# FFMPEG_CONFIGURE_FLAGS="--prefix=$prefix --disable-ffserver --disable-ffplay --enable-shared" 
++# FFMPEG_CONFIGURE_FLAGS="--prefix=$prefix --disable-ffserver --disable-ffplay --enable-shared --enable-memalign-hack" 
  #--disable-risky"
  
 - echo Preparing ffmpeg configure call...
@@ -107,19 +68,23 @@
 - abs_builddir=`pwd`
 +# abs_builddir=`pwd`
  
-- AC_SUBST(FFMPEG_LDFLAGS,"${abs_builddir}/contrib/ffmpeg/libavformat/libavformat.a ${abs_builddir}/contrib/ffmpeg/libavcodec/libavcodec.a -lz")
-+ AC_SUBST(FFMPEG_LDFLAGS,"%%LOCALBASE%%/lib/libavformat.a %%LOCALBASE%%/lib/libavcodec.a -lz")
+- AC_SUBST(FFMPEG_LDFLAGS,"${abs_builddir}/contrib/ffmpeg/libavformat/libavformat.a ${abs_builddir}/contrib/ffmpeg/libavcodec/libavcodec.a ${abs_builddir}/contrib/ffmpeg/libavutil/libavutil.a -lz")
++ AC_SUBST(FFMPEG_LDFLAGS,"%%LOCALBASE%%/lib/libavformat.a %%LOCALBASE%%/lib/libavcodec.a %%LOCALBASE%%/lib/libavutil.a -lz")
  # AC_SUBST(FFMPEG_LDFLAGS,"-L${abs_builddir}/contrib/ffmpeg/libavcodec -lavcodec -lz -L${abs_builddir}/contrib/ffmpeg/libavformat -lavformat")
-- AC_SUBST(FFMPEG_CFLAGS,"-I${FFMPEG_DIR}/libavcodec -I${FFMPEG_DIR}/libavformat")
+- AC_SUBST(FFMPEG_CFLAGS,"-I${FFMPEG_DIR}/libavcodec -I${FFMPEG_DIR}/libavformat -I${FFMPEG_DIR}/libavutil")
 + AC_SUBST(FFMPEG_CFLAGS,"-I%%LOCALBASE%%/include/ffmpeg")
  
 - echo Calling ffmpeg configure with flags:
 - echo "${FFMPEG_CONFIG_DIR}/configure $FFMPEG_CONFIGURE_FLAGS"
-- cd contrib/ffmpeg/ && ${FFMPEG_CONFIG_DIR}/configure $FFMPEG_CONFIGURE_FLAGS && cd ../..
+- cd contrib/ffmpeg/ || exit 1
+- ${FFMPEG_CONFIG_DIR}/configure $FFMPEG_CONFIGURE_FLAGS
+- cd ../..
 -fi
 +# echo Calling ffmpeg configure with flags:
 +# echo "${FFMPEG_CONFIG_DIR}/configure $FFMPEG_CONFIGURE_FLAGS"
-+# cd contrib/ffmpeg/ && ${FFMPEG_CONFIG_DIR}/configure $FFMPEG_CONFIGURE_FLAGS && cd ../..
++# cd contrib/ffmpeg/ || exit 1
++# ${FFMPEG_CONFIG_DIR}/configure $FFMPEG_CONFIGURE_FLAGS
++# cd ../..
 +#fi
  
  # set gphx_module_lib_dir and gphx_type_lib_dir
diff -urN /usr/ports/graphics/gephex/files/patch-data__Makefile.am graphics/gephex/files/patch-data__Makefile.am
--- /usr/ports/graphics/gephex/files/patch-data__Makefile.am	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-data__Makefile.am	2008-08-08 23:16:48.000000000 +0900
@@ -0,0 +1,26 @@
+--- data/Makefile.am.orig	2007-04-29 23:53:38.000000000 +0900
++++ data/Makefile.am	2008-08-08 23:12:37.000000000 +0900
+@@ -1,8 +1,7 @@
+-datadir = $(prefix)/share/gephex/
+-icondir = $(prefix)/share/gephex/icon
++icondir = $(pkgdatadir)/icon
+ 
+ icon_DATA    = gephex-gui.xpm gephex-engine.xpm
+-data_DATA    = gephex.conf.default run_in_terminal.sh
++pkgdata_DATA = gephex.conf.default run_in_terminal.sh
+ bin_SCRIPTS  = gephex-wrapper
+ 
+ EXTRA_DIST = $(icon_DATA) run_in_terminal.sh gephex-wrapper.in gephex.conf.default.in gephexw.conf.default
+@@ -17,9 +16,9 @@
+ 	ln -s $(DESTDIR)$(bindir)/gephex-wrapper $(DESTDIR)$(bindir)/gephex
+ 
+ install-data-hook:
+-	chmod u+x $(DESTDIR)$(datadir)/run_in_terminal.sh
+-	sed -e "s,\$$(prefix), at prefix@," < $(DESTDIR)$(datadir)/gephex.conf.default > $(DESTDIR)$(datadir)/gephex.conf.default.tmp
+-	mv $(DESTDIR)$(datadir)/gephex.conf.default.tmp	$(DESTDIR)$(datadir)/gephex.conf.default
++	chmod u+x $(DESTDIR)$(pkgdatadir)/run_in_terminal.sh
++	sed -e "s,\$$(prefix), at prefix@," < $(DESTDIR)$(pkgdatadir)/gephex.conf.default > $(DESTDIR)$(pkgdatadir)/gephex.conf.default.tmp
++	mv $(DESTDIR)$(pkgdatadir)/gephex.conf.default.tmp	$(DESTDIR)$(pkgdatadir)/gephex.conf.default
+ 
+ uninstall-hook:
+ 	rm -rf $(DESTDIR)$(bindir)/gephex-engine
diff -urN /usr/ports/graphics/gephex/files/patch-doc__Makefile.am graphics/gephex/files/patch-doc__Makefile.am
--- /usr/ports/graphics/gephex/files/patch-doc__Makefile.am	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-doc__Makefile.am	2008-08-08 23:21:15.000000000 +0900
@@ -0,0 +1,21 @@
+--- doc/Makefile.am.orig	2007-04-29 23:53:38.000000000 +0900
++++ doc/Makefile.am	2008-08-08 23:20:20.000000000 +0900
+@@ -1,7 +1,7 @@
+ SUBDIRS = images
+ 
+-htmldir = $(prefix)/share/doc/gephex/html
+-html_DATA = documentation.html
++#htmldir = $(prefix)/share/doc/gephex/html
++#html_DATA = documentation.html
+ 
+ man_MANS = gephex.1 gephex-engine.1 gephex-gui.1
+ 
+@@ -10,7 +10,7 @@
+ 
+ # include this prebuild stuff (and its sources) in the dist
+ EXTRA_DIST     =  \
+-	$(html_DATA)                \
++	$(srcdir)/documentation.html \
+ 	$(man_MANS)                 \
+ 	$(srcdir)/documentation.xml \
+ 	$(srcdir)/module-api*.xml   \
diff -urN /usr/ports/graphics/gephex/files/patch-engine-src-model-model.h graphics/gephex/files/patch-engine-src-model-model.h
--- /usr/ports/graphics/gephex/files/patch-engine-src-model-model.h	2006-12-23 01:58:22.000000000 +0900
+++ graphics/gephex/files/patch-engine-src-model-model.h	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- engine/src/model/model.h.orig	Fri Dec 22 15:34:42 2006
-+++ engine/src/model/model.h	Fri Dec 22 15:34:53 2006
-@@ -235,7 +235,7 @@
-       void deleteModule(utils::AutoPtr<Graph>, int moduleID);
- 
- #ifndef NDEBUG
--      void Model::checkGraphSerialisation();
-+      void checkGraphSerialisation();
- #endif
- 
-     };
diff -urN /usr/ports/graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.cpp graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.cpp
--- /usr/ports/graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.cpp	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.cpp	2008-08-09 19:34:08.000000000 +0900
@@ -0,0 +1,11 @@
+--- modules/src/ffmpegoutmodule/ffmpegwriter.cpp.orig	2007-04-29 23:53:40.000000000 +0900
++++ modules/src/ffmpegoutmodule/ffmpegwriter.cpp	2008-08-09 19:33:29.000000000 +0900
+@@ -175,7 +175,7 @@
+   if (!(fmt->flags & AVFMT_NOFILE)) 
+   {
+     /* close the output file */
+-    url_fclose(&oc->pb);
++    url_fclose(oc->pb);
+   }
+ 
+   /* free the stream */
diff -urN /usr/ports/graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.h graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.h
--- /usr/ports/graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.h	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-modules__src__ffmpegoutmodule__ffmpegwriter.h	2008-08-09 19:44:55.000000000 +0900
@@ -0,0 +1,19 @@
+--- modules/src/ffmpegoutmodule/ffmpegwriter.h.orig	2007-04-29 23:53:40.000000000 +0900
++++ modules/src/ffmpegoutmodule/ffmpegwriter.h	2008-08-09 19:44:12.000000000 +0900
+@@ -24,10 +24,16 @@
+ #include <iostream>
+ #include <map>
+ 
++#if defined _MSC_VER
+ #define EMULATE_INTTYPES
++#endif
++
++extern "C"
++{
+ #include "avformat.h"
+ #include "avcodec.h"
+ #include "avutil.h"
++}
+ 
+ 
+ class FFMpegWriter
diff -urN /usr/ports/graphics/gephex/files/patch-modules__src__frbinmodule__ffmpegdriver.cpp graphics/gephex/files/patch-modules__src__frbinmodule__ffmpegdriver.cpp
--- /usr/ports/graphics/gephex/files/patch-modules__src__frbinmodule__ffmpegdriver.cpp	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-modules__src__frbinmodule__ffmpegdriver.cpp	2008-08-09 19:16:03.000000000 +0900
@@ -0,0 +1,35 @@
+--- modules/src/frbinmodule/ffmpegdriver.cpp.orig	2007-04-29 23:53:43.000000000 +0900
++++ modules/src/frbinmodule/ffmpegdriver.cpp	2008-08-09 19:14:24.000000000 +0900
+@@ -20,6 +20,8 @@
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.*/
+ 
++#define __STDC_CONSTANT_MACROS
++
+ #include "ffmpegdriver.h"
+ 
+ #include <string>
+@@ -35,9 +37,12 @@
+ #define EMULATE_INTTYPES
+ #endif
+ 
+-#include "avformat.h"
+-#include "avcodec.h"
+-#include "avutil.h"
++extern "C"
++{
++#include "avformat.h"
++#include "avcodec.h"
++#include "avutil.h"
++}
+ 
+ #include "libscale.h"
+ 
+@@ -239,7 +244,6 @@
+     AVFormatParameters params;
+     
+     memset(&params, 0, sizeof(params));
+-    params.image_format  = 0;
+     params.initial_pause = 1;
+ 
+     // open input file without format or bufffer size
diff -urN /usr/ports/graphics/gephex/files/patch-modules__src__frbinmodule__mpeg3driver.cpp graphics/gephex/files/patch-modules__src__frbinmodule__mpeg3driver.cpp
--- /usr/ports/graphics/gephex/files/patch-modules__src__frbinmodule__mpeg3driver.cpp	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-modules__src__frbinmodule__mpeg3driver.cpp	2008-08-08 22:32:36.000000000 +0900
@@ -0,0 +1,13 @@
+--- modules/src/frbinmodule/mpeg3driver.cpp.orig	2007-04-29 23:53:40.000000000 +0900
++++ modules/src/frbinmodule/mpeg3driver.cpp	2008-08-08 22:32:25.000000000 +0900
+@@ -82,7 +82,9 @@
+ 
+   if(mpeg3_check_sig(const_cast<char*>(m_impl->file_name.c_str()))==1)
+     {
+-      m_impl->file=mpeg3_open(const_cast<char*>(m_impl->file_name.c_str()));
++      int retcode = 0;
++
++      m_impl->file=mpeg3_open(const_cast<char*>(m_impl->file_name.c_str()), &retcode);
+ 	  
+       try
+         {
diff -urN /usr/ports/graphics/gephex/files/patch-modules__src__frboutmodule__Makefile.am graphics/gephex/files/patch-modules__src__frboutmodule__Makefile.am
--- /usr/ports/graphics/gephex/files/patch-modules__src__frboutmodule__Makefile.am	1970-01-01 09:00:00.000000000 +0900
+++ graphics/gephex/files/patch-modules__src__frboutmodule__Makefile.am	2008-08-08 23:17:12.000000000 +0900
@@ -0,0 +1,22 @@
+--- modules/src/frboutmodule/Makefile.am.orig	2007-04-29 23:53:40.000000000 +0900
++++ modules/src/frboutmodule/Makefile.am	2008-08-08 23:14:02.000000000 +0900
+@@ -80,8 +80,8 @@
+ 	slist.c $(X11_sOURCES) $(V4L_sOURCES) $(AALIB_sOURCES) $(SDL_sOURCES) $(GL_sOURCES) $(PLT_sOURCES)
+ 
+ 
+-frboutmodule_la_LDFLAGS = -module -avoid-version -no-undefined -L/usr/X11R6/lib -L at builddir@/../libscale -L/usr/X11R6/lib -L at builddir@/../libcolorconv
+-frboutmodule_la_LIBADD = -lscale -lcolorconv -lX11 -lXext -lXv $(AALIB_lDFLAGS) $(SDL_lD_FLAGS) $(GLLIBS)
++frboutmodule_la_LDFLAGS = -module -avoid-version -no-undefined -L at builddir@/../libscale -L at builddir@/../libcolorconv
++frboutmodule_la_LIBADD = -lscale -lcolorconv -lX11 -lXext -lXv $(AALIB_lDFLAGS) $(SDL_lD_FLAGS) $(GLLIBS) $(X_LIBS)
+ 
+ frboutmodule_la_DEPENDENCIES = @builddir@/../libscale/libscale.a \
+ 			       @builddir@/../libcolorconv/libcolorconv.a
+@@ -92,7 +92,7 @@
+ 	   -I at srcdir@/../libcolorconv \
+            -I at srcdir@/../../../types/src/stringtype \
+            -I at srcdir@/../../../types/src/framebuffertype \
+-           -I at srcdir@/../../../types/src/numbertype $(SDL_cFLAGS)
++           -I at srcdir@/../../../types/src/numbertype $(SDL_cFLAGS) $(X_CFLAGS)
+ 
+ 
+ DISTCLEANFILES = frboutmodule.h frboutmodule_auto.c
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_ffmpegoutmodule_ffmpegwriter.h graphics/gephex/files/patch-modules_src_ffmpegoutmodule_ffmpegwriter.h
--- /usr/ports/graphics/gephex/files/patch-modules_src_ffmpegoutmodule_ffmpegwriter.h	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_ffmpegoutmodule_ffmpegwriter.h	1970-01-01 09:00:00.000000000 +0900
@@ -1,12 +0,0 @@
---- modules/src/ffmpegoutmodule/ffmpegwriter.h.orig
-+++ modules/src/ffmpegoutmodule/ffmpegwriter.h
-@@ -23,7 +23,8 @@
- 
- #include <iostream>
- #include <map>
--
-+#include <string>
-+
- #define EMULATE_INTTYPES
- #include "avformat.h"
- #include "avcodec.h"
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_frbinmodule_Makefile.am graphics/gephex/files/patch-modules_src_frbinmodule_Makefile.am
--- /usr/ports/graphics/gephex/files/patch-modules_src_frbinmodule_Makefile.am	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_frbinmodule_Makefile.am	1970-01-01 09:00:00.000000000 +0900
@@ -1,19 +0,0 @@
---- modules/src/frbinmodule/Makefile.am.orig
-+++ modules/src/frbinmodule/Makefile.am
-@@ -28,6 +28,7 @@
- 
- if WITH_FFMPEG
- FFMPEG_sOURCES = ffmpegdriver.h ffmpegdriver.cpp
-+FFMPEG_lDFLAGS = @FFMPEG_LDFLAGS@
- endif
- 
- frbinmodule_la_SOURCES = \
-@@ -45,7 +46,7 @@
- 
- frbinmodule_la_LDFLAGS = \
-         -module -avoid-version -no-undefined \
--        -L at builddir@/../libscale $(AVIFILE_LDFLAGS) $(SDL_IMAGE_lDFLAGS) $(MPEG3_lDFLAGS) @FFMPEG_LDFLAGS@
-+        -L at builddir@/../libscale $(AVIFILE_LDFLAGS) $(SDL_IMAGE_lDFLAGS) $(MPEG3_lDFLAGS) ${FFMPEG_lDFLAGS}
- 
- frbinmodule_la_LIBADD = -lstdc++ -lscale
- 
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_frboutmodule_gloutput.cpp graphics/gephex/files/patch-modules_src_frboutmodule_gloutput.cpp
--- /usr/ports/graphics/gephex/files/patch-modules_src_frboutmodule_gloutput.cpp	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_frboutmodule_gloutput.cpp	1970-01-01 09:00:00.000000000 +0900
@@ -1,12 +0,0 @@
---- modules/src/frboutmodule/gloutput.cpp.orig
-+++ modules/src/frboutmodule/gloutput.cpp
-@@ -32,7 +32,8 @@
- #include <cstdio>
- #include <cassert>
- #include <cmath>
--#include <stdint.h>
-+//#include <stdint.h>
-+#include <inttypes.h>
- #include <stdexcept>
- #include <memory>
- 
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_frboutmodule_glxutil.c graphics/gephex/files/patch-modules_src_frboutmodule_glxutil.c
--- /usr/ports/graphics/gephex/files/patch-modules_src_frboutmodule_glxutil.c	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_frboutmodule_glxutil.c	1970-01-01 09:00:00.000000000 +0900
@@ -1,16 +0,0 @@
---- modules/src/frboutmodule/glxutil.c.orig
-+++ modules/src/frboutmodule/glxutil.c
-@@ -53,12 +53,12 @@
-   Colormap cmap;
-   int AttributeList[] = {GLX_RGBA, GLX_DOUBLEBUFFER, None};
-   XSetWindowAttributes swa;
-+  const char* display_name_ptr;
- 
-   s_xsize = xres;
-   s_ysize = yres;
- 
-   // open a new connection to the X server
--  const char* display_name_ptr;
-   if (strcmp(display_name,"default")==0)
-     display_name_ptr=0; // use the DISPLAY environment variable
-   else
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_frboutmodule_x11output.c graphics/gephex/files/patch-modules_src_frboutmodule_x11output.c
--- /usr/ports/graphics/gephex/files/patch-modules_src_frboutmodule_x11output.c	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_frboutmodule_x11output.c	1970-01-01 09:00:00.000000000 +0900
@@ -1,12 +0,0 @@
---- modules/src/frboutmodule/x11output.c.orig
-+++ modules/src/frboutmodule/x11output.c
-@@ -27,7 +27,8 @@
- #include <math.h> // for fabs
- #include <string.h>
- 
--#include <sys/ipc.h>
-+//#include <sys/ipc.h>
-+#include <sys/types.h>
- #include <sys/shm.h>
- 
- #include "outputdriver.h"
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_gradnormmodule_gradnormmodule.cpp graphics/gephex/files/patch-modules_src_gradnormmodule_gradnormmodule.cpp
--- /usr/ports/graphics/gephex/files/patch-modules_src_gradnormmodule_gradnormmodule.cpp	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_gradnormmodule_gradnormmodule.cpp	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- modules/src/gradnormmodule/gradnormmodule.cpp.orig
-+++ modules/src/gradnormmodule/gradnormmodule.cpp
-@@ -29,7 +29,7 @@
- 
- #if !defined(_MSC_VER) || (_MSC_VER > 1200)
- using std::min;
--#include <stdint.h>
-+#include <inttypes.h>
- #else
- #define min(a, b) ((a) < (b) ? (a) : (b))
- #include "basic_types.h"
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_imagewritermodule_Makefile.am graphics/gephex/files/patch-modules_src_imagewritermodule_Makefile.am
--- /usr/ports/graphics/gephex/files/patch-modules_src_imagewritermodule_Makefile.am	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_imagewritermodule_Makefile.am	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- modules/src/imagewritermodule/Makefile.am.orig
-+++ modules/src/imagewritermodule/Makefile.am
-@@ -17,7 +17,7 @@
- 				imagewritermodule.xpm
- 
- imagewritermodule_la_LDFLAGS = -module -avoid-version -no-undefined
--imagewritermodule_la_LIBADD = -lpng -lstdc++
-+imagewritermodule_la_LIBADD = @PNG_LDFLAGS@ -lpng -lstdc++
- 
- INCLUDES = -I at srcdir@/../../../engine/src/engine \
-            -I at srcdir@/../../../util/include \
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_oscinmodule_oscinmodule.cpp graphics/gephex/files/patch-modules_src_oscinmodule_oscinmodule.cpp
--- /usr/ports/graphics/gephex/files/patch-modules_src_oscinmodule_oscinmodule.cpp	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_oscinmodule_oscinmodule.cpp	1970-01-01 09:00:00.000000000 +0900
@@ -1,17 +0,0 @@
---- modules/src/oscinmodule/oscinmodule.cpp.orig
-+++ modules/src/oscinmodule/oscinmodule.cpp
-@@ -4,12 +4,13 @@
- #include <vector>
- #include <stdexcept>
- 
--#include <sys/socket.h>
- #include <sys/types.h>
-+#include <sys/socket.h>
- #include <netinet/in.h>
- #include <errno.h>
- #include <netdb.h>
- #include <fcntl.h>
-+#include <unistd.h>
- 
- static logT s_log;
- 
diff -urN /usr/ports/graphics/gephex/files/patch-modules_src_oscnummodule_oscnummodule.cpp graphics/gephex/files/patch-modules_src_oscnummodule_oscnummodule.cpp
--- /usr/ports/graphics/gephex/files/patch-modules_src_oscnummodule_oscnummodule.cpp	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-modules_src_oscnummodule_oscnummodule.cpp	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- modules/src/oscnummodule/oscnummodule.cpp.orig
-+++ modules/src/oscnummodule/oscnummodule.cpp
-@@ -1,6 +1,8 @@
- #include "oscnummodule.h"
- 
- #include <string>
-+#include <map>
-+#include <vector>
- 
- static logT s_log;
- 
diff -urN /usr/ports/graphics/gephex/files/patch-qtgui-src-gui-graphnameview.cpp graphics/gephex/files/patch-qtgui-src-gui-graphnameview.cpp
--- /usr/ports/graphics/gephex/files/patch-qtgui-src-gui-graphnameview.cpp	2006-12-23 01:58:22.000000000 +0900
+++ graphics/gephex/files/patch-qtgui-src-gui-graphnameview.cpp	1970-01-01 09:00:00.000000000 +0900
@@ -1,20 +0,0 @@
---- qtgui/src/gui/graphnameview.cpp.orig	Fri Dec 22 15:47:05 2006
-+++ qtgui/src/gui/graphnameview.cpp	Fri Dec 22 15:47:31 2006
-@@ -266,7 +266,7 @@
-       m_textListener->textChanged(1,newStatus.c_str());
-     }
- 
--    virtual void GraphItem::propertySelected(int id)
-+    virtual void propertySelected(int id)
-     {
-       switch(id)
- 	{
-@@ -428,7 +428,7 @@
-       m_textListener->textChanged(1,newStatus.c_str());
-     }
- 
--    void SnapItem::propertySelected(int id)
-+    void propertySelected(int id)
-     {
-       switch(id)
- 	{
diff -urN /usr/ports/graphics/gephex/files/patch-util_include_basic__types.h graphics/gephex/files/patch-util_include_basic__types.h
--- /usr/ports/graphics/gephex/files/patch-util_include_basic__types.h	2006-01-22 22:43:46.000000000 +0900
+++ graphics/gephex/files/patch-util_include_basic__types.h	1970-01-01 09:00:00.000000000 +0900
@@ -1,11 +0,0 @@
---- util/include/basic_types.h.orig
-+++ util/include/basic_types.h
-@@ -35,6 +35,8 @@
- typedef signed short   int16_t;
- typedef unsigned char  uint8_t;
- typedef signed char    int8_t;
-+#elif __FreeBSD__
-+#include <inttypes.h>
- #else
- #include <stdint.h>
- #endif
diff -urN /usr/ports/graphics/gephex/pkg-plist graphics/gephex/pkg-plist
--- /usr/ports/graphics/gephex/pkg-plist	2006-02-24 00:39:33.000000000 +0900
+++ graphics/gephex/pkg-plist	2008-08-08 19:11:22.000000000 +0900
@@ -4,14 +4,11 @@
 bin/gephex-gui
 bin/gephex-gui-real
 bin/gephex-wrapper
-%%WITH_SDL%%bin/joystick_midi_net
+%%SDL%%bin/joystick_midi_net
 include/gephex/basic_types.h
 include/gephex/dllmodule.h
 include/gephex/dlltype.h
 include/gephex/dllutils.h
-include/gephex/minmax.h
-include/gephex/misc/crandgen.h
-include/gephex/sstream_compat
 include/gephex/types/audiotype.h
 include/gephex/types/envtype.h
 include/gephex/types/framebuffertype.h
@@ -23,358 +20,130 @@
 include/gephex/types/positiontype.h
 include/gephex/types/rgbtype.h
 include/gephex/types/stringtype.h
-include/gephex/unistd.h
-lib/gephex-0.4/modules/audioaddmodule.a
-lib/gephex-0.4/modules/audioaddmodule.la
-lib/gephex-0.4/modules/audioaddmodule.so
-lib/gephex-0.4/modules/audiobdmodule.a
-lib/gephex-0.4/modules/audiobdmodule.la
-lib/gephex-0.4/modules/audiobdmodule.so
-lib/gephex-0.4/modules/audioenergymodule.a
-lib/gephex-0.4/modules/audioenergymodule.la
-lib/gephex-0.4/modules/audioenergymodule.so
-lib/gephex-0.4/modules/audioinmodule.a
-lib/gephex-0.4/modules/audioinmodule.la
-lib/gephex-0.4/modules/audioinmodule.so
-lib/gephex-0.4/modules/audiooutmodule.a
-lib/gephex-0.4/modules/audiooutmodule.la
-lib/gephex-0.4/modules/audiooutmodule.so
-lib/gephex-0.4/modules/audiospecmodule.a
-lib/gephex-0.4/modules/audiospecmodule.la
-lib/gephex-0.4/modules/audiospecmodule.so
-lib/gephex-0.4/modules/audiosynthmodule.a
-lib/gephex-0.4/modules/audiosynthmodule.la
-lib/gephex-0.4/modules/audiosynthmodule.so
-lib/gephex-0.4/modules/audiovismodule.a
-lib/gephex-0.4/modules/audiovismodule.la
-lib/gephex-0.4/modules/audiovismodule.so
-lib/gephex-0.4/modules/audiowavegenmodule.a
-lib/gephex-0.4/modules/audiowavegenmodule.la
-lib/gephex-0.4/modules/audiowavegenmodule.so
-lib/gephex-0.4/modules/blurmodule.a
-lib/gephex-0.4/modules/blurmodule.la
-lib/gephex-0.4/modules/blurmodule.so
-lib/gephex-0.4/modules/bwmodule.a
-lib/gephex-0.4/modules/bwmodule.la
-lib/gephex-0.4/modules/bwmodule.so
-lib/gephex-0.4/modules/centermodule.a
-lib/gephex-0.4/modules/centermodule.la
-lib/gephex-0.4/modules/centermodule.so
-lib/gephex-0.4/modules/chromakeymodule.a
-lib/gephex-0.4/modules/chromakeymodule.la
-lib/gephex-0.4/modules/chromakeymodule.so
-lib/gephex-0.4/modules/color2numbermodule.a
-lib/gephex-0.4/modules/color2numbermodule.la
-lib/gephex-0.4/modules/color2numbermodule.so
-lib/gephex-0.4/modules/diffmodule.a
-lib/gephex-0.4/modules/diffmodule.la
-lib/gephex-0.4/modules/diffmodule.so
-lib/gephex-0.4/modules/doepfermodule.a
-lib/gephex-0.4/modules/doepfermodule.la
-lib/gephex-0.4/modules/doepfermodule.so
-lib/gephex-0.4/modules/dplmodule.a
-lib/gephex-0.4/modules/dplmodule.la
-lib/gephex-0.4/modules/dplmodule.so
-lib/gephex-0.4/modules/effectv1dmodule.a
-lib/gephex-0.4/modules/effectv1dmodule.la
-lib/gephex-0.4/modules/effectv1dmodule.so
-lib/gephex-0.4/modules/effectvagingmodule.a
-lib/gephex-0.4/modules/effectvagingmodule.la
-lib/gephex-0.4/modules/effectvagingmodule.so
-lib/gephex-0.4/modules/effectvbaltanmodule.a
-lib/gephex-0.4/modules/effectvbaltanmodule.la
-lib/gephex-0.4/modules/effectvbaltanmodule.so
-lib/gephex-0.4/modules/effectvblurzoommodule.a
-lib/gephex-0.4/modules/effectvblurzoommodule.la
-lib/gephex-0.4/modules/effectvblurzoommodule.so
-lib/gephex-0.4/modules/effectvburnmodule.a
-lib/gephex-0.4/modules/effectvburnmodule.la
-lib/gephex-0.4/modules/effectvburnmodule.so
-lib/gephex-0.4/modules/effectvchameleonmodule.a
-lib/gephex-0.4/modules/effectvchameleonmodule.la
-lib/gephex-0.4/modules/effectvchameleonmodule.so
-lib/gephex-0.4/modules/effectvcyclemodule.a
-lib/gephex-0.4/modules/effectvcyclemodule.la
-lib/gephex-0.4/modules/effectvcyclemodule.so
-lib/gephex-0.4/modules/effectvdicemodule.a
-lib/gephex-0.4/modules/effectvdicemodule.la
-lib/gephex-0.4/modules/effectvdicemodule.so
-lib/gephex-0.4/modules/effectvdiffmodule.a
-lib/gephex-0.4/modules/effectvdiffmodule.la
-lib/gephex-0.4/modules/effectvdiffmodule.so
-lib/gephex-0.4/modules/effectvdizzymodule.a
-lib/gephex-0.4/modules/effectvdizzymodule.la
-lib/gephex-0.4/modules/effectvdizzymodule.so
-lib/gephex-0.4/modules/effectvdotmodule.a
-lib/gephex-0.4/modules/effectvdotmodule.la
-lib/gephex-0.4/modules/effectvdotmodule.so
-lib/gephex-0.4/modules/effectvedgemodule.a
-lib/gephex-0.4/modules/effectvedgemodule.la
-lib/gephex-0.4/modules/effectvedgemodule.so
-lib/gephex-0.4/modules/effectvfiremodule.a
-lib/gephex-0.4/modules/effectvfiremodule.la
-lib/gephex-0.4/modules/effectvfiremodule.so
-lib/gephex-0.4/modules/effectvlensmodule.a
-lib/gephex-0.4/modules/effectvlensmodule.la
-lib/gephex-0.4/modules/effectvlensmodule.so
-lib/gephex-0.4/modules/effectvlifemodule.a
-lib/gephex-0.4/modules/effectvlifemodule.la
-lib/gephex-0.4/modules/effectvlifemodule.so
-lib/gephex-0.4/modules/effectvmatrixmodule.a
-lib/gephex-0.4/modules/effectvmatrixmodule.la
-lib/gephex-0.4/modules/effectvmatrixmodule.so
-lib/gephex-0.4/modules/effectvmosaicmodule.a
-lib/gephex-0.4/modules/effectvmosaicmodule.la
-lib/gephex-0.4/modules/effectvmosaicmodule.so
-lib/gephex-0.4/modules/effectvnervousmodule.a
-lib/gephex-0.4/modules/effectvnervousmodule.la
-lib/gephex-0.4/modules/effectvnervousmodule.so
-lib/gephex-0.4/modules/effectvnoisemodule.a
-lib/gephex-0.4/modules/effectvnoisemodule.la
-lib/gephex-0.4/modules/effectvnoisemodule.so
-lib/gephex-0.4/modules/effectvpredatormodule.a
-lib/gephex-0.4/modules/effectvpredatormodule.la
-lib/gephex-0.4/modules/effectvpredatormodule.so
-lib/gephex-0.4/modules/effectvpupmodule.a
-lib/gephex-0.4/modules/effectvpupmodule.la
-lib/gephex-0.4/modules/effectvpupmodule.so
-lib/gephex-0.4/modules/effectvpuzzlemodule.a
-lib/gephex-0.4/modules/effectvpuzzlemodule.la
-lib/gephex-0.4/modules/effectvpuzzlemodule.so
-lib/gephex-0.4/modules/effectvquarkmodule.a
-lib/gephex-0.4/modules/effectvquarkmodule.la
-lib/gephex-0.4/modules/effectvquarkmodule.so
-lib/gephex-0.4/modules/effectvrdsmodule.a
-lib/gephex-0.4/modules/effectvrdsmodule.la
-lib/gephex-0.4/modules/effectvrdsmodule.so
-lib/gephex-0.4/modules/effectvrevmodule.a
-lib/gephex-0.4/modules/effectvrevmodule.la
-lib/gephex-0.4/modules/effectvrevmodule.so
-lib/gephex-0.4/modules/effectvripplemodule.a
-lib/gephex-0.4/modules/effectvripplemodule.la
-lib/gephex-0.4/modules/effectvripplemodule.so
-lib/gephex-0.4/modules/effectvrndmmodule.a
-lib/gephex-0.4/modules/effectvrndmmodule.la
-lib/gephex-0.4/modules/effectvrndmmodule.so
-lib/gephex-0.4/modules/effectvscrollmodule.a
-lib/gephex-0.4/modules/effectvscrollmodule.la
-lib/gephex-0.4/modules/effectvscrollmodule.so
-lib/gephex-0.4/modules/effectvshagadelicmodule.a
-lib/gephex-0.4/modules/effectvshagadelicmodule.la
-lib/gephex-0.4/modules/effectvshagadelicmodule.so
-lib/gephex-0.4/modules/effectvsimuramodule.a
-lib/gephex-0.4/modules/effectvsimuramodule.la
-lib/gephex-0.4/modules/effectvsimuramodule.so
-lib/gephex-0.4/modules/effectvsparkmodule.a
-lib/gephex-0.4/modules/effectvsparkmodule.la
-lib/gephex-0.4/modules/effectvsparkmodule.so
-lib/gephex-0.4/modules/effectvspiralmodule.a
-lib/gephex-0.4/modules/effectvspiralmodule.la
-lib/gephex-0.4/modules/effectvspiralmodule.so
-lib/gephex-0.4/modules/effectvstreakmodule.a
-lib/gephex-0.4/modules/effectvstreakmodule.la
-lib/gephex-0.4/modules/effectvstreakmodule.so
-lib/gephex-0.4/modules/effectvtransformmodule.a
-lib/gephex-0.4/modules/effectvtransformmodule.la
-lib/gephex-0.4/modules/effectvtransformmodule.so
-lib/gephex-0.4/modules/effectvwarholmodule.a
-lib/gephex-0.4/modules/effectvwarholmodule.la
-lib/gephex-0.4/modules/effectvwarholmodule.so
-lib/gephex-0.4/modules/effectvwarpmodule.a
-lib/gephex-0.4/modules/effectvwarpmodule.la
-lib/gephex-0.4/modules/effectvwarpmodule.so
-%%WITH_FFMPEG%%lib/gephex-0.4/modules/ffmpegoutmodule.a
-%%WITH_FFMPEG%%lib/gephex-0.4/modules/ffmpegoutmodule.la
-%%WITH_FFMPEG%%lib/gephex-0.4/modules/ffmpegoutmodule.so
-lib/gephex-0.4/modules/flashmodule.a
-lib/gephex-0.4/modules/flashmodule.la
-lib/gephex-0.4/modules/flashmodule.so
-lib/gephex-0.4/modules/flipflopmodule.a
-lib/gephex-0.4/modules/flipflopmodule.la
-lib/gephex-0.4/modules/flipflopmodule.so
-lib/gephex-0.4/modules/fpsmodule.a
-lib/gephex-0.4/modules/fpsmodule.la
-lib/gephex-0.4/modules/fpsmodule.so
-lib/gephex-0.4/modules/frbinmodule.a
-lib/gephex-0.4/modules/frbinmodule.la
-lib/gephex-0.4/modules/frbinmodule.so
-lib/gephex-0.4/modules/frboutmodule.a
-lib/gephex-0.4/modules/frboutmodule.la
-lib/gephex-0.4/modules/frboutmodule.so
-lib/gephex-0.4/modules/funparsemodule.a
-lib/gephex-0.4/modules/funparsemodule.la
-lib/gephex-0.4/modules/funparsemodule.so
-lib/gephex-0.4/modules/gradnormmodule.a
-lib/gephex-0.4/modules/gradnormmodule.la
-lib/gephex-0.4/modules/gradnormmodule.so
-lib/gephex-0.4/modules/ifsgenmodule.a
-lib/gephex-0.4/modules/ifsgenmodule.la
-lib/gephex-0.4/modules/ifsgenmodule.so
-lib/gephex-0.4/modules/ifsmodule.a
-lib/gephex-0.4/modules/ifsmodule.la
-lib/gephex-0.4/modules/ifsmodule.so
-lib/gephex-0.4/modules/ifsxfadermodule.a
-lib/gephex-0.4/modules/ifsxfadermodule.la
-lib/gephex-0.4/modules/ifsxfadermodule.so
-lib/gephex-0.4/modules/imagebuffermodule.a
-lib/gephex-0.4/modules/imagebuffermodule.la
-lib/gephex-0.4/modules/imagebuffermodule.so
-%%WITH_PNG%%lib/gephex-0.4/modules/imagewritermodule.a
-%%WITH_PNG%%lib/gephex-0.4/modules/imagewritermodule.la
-%%WITH_PNG%%lib/gephex-0.4/modules/imagewritermodule.so
-lib/gephex-0.4/modules/imgarithmodule.a
-lib/gephex-0.4/modules/imgarithmodule.la
-lib/gephex-0.4/modules/imgarithmodule.so
-lib/gephex-0.4/modules/isingnoizemodule.a
-lib/gephex-0.4/modules/isingnoizemodule.la
-lib/gephex-0.4/modules/isingnoizemodule.so
-%%WITH_SDL%%lib/gephex-0.4/modules/joystickmodule.a
-%%WITH_SDL%%lib/gephex-0.4/modules/joystickmodule.la
-%%WITH_SDL%%lib/gephex-0.4/modules/joystickmodule.so
-lib/gephex-0.4/modules/jumpmodule.a
-lib/gephex-0.4/modules/jumpmodule.la
-lib/gephex-0.4/modules/jumpmodule.so
-lib/gephex-0.4/modules/midiccdecmodule.a
-lib/gephex-0.4/modules/midiccdecmodule.la
-lib/gephex-0.4/modules/midiccdecmodule.so
-lib/gephex-0.4/modules/midiinmodule.a
-lib/gephex-0.4/modules/midiinmodule.la
-lib/gephex-0.4/modules/midiinmodule.so
-lib/gephex-0.4/modules/netcontrolmodule.a
-lib/gephex-0.4/modules/netcontrolmodule.la
-lib/gephex-0.4/modules/netcontrolmodule.so
-lib/gephex-0.4/modules/noisemodule.a
-lib/gephex-0.4/modules/noisemodule.la
-lib/gephex-0.4/modules/noisemodule.so
-lib/gephex-0.4/modules/numarithmodule.a
-lib/gephex-0.4/modules/numarithmodule.la
-lib/gephex-0.4/modules/numarithmodule.so
-lib/gephex-0.4/modules/number2colormodule.a
-lib/gephex-0.4/modules/number2colormodule.la
-lib/gephex-0.4/modules/number2colormodule.so
-lib/gephex-0.4/modules/numbermodule.a
-lib/gephex-0.4/modules/numbermodule.la
-lib/gephex-0.4/modules/numbermodule.so
-lib/gephex-0.4/modules/numenvmodule.a
-lib/gephex-0.4/modules/numenvmodule.la
-lib/gephex-0.4/modules/numenvmodule.so
-lib/gephex-0.4/modules/numlfomodule.a
-lib/gephex-0.4/modules/numlfomodule.la
-lib/gephex-0.4/modules/numlfomodule.so
-lib/gephex-0.4/modules/numoscmodule.a
-lib/gephex-0.4/modules/numoscmodule.la
-lib/gephex-0.4/modules/numoscmodule.so
-lib/gephex-0.4/modules/numposmodule.a
-lib/gephex-0.4/modules/numposmodule.la
-lib/gephex-0.4/modules/numposmodule.so
-lib/gephex-0.4/modules/numxfadermodule.a
-lib/gephex-0.4/modules/numxfadermodule.la
-lib/gephex-0.4/modules/numxfadermodule.so
-lib/gephex-0.4/modules/oscinmodule.a
-lib/gephex-0.4/modules/oscinmodule.la
-lib/gephex-0.4/modules/oscinmodule.so
-lib/gephex-0.4/modules/oscmergemodule.a
-lib/gephex-0.4/modules/oscmergemodule.la
-lib/gephex-0.4/modules/oscmergemodule.so
-lib/gephex-0.4/modules/oscnummodule.a
-lib/gephex-0.4/modules/oscnummodule.la
-lib/gephex-0.4/modules/oscnummodule.so
-lib/gephex-0.4/modules/oscoutmodule.a
-lib/gephex-0.4/modules/oscoutmodule.la
-lib/gephex-0.4/modules/oscoutmodule.so
-lib/gephex-0.4/modules/overlaymodule.a
-lib/gephex-0.4/modules/overlaymodule.la
-lib/gephex-0.4/modules/overlaymodule.so
-lib/gephex-0.4/modules/pixelizemodule.a
-lib/gephex-0.4/modules/pixelizemodule.la
-lib/gephex-0.4/modules/pixelizemodule.so
-lib/gephex-0.4/modules/planemodule.a
-lib/gephex-0.4/modules/planemodule.la
-lib/gephex-0.4/modules/planemodule.so
-lib/gephex-0.4/modules/plasmamodule.a
-lib/gephex-0.4/modules/plasmamodule.la
-lib/gephex-0.4/modules/plasmamodule.so
-lib/gephex-0.4/modules/pongmodule.a
-lib/gephex-0.4/modules/pongmodule.la
-lib/gephex-0.4/modules/pongmodule.so
-lib/gephex-0.4/modules/posnummodule.a
-lib/gephex-0.4/modules/posnummodule.la
-lib/gephex-0.4/modules/posnummodule.so
-lib/gephex-0.4/modules/rangeconvertmodule.a
-lib/gephex-0.4/modules/rangeconvertmodule.la
-lib/gephex-0.4/modules/rangeconvertmodule.so
-lib/gephex-0.4/modules/resultmodule.a
-lib/gephex-0.4/modules/resultmodule.la
-lib/gephex-0.4/modules/resultmodule.so
-lib/gephex-0.4/modules/rotozoommodule.a
-lib/gephex-0.4/modules/rotozoommodule.la
-lib/gephex-0.4/modules/rotozoommodule.so
-%%WITH_SDL%%lib/gephex-0.4/modules/sdlfontmodule.a
-%%WITH_SDL%%lib/gephex-0.4/modules/sdlfontmodule.la
-%%WITH_SDL%%lib/gephex-0.4/modules/sdlfontmodule.so
-lib/gephex-0.4/modules/signalgenmodule.a
-lib/gephex-0.4/modules/signalgenmodule.la
-lib/gephex-0.4/modules/signalgenmodule.so
-lib/gephex-0.4/modules/signalplotmodule.a
-lib/gephex-0.4/modules/signalplotmodule.la
-lib/gephex-0.4/modules/signalplotmodule.so
-lib/gephex-0.4/modules/staticcolormodule.a
-lib/gephex-0.4/modules/staticcolormodule.la
-lib/gephex-0.4/modules/staticcolormodule.so
-lib/gephex-0.4/modules/stringtokenizermodule.a
-lib/gephex-0.4/modules/stringtokenizermodule.la
-lib/gephex-0.4/modules/stringtokenizermodule.so
-lib/gephex-0.4/modules/timesourcemodule.a
-lib/gephex-0.4/modules/timesourcemodule.la
-lib/gephex-0.4/modules/timesourcemodule.so
-lib/gephex-0.4/modules/tunnelmodule.a
-lib/gephex-0.4/modules/tunnelmodule.la
-lib/gephex-0.4/modules/tunnelmodule.so
-lib/gephex-0.4/modules/twolayermodule.a
-lib/gephex-0.4/modules/twolayermodule.la
-lib/gephex-0.4/modules/twolayermodule.so
-lib/gephex-0.4/modules/xfademodule.a
-lib/gephex-0.4/modules/xfademodule.la
-lib/gephex-0.4/modules/xfademodule.so
-lib/gephex-0.4/modules/y4minmodule.a
-lib/gephex-0.4/modules/y4minmodule.la
-lib/gephex-0.4/modules/y4minmodule.so
-lib/gephex-0.4/modules/y4moutputmodule.a
-lib/gephex-0.4/modules/y4moutputmodule.la
-lib/gephex-0.4/modules/y4moutputmodule.so
-lib/gephex-0.4/types/audiotype.a
-lib/gephex-0.4/types/audiotype.la
-lib/gephex-0.4/types/audiotype.so
-lib/gephex-0.4/types/envtype.a
-lib/gephex-0.4/types/envtype.la
-lib/gephex-0.4/types/envtype.so
-lib/gephex-0.4/types/framebuffertype.a
-lib/gephex-0.4/types/framebuffertype.la
-lib/gephex-0.4/types/framebuffertype.so
-lib/gephex-0.4/types/ifstype.a
-lib/gephex-0.4/types/ifstype.la
-lib/gephex-0.4/types/ifstype.so
-lib/gephex-0.4/types/lfotype.a
-lib/gephex-0.4/types/lfotype.la
-lib/gephex-0.4/types/lfotype.so
-lib/gephex-0.4/types/miditype.a
-lib/gephex-0.4/types/miditype.la
-lib/gephex-0.4/types/miditype.so
-lib/gephex-0.4/types/numbertype.a
-lib/gephex-0.4/types/numbertype.la
-lib/gephex-0.4/types/numbertype.so
-lib/gephex-0.4/types/osctype.a
-lib/gephex-0.4/types/osctype.la
-lib/gephex-0.4/types/osctype.so
-lib/gephex-0.4/types/positiontype.a
-lib/gephex-0.4/types/positiontype.la
-lib/gephex-0.4/types/positiontype.so
-lib/gephex-0.4/types/rgbtype.a
-lib/gephex-0.4/types/rgbtype.la
-lib/gephex-0.4/types/rgbtype.so
-lib/gephex-0.4/types/stringtype.a
-lib/gephex-0.4/types/stringtype.la
-lib/gephex-0.4/types/stringtype.so
+lib/gephex-%%VERSION%%/modules/audioaddmodule.so
+lib/gephex-%%VERSION%%/modules/audiobdmodule.so
+lib/gephex-%%VERSION%%/modules/audioenergymodule.so
+lib/gephex-%%VERSION%%/modules/audioinmodule.so
+lib/gephex-%%VERSION%%/modules/audiooutmodule.so
+lib/gephex-%%VERSION%%/modules/audiospecmodule.so
+lib/gephex-%%VERSION%%/modules/audiosynthmodule.so
+lib/gephex-%%VERSION%%/modules/audiovismodule.so
+lib/gephex-%%VERSION%%/modules/audiowavegenmodule.so
+lib/gephex-%%VERSION%%/modules/blurmodule.so
+lib/gephex-%%VERSION%%/modules/bwmodule.so
+lib/gephex-%%VERSION%%/modules/centermodule.so
+lib/gephex-%%VERSION%%/modules/chromakeymodule.so
+lib/gephex-%%VERSION%%/modules/color2numbermodule.so
+lib/gephex-%%VERSION%%/modules/colorizemodule.so
+lib/gephex-%%VERSION%%/modules/diffmodule.so
+lib/gephex-%%VERSION%%/modules/doepfermodule.so
+lib/gephex-%%VERSION%%/modules/dplmodule.so
+lib/gephex-%%VERSION%%/modules/effectv1dmodule.so
+lib/gephex-%%VERSION%%/modules/effectvagingmodule.so
+lib/gephex-%%VERSION%%/modules/effectvbaltanmodule.so
+lib/gephex-%%VERSION%%/modules/effectvblurzoommodule.so
+lib/gephex-%%VERSION%%/modules/effectvburnmodule.so
+lib/gephex-%%VERSION%%/modules/effectvchameleonmodule.so
+lib/gephex-%%VERSION%%/modules/effectvcyclemodule.so
+lib/gephex-%%VERSION%%/modules/effectvdicemodule.so
+lib/gephex-%%VERSION%%/modules/effectvdiffmodule.so
+lib/gephex-%%VERSION%%/modules/effectvdizzymodule.so
+lib/gephex-%%VERSION%%/modules/effectvdotmodule.so
+lib/gephex-%%VERSION%%/modules/effectvedgemodule.so
+lib/gephex-%%VERSION%%/modules/effectvfiremodule.so
+lib/gephex-%%VERSION%%/modules/effectvholomodule.so
+lib/gephex-%%VERSION%%/modules/effectvlensmodule.so
+lib/gephex-%%VERSION%%/modules/effectvlifemodule.so
+lib/gephex-%%VERSION%%/modules/effectvmatrixmodule.so
+lib/gephex-%%VERSION%%/modules/effectvmosaicmodule.so
+lib/gephex-%%VERSION%%/modules/effectvnervousmodule.so
+lib/gephex-%%VERSION%%/modules/effectvnoisemodule.so
+lib/gephex-%%VERSION%%/modules/effectvpredatormodule.so
+lib/gephex-%%VERSION%%/modules/effectvpupmodule.so
+lib/gephex-%%VERSION%%/modules/effectvpuzzlemodule.so
+lib/gephex-%%VERSION%%/modules/effectvquarkmodule.so
+lib/gephex-%%VERSION%%/modules/effectvrdsmodule.so
+lib/gephex-%%VERSION%%/modules/effectvrevmodule.so
+lib/gephex-%%VERSION%%/modules/effectvripplemodule.so
+lib/gephex-%%VERSION%%/modules/effectvrndmmodule.so
+lib/gephex-%%VERSION%%/modules/effectvscrollmodule.so
+lib/gephex-%%VERSION%%/modules/effectvshagadelicmodule.so
+lib/gephex-%%VERSION%%/modules/effectvsimuramodule.so
+lib/gephex-%%VERSION%%/modules/effectvsparkmodule.so
+lib/gephex-%%VERSION%%/modules/effectvspiralmodule.so
+lib/gephex-%%VERSION%%/modules/effectvstreakmodule.so
+lib/gephex-%%VERSION%%/modules/effectvtransformmodule.so
+lib/gephex-%%VERSION%%/modules/effectvwarholmodule.so
+lib/gephex-%%VERSION%%/modules/effectvwarpmodule.so
+%%FFMPEG%%lib/gephex-%%VERSION%%/modules/ffmpegoutmodule.so
+lib/gephex-%%VERSION%%/modules/flashmodule.so
+lib/gephex-%%VERSION%%/modules/flipflopmodule.so
+lib/gephex-%%VERSION%%/modules/fpsmodule.so
+lib/gephex-%%VERSION%%/modules/frbinmodule.so
+lib/gephex-%%VERSION%%/modules/frboutmodule.so
+lib/gephex-%%VERSION%%/modules/funparsemodule.so
+lib/gephex-%%VERSION%%/modules/gradnormmodule.so
+lib/gephex-%%VERSION%%/modules/ifsgenmodule.so
+lib/gephex-%%VERSION%%/modules/ifsmodule.so
+lib/gephex-%%VERSION%%/modules/ifsxfadermodule.so
+lib/gephex-%%VERSION%%/modules/imagebuffermodule.so
+%%PNG%%lib/gephex-%%VERSION%%/modules/imagewritermodule.so
+lib/gephex-%%VERSION%%/modules/imgarithmodule.so
+lib/gephex-%%VERSION%%/modules/isingnoizemodule.so
+%%SDL%%lib/gephex-%%VERSION%%/modules/joystickmodule.so
+lib/gephex-%%VERSION%%/modules/jumpmodule.so
+lib/gephex-%%VERSION%%/modules/midiccdecmodule.so
+lib/gephex-%%VERSION%%/modules/midiinmodule.so
+lib/gephex-%%VERSION%%/modules/midikeyrangedecmodule.so
+lib/gephex-%%VERSION%%/modules/midinotedecmodule.so
+lib/gephex-%%VERSION%%/modules/midipitchwdecmodule.so
+lib/gephex-%%VERSION%%/modules/midiprgchdecmodule.so
+lib/gephex-%%VERSION%%/modules/mirrormodule.so
+lib/gephex-%%VERSION%%/modules/netcontrolmodule.so
+lib/gephex-%%VERSION%%/modules/noisemodule.so
+lib/gephex-%%VERSION%%/modules/numarithmodule.so
+lib/gephex-%%VERSION%%/modules/number2colormodule.so
+lib/gephex-%%VERSION%%/modules/numbermodule.so
+lib/gephex-%%VERSION%%/modules/numenvmodule.so
+lib/gephex-%%VERSION%%/modules/numlfomodule.so
+lib/gephex-%%VERSION%%/modules/numoscmodule.so
+lib/gephex-%%VERSION%%/modules/numposmodule.so
+lib/gephex-%%VERSION%%/modules/numxfadermodule.so
+lib/gephex-%%VERSION%%/modules/oscinmodule.so
+lib/gephex-%%VERSION%%/modules/oscmergemodule.so
+lib/gephex-%%VERSION%%/modules/oscnummodule.so
+lib/gephex-%%VERSION%%/modules/oscoutmodule.so
+lib/gephex-%%VERSION%%/modules/overlaymodule.so
+lib/gephex-%%VERSION%%/modules/pixelizemodule.so
+lib/gephex-%%VERSION%%/modules/planemodule.so
+lib/gephex-%%VERSION%%/modules/plasmamodule.so
+lib/gephex-%%VERSION%%/modules/pongmodule.so
+lib/gephex-%%VERSION%%/modules/posnummodule.so
+lib/gephex-%%VERSION%%/modules/rangeconvertmodule.so
+lib/gephex-%%VERSION%%/modules/resultmodule.so
+lib/gephex-%%VERSION%%/modules/rotozoommodule.so
+%%SDL%%lib/gephex-%%VERSION%%/modules/sdlfontmodule.so
+lib/gephex-%%VERSION%%/modules/signalgenmodule.so
+lib/gephex-%%VERSION%%/modules/signalplotmodule.so
+lib/gephex-%%VERSION%%/modules/staticcolormodule.so
+lib/gephex-%%VERSION%%/modules/stringtokenizermodule.so
+lib/gephex-%%VERSION%%/modules/timesourcemodule.so
+lib/gephex-%%VERSION%%/modules/tunnelmodule.so
+lib/gephex-%%VERSION%%/modules/twolayermodule.so
+lib/gephex-%%VERSION%%/modules/xfademodule.so
+lib/gephex-%%VERSION%%/modules/y4minmodule.so
+lib/gephex-%%VERSION%%/modules/y4moutputmodule.so
+lib/gephex-%%VERSION%%/types/audiotype.so
+lib/gephex-%%VERSION%%/types/envtype.so
+lib/gephex-%%VERSION%%/types/framebuffertype.so
+lib/gephex-%%VERSION%%/types/ifstype.so
+lib/gephex-%%VERSION%%/types/lfotype.so
+lib/gephex-%%VERSION%%/types/miditype.so
+lib/gephex-%%VERSION%%/types/numbertype.so
+lib/gephex-%%VERSION%%/types/osctype.so
+lib/gephex-%%VERSION%%/types/positiontype.so
+lib/gephex-%%VERSION%%/types/rgbtype.so
+lib/gephex-%%VERSION%%/types/stringtype.so
 %%PORTDOCS%%%%DOCSDIR%%/html/documentation.html
 %%DATADIR%%/gephex.conf.default
 %%DATADIR%%/graphs/example1
@@ -394,9 +163,8 @@
 @dirrm %%DATADIR%%
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/html
 %%PORTDOCS%%@dirrm %%DOCSDIR%%
- at dirrm lib/gephex-0.4/types
- at dirrm lib/gephex-0.4/modules
- at dirrm lib/gephex-0.4
+ at dirrm lib/gephex-%%VERSION%%/types
+ at dirrm lib/gephex-%%VERSION%%/modules
+ at dirrm lib/gephex-%%VERSION%%
 @dirrm include/gephex/types
- at dirrm include/gephex/misc
 @dirrm include/gephex
>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list