git: 4d516638fa7c - main - security/starttls: Unbreak on HEAD
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 02 May 2023 16:32:37 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=4d516638fa7cbf043a47f6df63ea94ff72c3f2d6 commit 4d516638fa7cbf043a47f6df63ea94ff72c3f2d6 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2023-05-02 15:54:51 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2023-05-02 16:32:25 +0000 security/starttls: Unbreak on HEAD - Add LICENSE GPLv2 - Adopt port --- security/starttls/Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/security/starttls/Makefile b/security/starttls/Makefile index 63bba8fb71ac..f364e8077546 100644 --- a/security/starttls/Makefile +++ b/security/starttls/Makefile @@ -1,16 +1,25 @@ PORTNAME= starttls PORTVERSION= 0.10 -PORTREVISION= 28 +PORTREVISION= 29 CATEGORIES= security MASTER_SITES= ftp://ftp.opaopa.org/pub/elisp/ PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bofh@FreeBSD.org COMMENT= Simple wrapper program for STARTTLS on ${EMACS_PORT_NAME} +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + USES= emacs gmake ssl GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400079 +CFLAGS+= -Wno-error=int-conversion +.endif + +.include <bsd.port.post.mk>