aboutsummaryrefslogtreecommitdiff
path: root/cad
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2004-11-15 22:51:06 +0000
committerThierry Thomas <thierry@FreeBSD.org>2004-11-15 22:51:06 +0000
commitff5b935600605172f21ecc0006d825537a340bbe (patch)
tree3b3f3806250b8dbc5cc6badaaf1b488ea67749ce /cad
parentf1276c2b78edffe4b3adfca2d29e86addd64c846 (diff)
downloadports-ff5b935600605172f21ecc0006d825537a340bbe.tar.gz
ports-ff5b935600605172f21ecc0006d825537a340bbe.zip
Notes
Diffstat (limited to 'cad')
-rw-r--r--cad/Makefile1
-rw-r--r--cad/triangle/Makefile36
-rw-r--r--cad/triangle/distinfo2
-rw-r--r--cad/triangle/files/patch-makefile20
-rw-r--r--cad/triangle/files/patch-showme.c11
-rw-r--r--cad/triangle/pkg-descr11
6 files changed, 0 insertions, 81 deletions
diff --git a/cad/Makefile b/cad/Makefile
index 4ad66d8e03ed..318c9a6e0dcd 100644
--- a/cad/Makefile
+++ b/cad/Makefile
@@ -51,7 +51,6 @@
SUBDIR += tkgate
SUBDIR += tochnog
SUBDIR += transcalc
- SUBDIR += triangle
SUBDIR += varkon
SUBDIR += vipec
SUBDIR += xcircuit
diff --git a/cad/triangle/Makefile b/cad/triangle/Makefile
deleted file mode 100644
index 47d30a03ec00..000000000000
--- a/cad/triangle/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# New ports collection makefile for: triangle
-# Date created: 16 Octobre 2004
-# Whom: Thierry Thomas <thierry@pompo.net>
-#
-# $FreeBSD$
-#
-
-PORTNAME= triangle
-PORTVERSION= 1.5
-CATEGORIES= cad
-MASTER_SITES= http://cm.bell-labs.com/netlib/voronoi/
-DISTNAME= ${PORTNAME}
-DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A Two-Dimensional Quality Mesh Generator and Delaunay Triangulator
-
-NO_CDROM= Triangle must not be sold for profit
-
-USE_ZIP= yes
-USE_XLIB= yes
-MAKEFILE= makefile
-
-WRKSRC= ${WRKDIR}
-
-PLIST_FILES= bin/triangle bin/showme
-
-do-install:
- ${INSTALL_PROGRAM} ${PLIST_FILES:S|^bin|${WRKSRC}|} ${PREFIX}/bin
-
-.if defined(MAINTAINER_MODE)
-test: build
- (cd ${INSTALL_WRKSRC} && ./triangle -p A.poly && ./showme A.1.poly)
-.endif
-
-.include <bsd.port.mk>
diff --git a/cad/triangle/distinfo b/cad/triangle/distinfo
deleted file mode 100644
index f46475f032b0..000000000000
--- a/cad/triangle/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (triangle-1.5/triangle.zip) = b21af03259aba872c32daf923a96aa00
-SIZE (triangle-1.5/triangle.zip) = 157525
diff --git a/cad/triangle/files/patch-makefile b/cad/triangle/files/patch-makefile
deleted file mode 100644
index abd4ddd335d2..000000000000
--- a/cad/triangle/files/patch-makefile
+++ /dev/null
@@ -1,20 +0,0 @@
---- makefile.orig Wed Apr 28 05:13:34 2004
-+++ makefile Sat Oct 16 22:54:43 2004
-@@ -18,7 +18,7 @@
-
- # CC should be set to the name of your favorite C compiler.
-
--CC = cc
-+# CC = cc
-
- # CSWITCHES is a list of all switches passed to the C compiler. I strongly
- # recommend using the best level of optimization. I also strongly
-@@ -71,7 +71,7 @@
- #
- # CSWITCHES = -O -DNO_TIMER -DLINUX -I/usr/X11R6/include -L/usr/X11R6/lib
-
--CSWITCHES = -O -DLINUX -I/usr/X11R6/include -L/usr/X11R6/lib
-+CSWITCHES = ${CFLAGS} -I${X11BASE}/include -L${X11BASE}/lib
-
- # TRILIBDEFS is a list of definitions used to compile an object code version
- # of Triangle (triangle.o) to be called by another program. The file
diff --git a/cad/triangle/files/patch-showme.c b/cad/triangle/files/patch-showme.c
deleted file mode 100644
index 7d0ee0736a2e..000000000000
--- a/cad/triangle/files/patch-showme.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./showme.c.orig Wed Apr 28 05:13:34 2004
-+++ ./showme.c Sat Oct 16 23:00:09 2004
-@@ -106,6 +106,8 @@
- #include <X11/Xutil.h>
- #include <X11/Xatom.h>
-
-+#include <stdlib.h>
-+
- /* The following obscenity seems to be necessary to ensure that this program */
- /* will port to Dec Alphas running OSF/1, because their stdio.h file commits */
- /* the unpardonable sin of including stdlib.h. Hence, malloc(), free(), and */
diff --git a/cad/triangle/pkg-descr b/cad/triangle/pkg-descr
deleted file mode 100644
index b6edb5a8d7bc..000000000000
--- a/cad/triangle/pkg-descr
+++ /dev/null
@@ -1,11 +0,0 @@
-Triangle generates exact Delaunay triangulations, constrained Delaunay
-triangulations, Voronoi diagrams, and quality conforming Delaunay
-triangulations. The latter can be generated with no small angles, and
-are thus suitable for finite element analysis.
-
-Show Me graphically displays (using X) the contents of geometric files,
-especially those generated by Triangle, my two-dimensional quality mesh
-generator and Delaunay triangulator.
-Show Me can also write PostScript images to files.
-
-WWW: http://www-2.cs.cmu.edu/~quake/triangle.html