From owner-svn-ports-all@freebsd.org Sat May 2 17:45:46 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 361B72D5C6A; Sat, 2 May 2020 17:45:46 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49DxNp0mV6z4Rlj; Sat, 2 May 2020 17:45:46 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 134B72565C; Sat, 2 May 2020 17:45:46 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 042Hjjwe057781; Sat, 2 May 2020 17:45:45 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 042HjjGx057779; Sat, 2 May 2020 17:45:45 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202005021745.042HjjGx057779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 2 May 2020 17:45:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533697 - in head/mail/akpop3d: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: in head/mail/akpop3d: . files X-SVN-Commit-Revision: 533697 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 May 2020 17:45:46 -0000 Author: mandree Date: Sat May 2 17:45:45 2020 New Revision: 533697 URL: https://svnweb.freebsd.org/changeset/ports/533697 Log: mail/akpop3d: unbreak port, un-expire While here, default-enable SSL option. PR: 241776 Submitted by: takefu@airport.fm MFH: 2020Q2 (blanket, fixing BROKEN= port) Added: head/mail/akpop3d/files/ head/mail/akpop3d/files/akpop3d.in (contents, props changed) Modified: head/mail/akpop3d/Makefile Modified: head/mail/akpop3d/Makefile ============================================================================== --- head/mail/akpop3d/Makefile Sat May 2 17:03:33 2020 (r533696) +++ head/mail/akpop3d/Makefile Sat May 2 17:45:45 2020 (r533697) @@ -4,15 +4,11 @@ PORTNAME= akpop3d PORTVERSION= 0.7.7 CATEGORIES= mail -MASTER_SITES= http://www.synflood.at/akpop3d/ +MASTER_SITES= https://synflood.at/akpop3d/ MAINTAINER= ports@FreeBSD.org COMMENT= POP3 daemon aimed to be small and secure -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING @@ -21,12 +17,18 @@ GNU_CONFIGURE= yes PLIST_FILES= bin/akpop3d man/man8/akpop3d.8.gz -OPTIONS_DEFINE= SSL +OPTIONS_DEFINE= SSL +OPTIONS_DEFAULT= SSL SSL_USES= ssl SSL_CONFIGURE_WITH= openssl=${OPENSSLBASE} SSL_CPPFLAGS= -I${OPENSSLBASE}/include SSL_LDFLAGS= -L${OPENSSLBASE}/lib + +USE_RC_SUBR= akpop3d + +pre-patch: + @${REINPLACE_CMD} -e "s,STRLCPY_h,STRLCPY_H," ${WRKSRC}/strlcpy.h do-install: ${INSTALL_PROGRAM} ${WRKSRC}/akpop3d ${STAGEDIR}${PREFIX}/bin Added: head/mail/akpop3d/files/akpop3d.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/akpop3d/files/akpop3d.in Sat May 2 17:45:45 2020 (r533697) @@ -0,0 +1,20 @@ +#!/bin/sh +# $FreeBSD$ +# +# PROVIDE: akpop3d +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: shutdown + +. /etc/rc.subr + +name=akpop3d +rcvar=akpop3d_enable + +command="%%PREFIX%%/bin/${name}" +command_args="-d -l0" + +pidfile="/var/run/${name}.pid" + +load_rc_config $name +run_rc_command "$1"