Commit 5e7f3368 authored by Rene Ladan's avatar Rene Ladan
Browse files

math/xgraph: Remove expired port

2026-04-30 math/xgraph: Obsolete software, unmaintained upstream
parent 563fb63d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5268,3 +5268,4 @@ lang/elm||2026-05-04|Has expired: Depends on a deprecated compiler's version
ports-mgmt/portsnap||2026-05-04|Has expired: portsnap infrastructure will be removed after the EOL of 13.x
lang/ruby32||2026-05-04|Has expired: Please migrate to newer version. Ruby 3.2 is expected to reach its EoL on March 31, 2026
lang/ghc92||2026-05-04|Has expired: Old version
math/xgraph||2026-05-04|Has expired: Obsolete software, unmaintained upstream
+0 −1
Original line number Diff line number Diff line
@@ -1316,7 +1316,6 @@
    SUBDIR += xblas
    SUBDIR += xfce4-calculator-plugin
    SUBDIR += xgap
    SUBDIR += xgraph
    SUBDIR += xlapack
    SUBDIR += xldlas
    SUBDIR += xlife++

math/xgraph/Makefile

deleted100644 → 0
+0 −39
Original line number Diff line number Diff line
PORTNAME=	xgraph
PORTVERSION=	11.3.2.20000910
PORTREVISION=	6
CATEGORIES=	math print
MASTER_SITES=	ftp://ftp.cs.utoronto.ca/pub/radford/
DISTNAME=	xgraph-11

MAINTAINER=	bofh@FreeBSD.org
COMMENT=	Program that helps you plot graphs

DEPRECATED=	Obsolete software, unmaintained upstream
EXPIRATION_DATE=	2026-04-30

LICENSE=	XGRAPH
LICENSE_NAME=	xgraph license
LICENSE_FILE=	${WRKSRC}/COPYING
LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept

USES=		imake tar:Z xorg
USE_XORG=	x11 xext

WRKSRC=		${WRKDIR}/${PORTNAME}

OPTIONS_DEFINE=	EXAMPLES

.include <bsd.port.options.mk>

.if ${OPSYS} == FreeBSD
CFLAGS+=	-Wno-error=int-conversion
.endif

post-extract:
	@${SED} -ne '2,19 {s|^ \* *||;p;}' < ${WRKSRC}/copyright.h > ${WRKSRC}/COPYING

post-install-EXAMPLES-on:
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/examples/xgraph
	${INSTALL_DATA} ${WRKSRC}/examples/*.xg ${STAGEDIR}${PREFIX}/share/examples/xgraph

.include <bsd.port.mk>

math/xgraph/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (xgraph-11.tar.Z) = ecba2b5d044f0e323da3a9fcdf245caca7a1c056c8378d9d50316861ebd7b99b
SIZE (xgraph-11.tar.Z) = 157489

math/xgraph/files/patch-dialog.c

deleted100644 → 0
+0 −20
Original line number Diff line number Diff line
--- dialog.c.orig	2000-08-03 16:40:44 UTC
+++ dialog.c
@@ -702,7 +702,7 @@ xtb_frame *frame;		/* Returned frame */
     new_info->lines = (Window *) malloc((unsigned) (sizeof(Window) * E_LINES));
 
     lineptr = text;
-    while (getline(&lineptr, line)) {
+    while (get_line(&lineptr, line)) {
 	if (new_info->num_lines >= new_info->alloc_lines) {
 	    new_info->alloc_lines *= 2;
 	    new_info->lines = (Window *) realloc((char *) new_info->lines,
@@ -800,7 +800,7 @@ char *err_text;
 
 
 
-int getline(tptr, lptr)
+int get_line(tptr, lptr)
 char **tptr;
 char *lptr;
 /*
Loading