will become opaque, so this will no longer compile. Upstream never updated this to be compatible with OpenSSL 1.1, so patch out the port's copy of LibreSSL code and replace it with LibreSSL API. ok jturner (maintainer)
29 lines
568 B
Makefile
29 lines
568 B
Makefile
# $OpenBSD: Makefile,v 1.11 2021/10/18 22:12:23 tb Exp $
|
|
|
|
COMMENT = POP3 daemon with POP3S and STARTTLS extensions
|
|
|
|
VERSION = 1.0.2
|
|
GH_ACCOUNT = snimmagadda
|
|
GH_PROJECT = pop3d
|
|
GH_TAGNAME = v${VERSION}
|
|
DISTNAME = ${GH_PROJECT}-${VERSION}
|
|
CATEGORIES = mail
|
|
REVISION = 2
|
|
|
|
MAINTAINER = James Turner <james@calminferno.net>
|
|
|
|
HOMEPAGE = https://github.com/snimmagadda/pop3d/
|
|
|
|
# ISC
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = c crypto event ssl util
|
|
|
|
MAKE_FLAGS = BINDIR="${PREFIX}/sbin" \
|
|
MANDIR="${PREFIX}/man/man" \
|
|
DEBUG=""
|
|
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|