1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00
freebsd-ports/mail/libetpan/Makefile

49 lines
1.1 KiB
Makefile
Raw Normal View History

# ex:ts=8
# Ports collection makefile for: libEtPan!
# Date created: Jun 27, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= libetpan
2006-04-08 19:35:28 +00:00
PORTVERSION= 0.45
2006-07-06 17:41:23 +00:00
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
2003-02-20 19:00:52 +00:00
COMMENT= A mail library
USE_ICONV= yes
2006-01-30 19:03:14 +00:00
USE_AUTOTOOLS= libtool:15 autoconf:259
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
INSTALLS_SHLIB= yes
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
.if defined(WITH_GNUTLS)
2006-07-06 17:41:23 +00:00
LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls
CONFIGURE_ARGS+= --with-gnutls
.else
USE_OPENSSL= yes
CONFIGURE_ARGS+= --without-gnutls
.endif
.if defined(WITH_SASL)
LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
.else
CONFIGURE_ARGS+= --without-sasl
.endif
2006-03-24 01:29:22 +00:00
post-install:
@${FIND} ${PREFIX}/include/libetpan* ! -type d | ${SED} \
's,^${PREFIX}/,,' >> ${TMPPLIST}
@${FIND} ${PREFIX}/include/libetpan -type d | ${SORT} | ${SED} \
's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
.include <bsd.port.mk>