Commit c652d21c authored by Yuri Victorovich's avatar Yuri Victorovich
Browse files

math/reduce: Remove in favor of math/reduce-psl

parent c8525b9d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5378,3 +5378,4 @@ net-im/libaccounts-qt@qt6|net-im/libaccounts-qt|2026-06-22|Unflavorize
science/minc2|science/minc-tools|2026-06-24|Split into science/minc-tools and science/libminc
www/xist|www/py-ll-xist|2026-06-24|Use correct Python package name
net/seda||2026-06-26|Has expired: old, no users in the ports tree, unmaintained, uses long deprecated code removed in jdk25
math/reduce|math/reduce-psl|2026-06-28|Remove duplicate port, use math/reduce-psl instead
+0 −1
Original line number Diff line number Diff line
@@ -1187,7 +1187,6 @@
    SUBDIR += randlib
    SUBDIR += rankwidth
    SUBDIR += readstat
    SUBDIR += reduce
    SUBDIR += reduce-psl
    SUBDIR += reed-solomon
    SUBDIR += rehearse

math/reduce/Makefile

deleted100644 → 0
+0 −65
Original line number Diff line number Diff line
PORTNAME=	reduce
PORTVERSION=	${SFSUBDIR:S/snapshot_//:S/-//g}
PORTREVISION=	3
CATEGORIES=	math lang
MASTER_SITES=	SF/${PORTNAME}-algebra/${SFSUBDIR}/
DISTNAME=	Reduce-svn6339-src

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Codemist Standard Lisp REDUCE general-purpose computer system
WWW=		http://www.reduce-algebra.com/

LICENSE=	BSD2CLAUSE

BROKEN_FreeBSD_15_aarch64=	the bootstrapreduce build phase runs in too high memory and is killed by the system
BROKEN_FreeBSD_15_amd64=	the bootstrapreduce build phase runs in too high memory and is killed by the system
BROKEN_armv7=	fails to compile: error: no viable overloaded '=': return *this = int128_t(rhs);
BROKEN_i386=	fails to compile: sysv.S:832:1: changed section flags for .eh_frame, expected: 0x2

BUILD_DEPENDS=	gnuplot:math/gnuplot
LIB_DEPENDS=	libfontconfig.so:x11-fonts/fontconfig \
		libfreetype.so:print/freetype2 \
		libpng.so:graphics/png \
		libtiff.so:graphics/tiff

USES=		autoreconf:build libtool gmake ncurses jpeg xorg
USE_XORG=	x11 xcursor xext xorgproto xft xrandr xrender

SFSUBDIR=	snapshot_2022-06-17

TARGET_SDIR=	${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL}
CPPFLAGS+=	-I${NCURSESINC}

# Avoid GNU_CONFIGURE as it breaks staging
HAS_CONFIGURE=	yes
ALL_TARGET=

MAKE_JOBS_UNSAFE=	yes

CONFIGURE_ARGS=	--with-csl
CPPFLAGS+=	`freetype-config --cflags`
LDFLAGS+=	`freetype-config --libs`

REDUCE_BINS=	${WRKSRC}/cslbuild/${TARGET_SDIR}

OPTIONS_DEFINE=	DOCS

do-install:
	${MKDIR} ${STAGEDIR}${DATADIR}
	${INSTALL_DATA} ${REDUCE_BINS}/csl/reduce.img ${STAGEDIR}${DATADIR}
	${INSTALL_PROGRAM} ${REDUCE_BINS}/csl/reduce ${STAGEDIR}${DATADIR}
	${INSTALL_SCRIPT} ${FILESDIR}/runcsl.sh ${STAGEDIR}${PREFIX}/bin/redcsl
	${INSTALL_MAN} ${FILESDIR}/redcsl.1 ${STAGEDIR}${PREFIX}/share/man/man1/
	${MKDIR} ${STAGEDIR}${DATADIR}/reduce.doc
	(cd ${REDUCE_BINS}/csl/reduce.doc && ${COPYTREE_SHARE} . \
	    ${STAGEDIR}${DATADIR}/reduce.doc)
	${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR}
	(cd ${REDUCE_BINS}/csl/reduce.fonts && ${COPYTREE_SHARE} . \
	    ${STAGEDIR}${DATADIR}/reduce.fonts)
	${MKDIR} ${STAGEDIR}${DOCSDIR}
	${INSTALL_DATA} ${WRKSRC}/doc/manual/manual.pdf\
	    ${STAGEDIR}${DOCSDIR}
	${INSTALL_DATA} ${WRKSRC}/doc/primers/*.pdf \
	    ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>

math/reduce/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1659678464
SHA256 (Reduce-svn6339-src.tar.gz) = fba8567372126431bd60a14d780dc584e4677eb3275af351a5109552e7a62d4a
SIZE (Reduce-svn6339-src.tar.gz) = 242370067
+0 −11
Original line number Diff line number Diff line
--- csl/fox/configure.ac.orig	2018-06-17 19:20:00 UTC
+++ csl/fox/configure.ac
@@ -166,7 +166,7 @@ if test "x$enable_release" = "xyes" && test "x$enable_
       CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -fstrict-aliasing"
       ;;
   *)
-      CXXFLAGS="${CXXFLAGS} -Wuninitialized -fomit-frame-pointer -ffast-math -fstrict-aliasing -finline-functions -fexpensive-optimizations"
+      CXXFLAGS="${CXXFLAGS} -Wuninitialized -fomit-frame-pointer -ffast-math -fstrict-aliasing -finline-functions"
       LDFLAGS="-s ${LDFLAGS}"
       ;;
     esac
Loading