mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
bd84b72bdf
Add SSL support to both Add pkg-req.rev to detect version Add pkg-req.ssl to keep track of ssl versions PR: 28289 Submitted by: maintainer
82 lines
2.6 KiB
Makefile
82 lines
2.6 KiB
Makefile
# New ports collection makefile for: cclient
|
|
# Date created: 2 July 2000
|
|
# Whom: Kelly Yancey <kbyanc@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cclient
|
|
PORTVERSION= 0106191041
|
|
CATEGORIES= mail devel
|
|
MASTER_SITES= ftp://ftp.cac.washington.edu/imap/ \
|
|
http://www.freenix.no/~anders/ \
|
|
ftp://ftp.funet.fi/pub/mirrors/ftp.cac.washington.edu/imap/ \
|
|
http://mirror.nucba.ac.jp/mirror/ \
|
|
ftp://ftp.nuug.no/pub/anders/distfiles/
|
|
MASTER_SITE_SUBDIR= . old
|
|
DISTNAME= imap-2001.BETA.SNAP-${PORTVERSION}
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= anders@fix.no
|
|
|
|
INSTALLS_SHLIB= yes
|
|
ALL_TARGET= bsf
|
|
.if defined(WITH_SSL)
|
|
MAKE_ARGS+= SSLTYPE=unix
|
|
USE_OPENSSL= yes
|
|
.endif
|
|
|
|
SHLIBBASE= c-client4
|
|
SHLIBMAJ= 8
|
|
SHLIBNAME= lib${SHLIBBASE}.so.${SHLIBMAJ}
|
|
MAKE_ENV= SHLIBNAME=${SHLIBNAME} SHLIBBASE=${SHLIBBASE}
|
|
PLIST_SUB= SHLIBNAME=${SHLIBNAME} SHLIBBASE=${SHLIBBASE}
|
|
|
|
PREFIX_FIX_FILES= Makefile src/osdep/unix/Makefile \
|
|
src/osdep/unix/Makefile.gss
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORTOBJFORMAT} == "aout"
|
|
SHLIBNAME= lib${SHLIBBASE}.so.${SHLIBMAJ}.0
|
|
.endif
|
|
|
|
post-patch:
|
|
.for file in ${PREFIX_FIX_FILES}
|
|
@${PERL} -pi -ne "s!/usr/local!${PREFIX}!g" ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
post-configure:
|
|
@${ECHO_MSG} ">> The c-client shared library will be named ${SHLIBNAME}"
|
|
|
|
HEADERS= dummy.h env.h env_unix.h fdstring.h flstring.h fs.h ftl.h \
|
|
imap4r1.h linkage.c linkage.h mail.h misc.h nl.h nntp.h \
|
|
osdep.h pop3.h rfc822.h smtp.h tcp.h utf8.h c-client.h
|
|
PORTREV_H= ${PREFIX}/include/c-client/portrevision.h
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/include/c-client
|
|
.for f in ${HEADERS}
|
|
${INSTALL_DATA} ${WRKSRC}/c-client/${f} ${PREFIX}/include/c-client
|
|
.endfor
|
|
${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
|
|
${WRKSRC}/c-client/${SHLIBNAME} ${PREFIX}/lib
|
|
${LN} -sf ${SHLIBNAME} ${PREFIX}/lib/lib${SHLIBBASE}.so
|
|
${INSTALL_DATA} ${WRKSRC}/c-client/c-client.a \
|
|
${PREFIX}/lib/lib${SHLIBBASE}.a
|
|
|
|
post-install:
|
|
@${ECHO} "#define CCLIENT_PORTVERSION \"${PORTVERSION}\"" >${PORTREV_H}
|
|
.if defined(WITH_SSL)
|
|
@${ECHO} "================================================================================"
|
|
@${ECHO} "Warning: You have chosen to include SSL support. Applications/ports that use"
|
|
@${ECHO} "the cclient library but do not support SSL may stop working or have problems
|
|
@${ECHO} "linking. Linking explicitly with ssl (-lssl -lcrypto) may or may not help."
|
|
@${ECHO} "================================================================================"
|
|
@${ECHO} "#define CCLIENT_SSLENABLED \"yes\"" >>${PORTREV_H}
|
|
.else
|
|
@${ECHO} "#define CCLIENT_SSLENABLED \"no\"" >>${PORTREV_H}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|