diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-08-09 11:41:12 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-08-09 11:41:12 +0000 |
commit | d6ed09ec80e5acb8e16835207801608653988f42 (patch) | |
tree | 5c94a72d0366638de250bc78e6ab3cc60b4c37a3 /net-im | |
parent | 1b7ff1613e935930cf8ce3692a568f6c9bd7ccf9 (diff) | |
download | ports-d6ed09ec80e5acb8e16835207801608653988f42.tar.gz ports-d6ed09ec80e5acb8e16835207801608653988f42.zip |
Notes
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/zephyr/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/net-im/zephyr/Makefile b/net-im/zephyr/Makefile index b34e6f8f9f7a..75cd3a2a88f4 100644 --- a/net-im/zephyr/Makefile +++ b/net-im/zephyr/Makefile @@ -7,38 +7,46 @@ CATEGORIES= net-im MASTER_SITES= http://zephyr.1ts.org/export/2642/distribution/ MAINTAINER= kaduk-fbsd@mit.edu -COMMENT= An enterprise-scale distributed messaging system +COMMENT= Enterprise-scale distributed messaging system LICENSE= MIT -LDFLAGS+= -L${LOCALBASE}/lib -CPPFLAGS+= -I${LOCALBASE}/include +USES= iconv +GNU_CONFIGURE= yes USE_RC_SUBR= zhm USE_LDCONFIG= yes -GNU_CONFIGURE= yes -USES= iconv + +LDFLAGS+= -L${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include MAN1= zephyr.1 zaway.1 zctl.1 zleave.1 zlocate.1 znol.1 zwrite.1 zwgc.1 MAN8= zhm.8 zephyrd.8 zstat.8 zshutdown_notify.8 OPTIONS_DEFINE= HEIMDAL +HEIMDAL_DESC= Link against libss.so from security/heimdal .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MHEIMDAL} BROKEN= bad depobj -LIB_DEPENDS+= ss.1:${PORTSDIR}/security/heimdal +LIB_DEPENDS+= libss.so.1:${PORTSDIR}/security/heimdal .if defined(HEIMDAL_HOME) KRB5_DIR?= ${HEIMDAL_HOME} .else KRB5_DIR?= ${LOCALBASE} .endif .else -LIB_DEPENDS+= ss.2:${PORTSDIR}/devel/e2fsprogs-libss +LIB_DEPENDS+= libss.so.2:${PORTSDIR}/devel/e2fsprogs-libss KRB5_DIR?= ${DESTDIR}/usr .endif # it is an upstream bug that --with-krb5 needs a path CONFIGURE_ARGS= --with-krb5="${KRB5_DIR}" +# try to fix parallel (-jX) builds: add missing inter-source dependencies +post-patch: + @${REINPLACE_CMD} -e \ + '/^eval\.o/,$$s,port\.h,& string_stack.h new_string.h, ; \ + s,_aux\.h,.h,' ${WRKSRC}/zwgc/Makefile.in + .include <bsd.port.mk> |