Commit 0537cfd0 authored by Rene Ladan's avatar Rene Ladan
Browse files

www/webstone-ssl: Remove expired port:

2023-06-01 www/webstone-ssl: Requires upstream EOL OpenSSL 1.0.X
parent ea709754
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7605,3 +7605,4 @@ sysutils/puppetserver6|sysutils/puppetserver7|2023-06-01|Has expired: Puppet 6 h
databases/puppetdb6|databases/puppetdb7|2023-06-01|Has expired: Puppet 6 has reached EOL
databases/puppetdb-terminus6|databases/puppetdb-terminus7|2023-06-01|Has expired: Puppet 6 has reached EOL
sysutils/boxbackup-devel||2023-06-01|Has expired: Requires upstream EOL OpenSSL 1.0.X
www/webstone-ssl||2023-06-01|Has expired: Requires upstream EOL OpenSSL 1.0.X
+0 −1
Original line number Diff line number Diff line
@@ -2407,7 +2407,6 @@
    SUBDIR += websocat
    SUBDIR += websocketd
    SUBDIR += webstone
    SUBDIR += webstone-ssl
    SUBDIR += webtrees20
    SUBDIR += webtrees21
    SUBDIR += wget2

www/webstone-ssl/Makefile

deleted100644 → 0
+0 −60
Original line number Diff line number Diff line
PORTNAME=	webstone
PORTVERSION=	2.5
PORTREVISION=	4
CATEGORIES=	www benchmarks
MASTER_SITES=	http://crypto.stanford.edu/~nagendra/projects/WebStone/download/
PKGNAMESUFFIX=	-ssl
DISTNAME=	WebStone-SSL-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	World wide web server benchmarking with SSL support
WWW=		https://crypto.stanford.edu/~nagendra/projects/WebStone/

DEPRECATED=	Requires upstream EOL OpenSSL 1.0.X
EXPIRATION_DATE=	2023-06-01

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		perl5 shebangfix tar:tgz ssl
USE_PERL5=	run
SHEBANG_FILES=	bin/*.wpl bin/*.pl
perl_OLD_CMD=	/bin/perl5 /usr/local/bin/perl5.001
GNU_CONFIGURE=	yes
WRKSRC=		${WRKDIR}/WebStone${PORTVERSION}
CONFIGURE_WRKSRC=	${WRKSRC}/src
BUILD_WRKSRC=	${WRKSRC}/src
ALL_TARGET=	install
MAKE_JOBS_UNSAFE=	yes

CFLAGS+=	-I${OPENSSLINC}
LDFLAGS+=	-L${OPENSSLLIB}

.include <bsd.port.pre.mk>

.if ${SSL_DEFAULT} == base
BROKEN_FreeBSD_12=	incomplete definition of type 'struct ssl_st'
BROKEN_FreeBSD_13=	incomplete definition of type 'struct ssl_st'
BROKEN_FreeBSD_14=	incomplete definition of type 'struct ssl_st'
.endif

pre-configure:
	@${RM} ${WRKSRC}/src/config.cache

do-install:
	@${RMDIR} ${WRKSRC}/bin/runs
	@${MKDIR} ${STAGEDIR}${PREFIX}/webstone-ssl/bin
	@${MKDIR} ${STAGEDIR}${PREFIX}/webstone-ssl/conf
	@${MKDIR} ${STAGEDIR}${PREFIX}/webstone-ssl/lgm
	${INSTALL_SCRIPT} ${WRKSRC}/bin/* ${STAGEDIR}${PREFIX}/webstone-ssl/bin
	${INSTALL_SCRIPT} ${WRKSRC}/lgm/* ${STAGEDIR}${PREFIX}/webstone-ssl/lgm
	${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${PREFIX}/webstone-ssl/conf
	${INSTALL_SCRIPT} ${WRKSRC}/webstone  ${STAGEDIR}${PREFIX}/webstone-ssl
.for i in webclient webmaster genrand
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/bin/${i}
.endfor
.for i in ws20_cgi ws25_cgi
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/webstone-ssl/lgm/${i}
.endfor

.include <bsd.port.post.mk>

www/webstone-ssl/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (WebStone-SSL-2.5.tgz) = 249fca5a07aa3a9b77957f5c14bfba0bed5de9133851c2b7116e05212fd31a1c
SIZE (WebStone-SSL-2.5.tgz) = 1062421
+0 −37
Original line number Diff line number Diff line
--- src/Makefile.in.orig	2000-06-15 20:49:19 UTC
+++ src/Makefile.in
@@ -29,7 +29,7 @@ PRODUCT = @PRODUCT@
 VERSION = @VERSION@
 
 CC		= @CC@
-LIBS		= @LIBS@ -lssl -lcrypto	#-lm 
+LIBS		= @LIBS@ -lssl -lcrypto	-lcompat #-lm 
 LDFLAGS         = @LDFLAGS@
 INCLUDES	= 
 CFLAGS		= @CFLAGS@ -DSTONE_SSL
@@ -47,11 +47,11 @@ EXECUTABLE3	= genrand
 MAIN3		= genrand.c
 
 MASTERSRCS	= timefunc.c bench.c parse_file_list.c statistics.c \
-		  errexit.c sysdep.c
+		  errexit.c sysdep.c random.c
 
 STONESRCS	= timefunc.c get.c \
 		  parse_file_list.c bench.c statistics.c errexit.c \
-		  sysdep.c
+		  sysdep.c random.c
 
 COMPILE         = $(CC) $(CFLAGS) $(DEFS) $(INCLUDES)
 
@@ -64,9 +64,9 @@ TARGETS = $(EXECUTABLE1) $(EXECUTABLE2) 
 .SUFFIXES:
 .SUFFIXES: .c .o
 
-all:	$(TARGETS) cgi api
+all:	$(TARGETS) cgi
 
-install: all install-api install-cgi
+install: all install-cgi
 	$(CP) $(TARGETS) $(BINDIR)
 
 pure: all
Loading