mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
eb5842999b
library is a separate thing. A PR has been opened suggesting that the SSL hack be added to the cclient port. That is the best avenue for now.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# New ports collection makefile for: pine4-ssl
|
|
# Date created: 29 Jul 1999
|
|
# Whom: Nick Sayer <nsayer@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# I spent a <strong>very frustrating</strong> half hour with portlint
|
|
# on this one and could never get it to fewer than 8 frigging warnings.
|
|
# A bit more work got it down to 2 frigging warnings.
|
|
# The warnings are getting harder to fix.
|
|
# Good luck to you. :-P
|
|
|
|
PORTNAME= pine4-ssl
|
|
PORTVERSION= 4.21.1.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail news
|
|
MASTER_SITES= ftp://ftp.cac.washington.edu/pine/ \
|
|
http://www.kfu.com/~nsayer/encryption/software/
|
|
DISTNAME= pine4+ssl-1.4
|
|
DISTFILES= pine4.21${EXTRACT_SUFX}
|
|
|
|
PATCH_SITES= http://www.kfu.com/~nsayer/encryption/software/
|
|
PATCHFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= nsayer@freebsd.org
|
|
|
|
BROKEN= "The c-client library is no longer built in the pine port, and that's where the SSL hacking needs to happen"
|
|
|
|
EXTRACT_ONLY= pine4.21${EXTRACT_SUFX}
|
|
|
|
WRKSRC= ${WRKDIR}/pine4.21
|
|
|
|
MASTERDIR= ${.CURDIR}/../pine4
|
|
|
|
FILESDIR= ${.CURDIR}/files
|
|
|
|
EXTRA_PATCHES= ${FILESDIR}/extrapatch-*
|
|
|
|
USE_OPENSSL= YES
|
|
|
|
post-extract:
|
|
( cd ${WRKSRC} ; tar xfz ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} )
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ./build bsf EXTRAAUTHENTICATORS=ssl)
|
|
|
|
.include "${MASTERDIR}/Makefile"
|