1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/sysutils/aimage/Makefile
Tobias Kortkamp 0734cd7c74 sysutils/aimage: Unbreak build with Clang 6
- Also fix build with LibreSSL: The configure script checks that
  libssl has ssl3_new() which LibreSSL doesn't have but aimage itself
  never uses it, so pretend it's there to pass the check.

PR:		228756
Reported by:	Chris Hutchinson <portmaster@bsdforge.com>
Submitted by:	tobik
Approved by:	Chris Hutchinson <portmaster@bsdforge.com> (maintainer)
2018-06-06 12:29:15 +00:00

27 lines
592 B
Makefile

# Created by: Chris Calvey <chris@securityforensics.co.uk>
# $FreeBSD$
PORTNAME= aimage
PORTVERSION= 3.2.5
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= http://digitalcorpora.org/downloads/
MAINTAINER= portmaster@BSDforge.com
COMMENT= Advanced Disk Imager
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libafflib.so:sysutils/afflib
USES= gmake readline ssl
GNU_CONFIGURE= yes
# Pretend ssl3_new exists for LibreSSL. It's never really used but
# configure checks for it.
CONFIGURE_ARGS= ac_cv_lib_ssl_ssl3_new=yes
PLIST_FILES= bin/aimage
.include <bsd.port.mk>