mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
5e8d0a0dd3
Reported by: pointyhat
37 lines
787 B
Makefile
37 lines
787 B
Makefile
# New ports collection makefile for: libdkim
|
|
# Date created: 03 Oct 2008
|
|
# Whom: Sergey Skvortsov <skv@protey.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libdkim
|
|
PORTVERSION= 1.0.17
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://duncanthrax.net/exim-experimental/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-tk
|
|
|
|
MAINTAINER= skv@FreeBSD.org
|
|
COMMENT= DKIM (DomainKeys Identified Mail) library
|
|
|
|
USE_LDCONFIG= YES
|
|
SHLIB_MAJOR= 1
|
|
PLIST_SUB= SHLIB_MAJOR="${SHLIB_MAJOR}"
|
|
|
|
USE_OPENSSL= YES
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 700000
|
|
BROKEN= does not compile on FreeBSD 6.x
|
|
.endif
|
|
|
|
post-patch:
|
|
${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.prev
|
|
@${SED} -e "s=%%SHLIB_MAJOR%%=${SHLIB_MAJOR}=g" \
|
|
${FILESDIR}/Makefile > ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|