mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
OpenSSL 1 calls EVP_PKEY_get_bits() EVP_PKEY_bits(). Add a compatibility stub to fix the build. While here bump the portrevision, which we neglected to do in the previous change.
27 lines
490 B
Makefile
27 lines
490 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= voucher
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # none
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= coreteam@pfsense.org
|
|
COMMENT= Voucher support
|
|
|
|
WHERE= bin
|
|
PLIST_FILES= ${WHERE}/${PORTNAME}
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} -lssl -lcrypto ${FILESDIR}/${PORTNAME}.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/${WHERE}/
|
|
|
|
.include <bsd.port.mk>
|