mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# Created by: tobez@tobez.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libesmtp
|
|
PORTVERSION= 1.0.6
|
|
PORTREVISION= 2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.stafford.uklinux.net/libesmtp/ \
|
|
http://ftp.osuosl.org/pub/blfs/svn/l/ \
|
|
GENTOO
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library for posting electronic mail
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING.LIB
|
|
|
|
OPTIONS_DEFINE= OPENSSL DEBUG DOCS EXAMPLES
|
|
OPTIONS_DEFAULT=OPENSSL
|
|
OPTIONS_SUB= yes
|
|
|
|
DEBUG_CONFIGURE_ENABLE= debug
|
|
OPENSSL_CONFIGURE_WITH= openssl=${OPENSSLBASE}
|
|
OPENSSL_USE= OPENSSL=yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
# require-all-recipients (implied by enable-all) is required for Balsa
|
|
CONFIGURE_ARGS= --enable-all --disable-isoc
|
|
INSTALL_TARGET= install-strip
|
|
USES= gmake libtool tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in AUTHORS ChangeLog NEWS Notes README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|