diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-12-14 20:36:21 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-12-14 20:36:21 +0000 |
commit | 7f69caf1662b5a61948f92fe86b03d280f7304cf (patch) | |
tree | b734655ae8254786cb8cdabb8925ea2c346b0a47 /graphics/xmrm | |
parent | f9908166723b3f34c561cae4ef70e55de1b19d55 (diff) | |
download | ports-7f69caf1662b5a61948f92fe86b03d280f7304cf.tar.gz ports-7f69caf1662b5a61948f92fe86b03d280f7304cf.zip |
Notes
Diffstat (limited to 'graphics/xmrm')
-rw-r--r-- | graphics/xmrm/Makefile | 6 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-Makefile (renamed from graphics/xmrm/files/patch-aa) | 14 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-ab | 18 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-ac | 20 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-ae | 19 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-const.h | 25 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-io.cc | 93 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-xmrm.cc | 11 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-xmrm_main.cc | 42 | ||||
-rw-r--r-- | graphics/xmrm/files/patch-xmrm_mpeg_main.cc (renamed from graphics/xmrm/files/patch-ag) | 11 |
10 files changed, 192 insertions, 67 deletions
diff --git a/graphics/xmrm/Makefile b/graphics/xmrm/Makefile index f181a7d22f62..ca96a22a7955 100644 --- a/graphics/xmrm/Makefile +++ b/graphics/xmrm/Makefile @@ -7,7 +7,7 @@ PORTNAME= xmrm PORTVERSION= 2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= ftp://ftp.cg.tuwien.ac.at/pub/linux/xmrm/ \ ftp://ftp.uni-passau.de/mount/common.lib.archive.unix/Graphic/xmrm/ @@ -16,10 +16,12 @@ EXTRACT_SUFX= .tgz MAINTAINER= treif@mayn.de -RUN_DEPENDS= mpeg:${PORTSDIR}/graphics/mpeg +RUN_DEPENDS= mpeg:${PORTSDIR}/graphics/mpeg \ + mpeg_play:${PORTSDIR}/graphics/mpeg_play LIB_DEPENDS= forms.1:${PORTSDIR}/x11-toolkits/xforms \ tiff.4:${PORTSDIR}/graphics/tiff +USE_X_PREFIX= yes USE_XPM= yes NO_WRKSUBDIR= yes diff --git a/graphics/xmrm/files/patch-aa b/graphics/xmrm/files/patch-Makefile index dd13f58e8a17..2939f1080e32 100644 --- a/graphics/xmrm/files/patch-aa +++ b/graphics/xmrm/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile.orig Mon Mar 9 18:00:00 1998 -+++ Makefile Mon Jul 1 03:46:01 2002 +--- Makefile.orig Tue Mar 10 00:00:00 1998 ++++ Makefile Fri Nov 29 18:20:50 2002 @@ -16,8 +16,8 @@ # ############################################################################## @@ -15,13 +15,13 @@ # -c: don't link yet #COMPILE_FLAGS = -O3 -m486 -c -+.if exists(${X11BASE}/include/X11/forms.h) -+XFORMSINC = -I${X11BASE}/include/X11 ++.if exists(${PREFIX}/include/X11/forms.h) ++XFORMSINC = -I${PREFIX}/include/X11 +.endif + # -O: normal optimization level -c: don't link yet -COMPILE_FLAGS = -O -c -+COMPILE_FLAGS = ${CFLAGS} -I${PREFIX}/include -I${X11BASE}/include ${XFORMSINC} -c ++COMPILE_FLAGS = ${CFLAGS} -I${LOCALBASE}/include -I${PREFIX}/include ${XFORMSINC} -c # -s: DESTROYS symbol-table -LINK_FLAGS = -s @@ -30,8 +30,8 @@ -SYSLIB = -L/usr/X11R6/lib -lX11 -lm -LIBS = -L/usr/lib -ltiff -ljpeg -lgz -lforms -lXpm $(SYSLIB) -+SYSLIB = -L${X11BASE}/lib -lX11 -lm -+LIBS = -L${PREFIX}/lib -ltiff -ljpeg -lz -lforms -lXpm $(SYSLIB) ++SYSLIB = -L${PREFIX}/lib -lX11 -lGL -lGLU -lm ++LIBS = -L${LOCALBASE}/lib -ltiff -ljpeg -lz -lforms -lXpm $(SYSLIB) OBJECTS = xmrm.o xmrm_cb.o io.o morphvec.o init.o wavemorph.o wave_rts.o wave.o\ areas.o xmrm_main.o diff --git a/graphics/xmrm/files/patch-ab b/graphics/xmrm/files/patch-ab deleted file mode 100644 index 6806849d26e0..000000000000 --- a/graphics/xmrm/files/patch-ab +++ /dev/null @@ -1,18 +0,0 @@ ---- const.h.orig Mon Mar 9 18:00:00 1998 -+++ const.h Mon Jul 1 03:46:45 2002 -@@ -3,12 +3,14 @@ - // Programming: Gerhard Waldhör, Andreas Artmann - - #include <stdio.h> --#include <malloc.h> -+#include <stdlib.h> - #include <errno.h> - #include <math.h> - -+#ifndef TRUE - #define TRUE 1 - #define FALSE 0 -+#endif - - #define MAX_PIC_NUM 999 - diff --git a/graphics/xmrm/files/patch-ac b/graphics/xmrm/files/patch-ac deleted file mode 100644 index 9d77d4929ef3..000000000000 --- a/graphics/xmrm/files/patch-ac +++ /dev/null @@ -1,20 +0,0 @@ ---- io.cc.orig Mon Mar 9 17:00:00 1998 -+++ io.cc Tue Mar 28 15:27:12 2000 -@@ -87,7 +87,7 @@ - extern ControlClass control; - - /* Constructor: */ --ControlClass::ControlClass() -+void ControlClass::ControlClassInit() - { - int i; - -@@ -1720,7 +1720,7 @@ - // extension--; - - i=0; -- number = ".000."; -+ strcpy(number, ".000."); - while ( !(extension = strstr(extension,number)) && i<=999 ) - { - i++; diff --git a/graphics/xmrm/files/patch-ae b/graphics/xmrm/files/patch-ae deleted file mode 100644 index 70f7a3dae5df..000000000000 --- a/graphics/xmrm/files/patch-ae +++ /dev/null @@ -1,19 +0,0 @@ ---- xmrm_main.cc.orig Mon Mar 9 17:00:00 1998 -+++ xmrm_main.cc Tue Mar 28 15:23:34 2000 -@@ -6,7 +6,6 @@ - #include <tiffio.h> - #include <stdlib.h> - #include <unistd.h> --#include <malloc.h> //**************** - #include "xmrm.h" - #include "io.h" - #include "const.h" -@@ -308,7 +307,7 @@ - control.debug = 0; - - /* Init control: */ -- control.ControlClass(); // call constructor -+ control.ControlClassInit(); // call constructor - temp = control.URL_manual; - - while( (c=getopt(argc, argv, "hdm:p:")) != -1) diff --git a/graphics/xmrm/files/patch-const.h b/graphics/xmrm/files/patch-const.h new file mode 100644 index 000000000000..14305845539c --- /dev/null +++ b/graphics/xmrm/files/patch-const.h @@ -0,0 +1,25 @@ +--- const.h.orig Tue Mar 10 00:00:00 1998 ++++ const.h Fri Nov 29 17:33:22 2002 +@@ -3,12 +3,14 @@ + // Programming: Gerhard Waldhör, Andreas Artmann + + #include <stdio.h> +-#include <malloc.h> ++#include <stdlib.h> + #include <errno.h> + #include <math.h> + ++#ifndef TRUE + #define TRUE 1 + #define FALSE 0 ++#endif + + #define MAX_PIC_NUM 999 + +@@ -83,3 +85,6 @@ + + #define BW -1 // Borderwidth of objects + #define ABW abs(BW) // absolute value of BW, needed for 'akima'- and 'wavelet-levels'-plots ++ ++#define BROWSER_CMD "mozilla" ++#define BROWSER_MSG "Starts MOZILLA" diff --git a/graphics/xmrm/files/patch-io.cc b/graphics/xmrm/files/patch-io.cc new file mode 100644 index 000000000000..612e48245343 --- /dev/null +++ b/graphics/xmrm/files/patch-io.cc @@ -0,0 +1,93 @@ +--- io.cc.orig Tue Mar 10 00:00:00 1998 ++++ io.cc Fri Nov 29 18:01:04 2002 +@@ -87,7 +87,7 @@ + extern ControlClass control; + + /* Constructor: */ +-ControlClass::ControlClass() ++void ControlClass::ControlClassInit() + { + int i; + +@@ -573,7 +573,7 @@ + TIFFSetField(tif,TIFFTAG_IMAGELENGTH,size_h); + TIFFSetField(tif,TIFFTAG_BITSPERSAMPLE,8); + TIFFSetField(tif,TIFFTAG_SAMPLESPERPIXEL,4); +- TIFFSetField(tif,TIFFTAG_COMPRESSION,COMPRESSION_LZW); // free for non-commercial use (so I read) ++ TIFFSetField(tif,TIFFTAG_COMPRESSION,COMPRESSION_DEFLATE); + TIFFSetField(tif,TIFFTAG_PLANARCONFIG,PLANARCONFIG_CONTIG); + TIFFSetField(tif,TIFFTAG_PHOTOMETRIC,PHOTOMETRIC_RGB); + TIFFSetField(tif,TIFFTAG_ORIENTATION,ORIENTATION_TOPLEFT); +@@ -1154,7 +1154,9 @@ + if ( proj.akima_points[i][0] < 0.0 || proj.akima_points[i][0] > 1.0 ||\ + proj.akima_points[i][1] < 0.0 || proj.akima_points[i][1] > 1.0 ) + wrong_value = TRUE; +- control.akima_P[i] = proj.akima_points[i]; ++ ++ control.akima_P[i][0] = proj.akima_points[i][0]; ++ control.akima_P[i][1] = proj.akima_points[i][1]; + } + if( wrong_value || control.akima_nr < AKIMA_MIN || control.akima_nr > AKIMA_MAX ) + { +@@ -1387,9 +1389,10 @@ + proj.wavelets[0] = control.b_bias_val[0]; + + proj.akima_nr = control.akima_nr; +- for ( i = 0; i < control.akima_nr; i++) +- proj.akima_points[i] = control.akima_P[i]; +- ++ for ( i = 0; i < control.akima_nr; i++) { ++ proj.akima_points[i][0] = control.akima_P[i][0]; ++ proj.akima_points[i][1] = control.akima_P[i][1]; ++ } + proj.weight_a = control.warp_a; + proj.weight_b = control.warp_b; + proj.weight_p = control.warp_p; +@@ -1720,7 +1723,7 @@ + // extension--; + + i=0; +- number = ".000."; ++ strcpy(number, ".000."); + while ( !(extension = strstr(extension,number)) && i<=999 ) + { + i++; +@@ -2336,20 +2339,20 @@ + break; + + case 37:// BT_Drop: +- sprintf(cmdbuf,"netscape %s &", control.URL_CG_Home); ++ sprintf(cmdbuf,"%s %s &", BROWSER_CMD, control.URL_CG_Home); + test = system(cmdbuf); + if ( test==-1 || test==127 ) + { +- fl_show_alert("ERROR:","Execution of Netscape failed !","",1); ++ fl_show_alert("ERROR:","Execution of Browser failed !","",1); + } + break; + + case 38:// BT_TU_Logo: +- sprintf(cmdbuf,"netscape %s &", control.URL_TU_Vienna); ++ sprintf(cmdbuf,"%s %s &", BROWSER_CMD, control.URL_TU_Vienna); + test = system(cmdbuf); + if ( test==-1 || test==127 ) + { +- fl_show_alert("ERROR:","Execution of Netscape failed !","",1); ++ fl_show_alert("ERROR:","Execution of Browser failed !","",1); + } + break; + +@@ -2599,11 +2602,11 @@ + switch (item) + { + case 1://Manual (Netscape) +- sprintf(cmdbuf,"netscape %s &", control.URL_manual); ++ sprintf(cmdbuf,"%s %s &", BROWSER_CMD, control.URL_manual); + test = system(cmdbuf); + if ( test==-1 || test==127 ) + { +- fl_show_alert("ERROR:","Execution of Netscape failed !","",1); ++ fl_show_alert("ERROR:","Execution of Browser failed !","",1); + } + break; + case 2://About diff --git a/graphics/xmrm/files/patch-xmrm.cc b/graphics/xmrm/files/patch-xmrm.cc new file mode 100644 index 000000000000..dde1548b1bf4 --- /dev/null +++ b/graphics/xmrm/files/patch-xmrm.cc @@ -0,0 +1,11 @@ +--- xmrm.cc.orig Fri Nov 29 18:03:08 2002 ++++ xmrm.cc Fri Nov 29 17:41:19 2002 +@@ -362,7 +362,7 @@ + // fl_set_object_boxtype(obj,FL_NO_BOX); + fl_set_object_lsize(obj,FL_NORMAL_SIZE); + fl_set_object_lstyle(obj,FL_BOLD_STYLE); +- fl_set_menu(obj, "HTML-Manual (Netscape)%l|ABOUT"); ++ fl_set_menu(obj, "HTML-Manual%l|ABOUT"); + fl_set_object_callback(obj,callback_Menus,3); + + //******************************** SLIDERS ************************************************************* diff --git a/graphics/xmrm/files/patch-xmrm_main.cc b/graphics/xmrm/files/patch-xmrm_main.cc new file mode 100644 index 000000000000..5b23e1e3fcc9 --- /dev/null +++ b/graphics/xmrm/files/patch-xmrm_main.cc @@ -0,0 +1,42 @@ +--- xmrm_main.cc.orig Tue Mar 10 00:00:00 1998 ++++ xmrm_main.cc Fri Nov 29 17:42:05 2002 +@@ -6,7 +6,6 @@ + #include <tiffio.h> + #include <stdlib.h> + #include <unistd.h> +-#include <malloc.h> //**************** + #include "xmrm.h" + #include "io.h" + #include "const.h" +@@ -115,7 +114,7 @@ + // CREDITS_post_handler + int CREDITS_post_handler(FL_OBJECT *ob, int event, FL_Coord mx, FL_Coord my, int key, void *xev) + { +- char s[] = "Starts NETSCAPE !"; ++ char s[] = BROWSER_MSG; + + if (ob == fd_CREDITS->BT_Drop) + { +@@ -170,10 +169,11 @@ + s="Morph Source Image into Destination Image according to your settings !"; + else if (ob == fd_MRM->BT_Drop) + { +- s = "Click this pixmap to start Netscape and visit the Institute of Computer Graphics !"; ++ s = "Click this pixmap to visit the Institute of Computer Graphics !"; + if (event == FL_ENTER) + { +- fl_show_oneliner("Starts NETSCAPE !", ob->form->x + ob->x, ob->form->y + ob->y + ob->h + 1); ++ fl_show_oneliner("Visit Institute of Computer Graphics", ob->form->x + ob->x, ob->form->y + ob->y + ob->h + 1); ++ + fl_set_pixmapbutton_pixmap(ob, xpm_drop_shadow, 0); + fl_redraw_object(ob); + } +@@ -308,7 +308,7 @@ + control.debug = 0; + + /* Init control: */ +- control.ControlClass(); // call constructor ++ control.ControlClassInit(); // call constructor + temp = control.URL_manual; + + while( (c=getopt(argc, argv, "hdm:p:")) != -1) diff --git a/graphics/xmrm/files/patch-ag b/graphics/xmrm/files/patch-xmrm_mpeg_main.cc index 383465251e04..f931edd5f69d 100644 --- a/graphics/xmrm/files/patch-ag +++ b/graphics/xmrm/files/patch-xmrm_mpeg_main.cc @@ -1,5 +1,5 @@ --- xmrm_mpeg_main.cc.orig Tue Mar 10 00:00:00 1998 -+++ xmrm_mpeg_main.cc Wed Jul 19 15:43:38 2000 ++++ xmrm_mpeg_main.cc Fri Nov 29 15:06:47 2002 @@ -8,6 +8,7 @@ #include <forms.h> #include <unistd.h> @@ -17,6 +17,15 @@ while ( !(*ext = strstr(fname_only,backup_class->number_str)) && (count <= MAX_PIC_NUM) ) { +@@ -329,7 +330,7 @@ + TIFFSetField(tif,TIFFTAG_IMAGELENGTH,even_height); + TIFFSetField(tif,TIFFTAG_BITSPERSAMPLE,8); + TIFFSetField(tif,TIFFTAG_SAMPLESPERPIXEL,4); +- TIFFSetField(tif,TIFFTAG_COMPRESSION,COMPRESSION_LZW); // free for non-commercial use (so I read) ++ TIFFSetField(tif,TIFFTAG_COMPRESSION,COMPRESSION_DEFLATE); + TIFFSetField(tif,TIFFTAG_PLANARCONFIG,PLANARCONFIG_CONTIG); + TIFFSetField(tif,TIFFTAG_PHOTOMETRIC,PHOTOMETRIC_RGB); + TIFFSetField(tif,TIFFTAG_ORIENTATION,ORIENTATION_TOPLEFT); @@ -417,7 +418,7 @@ // Check for even picture size if ( (tif_w % 2) || (tif_h % 2) ) |