diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-07-23 23:09:39 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-07-23 23:09:39 +0800 |
commit | adfbac9e2057fe96dcd4ee13739e65bbeb35f9cb (patch) | |
tree | d8f93c821b4c528973bbdf85785d18629f2b7c91 /cad/jspice3 | |
parent | 20c140c307eae824bee5fcf6add1fae9e1587723 (diff) | |
download | freebsd-ports-gnome-adfbac9e2057fe96dcd4ee13739e65bbeb35f9cb.tar.gz freebsd-ports-gnome-adfbac9e2057fe96dcd4ee13739e65bbeb35f9cb.tar.zst freebsd-ports-gnome-adfbac9e2057fe96dcd4ee13739e65bbeb35f9cb.zip |
- Add options to allow user to select whether to depend on X or not
- Fix return status of build shell script to make 'make' happy
Added file(s):
- files/patch-src+bin+help.c
- files/patch-src+lib+plot+x11.c
PR: ports/100652
Submitted by: Stanislav Sedov <ssedov@mbsd.msk.ru> (maintainer)
Diffstat (limited to 'cad/jspice3')
-rw-r--r-- | cad/jspice3/Makefile | 16 | ||||
-rw-r--r-- | cad/jspice3/files/patch-build | 21 | ||||
-rw-r--r-- | cad/jspice3/files/patch-conf+unixconf+mkheader.0 | 12 | ||||
-rw-r--r-- | cad/jspice3/files/patch-src+bin+help.c | 27 | ||||
-rw-r--r-- | cad/jspice3/files/patch-src+lib+plot+x11.c | 20 |
5 files changed, 89 insertions, 7 deletions
diff --git a/cad/jspice3/Makefile b/cad/jspice3/Makefile index d474b0794965..8d3040d01f0a 100644 --- a/cad/jspice3/Makefile +++ b/cad/jspice3/Makefile @@ -7,7 +7,7 @@ PORTNAME= jspice3 PORTVERSION= 2.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= cad MASTER_SITES= http://www.wrcad.com/ftp/pub/ \ ftp://ftp.srware.com/pub/ @@ -17,12 +17,24 @@ COMMENT= An adaptation of the Berkeley Spice3f4 with superconductivity CONFLICTS= spice-[0-9]* +OPTIONS= X "Use X window system" on + +.include <bsd.port.pre.mk> + +.if !defined(WITHOUT_X) USE_XLIB= yes +.endif pre-configure: @${REINPLACE_CMD} -e 's+/usr/local+${PREFIX}+g ; \ s+-O -g+${CFLAGS}+g;' \ ${WRKSRC}/conf/unixconf/mkheader.0 +.if !defined(WITHOUT_X) + @${REINPLACE_CMD} -e 's+#%%WITH_X%%++g' \ + ${WRKSRC}/conf/unixconf/mkheader.0 +.else + @${ECHO} "#undef HAVE_X11" >> ${WRKSRC}/src/include/spice.h +.endif do-build: @(cd ${WRKSRC};${SETENV} ${MAKE_ENV} ${SH} build) @@ -37,4 +49,4 @@ post-install: ${RM} -R ${PREFIX}/lib/jspice3/examples .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/cad/jspice3/files/patch-build b/cad/jspice3/files/patch-build index b0c50f3532c8..38a7cfe67c2f 100644 --- a/cad/jspice3/files/patch-build +++ b/cad/jspice3/files/patch-build @@ -1,11 +1,26 @@ ---- build.orig Fri Jul 14 23:07:15 2006 -+++ build Fri Jul 14 23:07:32 2006 +--- build.orig Tue May 1 09:37:12 2001 ++++ build Fri Jul 21 06:27:29 2006 @@ -22,7 +22,7 @@ echo '#######################################################################'> conf/mkheader.in echo '####### Makefile generated by build script ############################'>> conf/mkheader.in echo VERSION = $version>> conf/mkheader.in - echo DATE = `/bin/date`>> conf/mkheader.in -+ echo DATE = `/bin/env LANG=C /bin/date`>> conf/mkheader.in ++ echo DATE = `/usr/bin/env LANG=C /bin/date`>> conf/mkheader.in echo '#######################################################################'>> conf/mkheader.in cat conf/unixconf/mkheader.0 >> conf/mkheader.in else +@@ -92,8 +92,14 @@ + fi + echo Creating makefiles in the subdirectories... + $makeprog make ++ if [ $? -ne 0 ]; then ++ exit $? ++ fi + echo ...done + $makeprog all 2> ../../errs ++ if [ $? -ne 0 ]; then ++ exit $? ++ fi + echo done + echo Check the errs file for any problems. + echo To finish the installation, cd to src/bin, become root, and type diff --git a/cad/jspice3/files/patch-conf+unixconf+mkheader.0 b/cad/jspice3/files/patch-conf+unixconf+mkheader.0 index ba90de34b67e..aa176fedc96e 100644 --- a/cad/jspice3/files/patch-conf+unixconf+mkheader.0 +++ b/cad/jspice3/files/patch-conf+unixconf+mkheader.0 @@ -1,5 +1,5 @@ ---- conf/unixconf/mkheader.0.orig Tue Feb 28 16:30:32 2006 -+++ conf/unixconf/mkheader.0 Tue Feb 28 16:36:32 2006 +--- conf/unixconf/mkheader.0.orig Tue Jan 15 19:15:36 2002 ++++ conf/unixconf/mkheader.0 Fri Jul 21 06:11:55 2006 @@ -18,7 +18,7 @@ BUG_ADDR = stevew@srware.com @@ -9,3 +9,11 @@ # spice daemon log file SPICED_LOG = /tmp/spiced.log +@@ -43,6 +43,6 @@ + LDFLAGS = @LIBS@ + RANLIB = @RANLIB@ + INCX = @X_CFLAGS@ +-LIBX = @X_PRE_LIBS@ @X_LIBS@ -lXaw -lXt -lXext -lXmu -lX11 @X_EXTRA_LIBS@ ++#%%WITH_X%%LIBX = @X_PRE_LIBS@ @X_LIBS@ -lXaw -lXt -lXext -lXmu -lX11 @X_EXTRA_LIBS@ + INTERFACE_OPTS = -DWANT_MFB -DWANT_X11 + MFB = mfb diff --git a/cad/jspice3/files/patch-src+bin+help.c b/cad/jspice3/files/patch-src+bin+help.c new file mode 100644 index 000000000000..36b0e428d1f6 --- /dev/null +++ b/cad/jspice3/files/patch-src+bin+help.c @@ -0,0 +1,27 @@ +--- src/bin/help.c.orig Fri Jul 21 06:16:08 2006 ++++ src/bin/help.c Fri Jul 21 06:18:15 2006 +@@ -14,6 +14,7 @@ + #include <pwd.h> + #endif + ++static char *hcopydev; + #ifdef HAVE_X11 + + #include <X11/Intrinsic.h> +@@ -22,7 +23,6 @@ + Display *Xdisplay; + static XtAppContext app_con; + static Widget toplevel; +-static char *hcopydev; + + static String fallback_resources[] = { + +@@ -188,7 +188,7 @@ + { + if (!strcmp(n, kw_hcopydev)) { + strcpy(r, hcopydev); +- return (True); ++ return (1); + } + return (false); + } diff --git a/cad/jspice3/files/patch-src+lib+plot+x11.c b/cad/jspice3/files/patch-src+lib+plot+x11.c new file mode 100644 index 000000000000..1a909a6ec70e --- /dev/null +++ b/cad/jspice3/files/patch-src+lib+plot+x11.c @@ -0,0 +1,20 @@ +--- src/lib/plot/x11.c.orig Thu Sep 2 21:43:35 2004 ++++ src/lib/plot/x11.c Fri Jul 21 06:06:00 2006 +@@ -2205,7 +2205,7 @@ + void + com_setrdb(wl) + +-wordlist *wl; ++void *wl; + { + /* be silent */ + } +@@ -2213,7 +2213,7 @@ + int + PopUpErrMessage(fp) + +-File *fp; ++void *fp; + { + return (0); + } |