diff options
author | Will Andrews <will@FreeBSD.org> | 2002-04-19 02:30:02 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2002-04-19 02:30:02 +0000 |
commit | e05ed36727813c752300995435b0dc1aee51ecc3 (patch) | |
tree | d926f0f9b039ccf866d06988fbb956f5373cb5b9 /math/xgfe | |
parent | a9115fa27e6e7ffe5911b46d8498cdc5eff851fc (diff) | |
download | ports-e05ed36727813c752300995435b0dc1aee51ecc3.tar.gz ports-e05ed36727813c752300995435b0dc1aee51ecc3.zip |
Notes
Diffstat (limited to 'math/xgfe')
-rw-r--r-- | math/xgfe/Makefile | 31 | ||||
-rw-r--r-- | math/xgfe/distinfo | 1 | ||||
-rw-r--r-- | math/xgfe/files/patch-aa | 42 | ||||
-rw-r--r-- | math/xgfe/files/patch-ab | 28 | ||||
-rw-r--r-- | math/xgfe/files/patch-ac | 12 | ||||
-rw-r--r-- | math/xgfe/pkg-comment | 1 | ||||
-rw-r--r-- | math/xgfe/pkg-descr | 2 | ||||
-rw-r--r-- | math/xgfe/pkg-plist | 28 |
8 files changed, 0 insertions, 145 deletions
diff --git a/math/xgfe/Makefile b/math/xgfe/Makefile deleted file mode 100644 index 7ce80a21b125..000000000000 --- a/math/xgfe/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# New ports collection makefile for: xgfe -# Date created: 24 March 1998 -# Whom: Matthew Hunt <mph@pobox.com> -# -# $FreeBSD$ -# - -PORTNAME= xgfe -PORTVERSION= 2.0 -CATEGORIES= math -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= mph - -MAINTAINER= mph@freebsd.org - -RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot - -USE_QT_VER= 1 -USE_X_PREFIX= yes - -MAKE_ENV= X11BASE=$(X11BASE) PREFIX=$(PREFIX) -.if defined(NOPORTDOCS) -MAKE_ENV+= NOPORTDOCS=$(NOPORTDOCS) -.endif - -WRKSRC= $(WRKDIR)/$(DISTNAME)/source - -post-extract: - cd $(WRKSRC) && ${RM} Makefile && ${LN} -s Makefile.freebsd-gcc Makefile - -.include <bsd.port.mk> diff --git a/math/xgfe/distinfo b/math/xgfe/distinfo deleted file mode 100644 index 150d5f0c967e..000000000000 --- a/math/xgfe/distinfo +++ /dev/null @@ -1 +0,0 @@ -MD5 (xgfe-2.0.tar.gz) = 2994ae3e9475b1fcb4eb7791ca3c33ae diff --git a/math/xgfe/files/patch-aa b/math/xgfe/files/patch-aa deleted file mode 100644 index ef42d0c8c58c..000000000000 --- a/math/xgfe/files/patch-aa +++ /dev/null @@ -1,42 +0,0 @@ ---- Makefile.freebsd-gcc.orig Sat Mar 21 21:04:38 1998 -+++ Makefile.freebsd-gcc Fri Apr 10 13:28:16 1998 -@@ -7,12 +7,13 @@ - - ####### Compiler, tools and options - --CC = gcc --CFLAGS = -Wall -W -O2 -fno-strength-reduce --INCPATH = -I$(QTDIR)/include --LINK = gcc -+#CC = gcc -+#CFLAGS = -Wall -W -O2 -fno-strength-reduce -+QTDIR = $(X11BASE) -+INCPATH = -I$(X11BASE)/include/X11/qt -+LINK = $(CXX) - LFLAGS = --LIBS = -L$(QTDIR)/lib -lqt -L/usr/X11R6/lib -lX11 -+LIBS = -L$(QTDIR)/lib -lqt -L$(X11BASE)/lib -lX11 - MOC = moc - - ####### Files -@@ -161,16 +162,16 @@ - .SUFFIXES: .cpp .cxx .cc .C .c - - .cpp.o: -- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< -+ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $< - - .cxx.o: -- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< -+ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $< - - .cc.o: -- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< -+ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $< - - .C.o: -- $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< -+ $(CXX) -c $(CFLAGS) $(INCPATH) -o $@ $< - - .c.o: - $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< diff --git a/math/xgfe/files/patch-ab b/math/xgfe/files/patch-ab deleted file mode 100644 index 2ecb111c3494..000000000000 --- a/math/xgfe/files/patch-ab +++ /dev/null @@ -1,28 +0,0 @@ ---- Makefile.common.orig Tue May 26 22:09:43 1998 -+++ Makefile.common Wed Jun 10 15:00:13 1998 -@@ -2,8 +2,8 @@ - - # modify starting here - --INSTALL_BIN = /usr/local/bin --INSTALL_DOC = /usr/local/doc/xgfe-$(VERSION) -+INSTALL_BIN = $(PREFIX)/bin -+INSTALL_DOC = $(PREFIX)/share/doc/xgfe - STATIC_TARGET = xgfe-static - - # end modifications -@@ -15,10 +15,11 @@ - strip $(STATIC_TARGET) - - install: -- cp $(TARGET) $(INSTALL_BIN) -+ $(BSD_INSTALL_PROGRAM) $(TARGET) $(INSTALL_BIN) -+.if !defined(NOPORTDOCS) - mkdir -p $(INSTALL_DOC) -- cp ../doc/* $(INSTALL_DOC)/ -- strip $(INSTALL_BIN)/$(TARGET) -+ $(BSD_INSTALL_DATA) ../doc/* $(INSTALL_DOC)/ -+.endif - - uninstall: - rm $(INSTALL_BIN)$(TARGET) diff --git a/math/xgfe/files/patch-ac b/math/xgfe/files/patch-ac deleted file mode 100644 index 0bfa74ad7fdc..000000000000 --- a/math/xgfe/files/patch-ac +++ /dev/null @@ -1,12 +0,0 @@ ---- xgfeMainData.cpp.orig Sun Jun 7 14:39:29 1998 -+++ xgfeMainData.cpp Sat Feb 12 05:00:10 2000 -@@ -34,6 +34,9 @@ - #include <qpushbt.h> - #include <qlayout.h> - -+#define QColor(i) (QColor)(i) -+#define QRgb(i) (QRgb)(i) -+ - xgfeMainData::xgfeMainData - ( - QWidget* parent = 0, diff --git a/math/xgfe/pkg-comment b/math/xgfe/pkg-comment deleted file mode 100644 index 02bd0dd0db06..000000000000 --- a/math/xgfe/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -An X11 front-end for Gnuplot diff --git a/math/xgfe/pkg-descr b/math/xgfe/pkg-descr deleted file mode 100644 index 1c6c6f01d74f..000000000000 --- a/math/xgfe/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -An X11-based front-end for Gnuplot, written in C++ with the -Qt library. diff --git a/math/xgfe/pkg-plist b/math/xgfe/pkg-plist deleted file mode 100644 index 621b1c9d125e..000000000000 --- a/math/xgfe/pkg-plist +++ /dev/null @@ -1,28 +0,0 @@ -bin/xgfe -share/doc/xgfe/CHANGES -share/doc/xgfe/curve-fitting.gif -share/doc/xgfe/features.html -share/doc/xgfe/file-options.gif -share/doc/xgfe/filelegendtitle.gif -share/doc/xgfe/filemenu.gif -share/doc/xgfe/fileplottypes.gif -share/doc/xgfe/filestyles.gif -share/doc/xgfe/latexterm.gif -share/doc/xgfe/legend-options.gif -share/doc/xgfe/mainwindow.gif -share/doc/xgfe/multi-files.gif -share/doc/xgfe/multi-funcs.gif -share/doc/xgfe/open.gif -share/doc/xgfe/optionsmenu.gif -share/doc/xgfe/pbmterm.gif -share/doc/xgfe/plot-size.gif -share/doc/xgfe/psterm.gif -share/doc/xgfe/rawgnu.gif -share/doc/xgfe/screenshots.html -share/doc/xgfe/terminals.gif -share/doc/xgfe/ticsoptions.gif -share/doc/xgfe/xgfe-abb.jpg -share/doc/xgfe/xgfe-docs.html -share/doc/xgfe/xgfe-main.jpg -share/doc/xgfe/xgfe.html -@dirrm share/doc/xgfe |