Commit 918cade1 authored by Rene Ladan's avatar Rene Ladan
Browse files

benchmarks/dbs: Remove expired port

2023-08-16 benchmarks/dbs: Broken on all supported releases for more than an year
parent fb156d66
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7790,3 +7790,4 @@ security/rubygem-openssl2|security/rubygem-openssl|2023-08-21|Remove obsoleted p
games/cataclysm-dda-tiles|games/cataclysm-dda@tiles|2023-08-22|Moved to a flavored version
devel/lua-language-server||2023-08-22|Has expired: Versions after 3.6.9 dump core (and do not compile)
security/py-netbox-secretstore|security/py-netbox-secrets|2023-08-22|Has expired: No longer maintained by upstream, not compatible with NetBox 3.5, please migrate to security/py-netbox-secrets
benchmarks/dbs||2023-08-22|Has expired: Broken on all supported releases for more than an year
+0 −1
Original line number Diff line number Diff line
@@ -10,7 +10,6 @@
    SUBDIR += clpeak
    SUBDIR += cpipe
    SUBDIR += dbench
    SUBDIR += dbs
    SUBDIR += ddosify
    SUBDIR += dhrystone
    SUBDIR += dkftpbench

benchmarks/dbs/Makefile

deleted100644 → 0
+0 −58
Original line number Diff line number Diff line
PORTNAME=	dbs
PORTVERSION=	1.1.5
PORTREVISION=	7
CATEGORIES=	benchmarks
MASTER_SITES=	http://www.kusa.ac.jp/~yukio-m/dbs/software1.1.5/ \
		LOCAL/jkoshy

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Distributed network benchmarking system
WWW=		http://www.kusa.ac.jp/~yukio-m/dbs/

LICENSE=	BSD3CLAUSE

DEPRECATED=	Broken on all supported releases for more than an year
EXPIRATION_DATE=	2023-08-16
BROKEN_FreeBSD_12=	tcp_debug.h: field has incomplete type 'struct tcpcb'
BROKEN_FreeBSD_13=	tcp_debug.h: field has incomplete type 'struct tcpcb'
BROKEN_FreeBSD_14=	tcp_debug.h: field has incomplete type 'struct tcpcb'

RUN_DEPENDS=	gnuplot:math/gnuplot

BUILD_WRKSRC=	${WRKSRC}/obj/${OPSYS}
INSTALL_WRKSRC=	${WRKSRC}/obj/${OPSYS}

USES=		perl5
USE_PERL5=	run
MAKEFILE=	makefile

PLIST_FILES=	bin/dbs_view bin/dbsc bin/dbsd
PORTDOCS=	*
PORTEXAMPLES=	*

OPTIONS_DEFINE=	DOCS EXAMPLES

pre-build:
	cd ${WRKSRC}/src && ${MAKE_CMD} dir

do-install:
.for bin in dbsc dbsd
	${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/${bin} ${STAGEDIR}${PREFIX}/bin
.endfor
.for bin in dbs_view
	${INSTALL_SCRIPT} ${WRKSRC}/script/${bin} ${STAGEDIR}${PREFIX}/bin
.endfor

do-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in Copyright dbs.man dbs.man.jis dbs_paper.ps
	${INSTALL_DATA} ${WRKSRC}/doc/${doc} ${STAGEDIR}${DOCSDIR}
.endfor

do-install-EXAMPLES-on:
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for ex in TCP2.cmd TCPvsMPEG.cmd
	${INSTALL_DATA} ${WRKSRC}/sample/${ex} ${STAGEDIR}${EXAMPLESDIR}
.endfor

.include <bsd.port.mk>

benchmarks/dbs/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (dbs-1.1.5.tar.gz) = 07f21f041258b83d65659b0ce0b61dd62cddef2fad3318be4bc49f934ed618ea
SIZE (dbs-1.1.5.tar.gz) = 363150
+0 −33
Original line number Diff line number Diff line
--- src/Makefile.orig	1998-06-08 00:25:16 UTC
+++ src/Makefile
@@ -27,10 +27,10 @@
 #    make install
 #
 
-BIN     =/usr/local/etc
+BIN     = ${PREFIX}/bin
 
 #CC     =gcc
-CFLAGS  =-O
+CFLAGS  +=-DHAVE_SYS_PARAM_H
 
 #CFLAGS	=-g                    # debug
 #CFLAGS =-g -DDEBUGMODE
@@ -51,7 +51,7 @@ all:: dbsc dbsd
 obj::
 	(cd ../obj/$(UNAME); make)
 
-UNAME = `uname|tr -d '/'``uname -r|tr -d '/'`
+UNAME = `uname|tr -d '/'`
 dir::
 	-@ mkdir ../obj
 	-@ mkdir ../obj/$(UNAME)
@@ -74,7 +74,7 @@ tags::
 	etags *.c *.h
 
 install::
-	cp -p dbsc dbsd ../script/dbs_view $(BIN)
+	cp -p dbsc dbsd ../../script/dbs_view $(BIN)
 
 dbsc: dbsc.o scan.o dbs.o
 	$(CC) $(BSTATIC) dbsc.o scan.o dbs.o -o $@ -lm $(LDFLAGS)
Loading