mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
37f54e0f66
- Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports)
63 lines
1.5 KiB
Makefile
63 lines
1.5 KiB
Makefile
# Created by: Kirill Ponomarew <krion@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nefu
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://rsug.itd.umich.edu/software/nefu/files/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Network monitoring daemon
|
|
|
|
USE_RC_SUBR= nefu
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
CONFIGURE_ENV= YACC=${YACC} \
|
|
OPENSSL_CFLAGS="-I${OPENSSLINC}" \
|
|
OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} \
|
|
--without-sasl \
|
|
--without-zlib \
|
|
--without-shelltests
|
|
|
|
USERS= nefu
|
|
GROUPS= nefu
|
|
|
|
USE_OPENSSL= yes
|
|
OPTIONS_DEFINE= LDAP HTML
|
|
HTML_DESC= HTML support
|
|
OPTIONS_SUB= yes
|
|
|
|
DBDIR= /var/db/nefu
|
|
|
|
LDAP_CONFIGURE_ON= --with-ldap=${LOCALBASE}/lib
|
|
LDAP_CONFIGURE_OFF= --without-ldap
|
|
LDAP_USE= OPENLDAP=yes
|
|
|
|
HTML_CONFIGURE_ON= --with-html=${WWWDIR}
|
|
HTML_CONFIGURE_OFF= --without-html
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-lsasl2||' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|-lssl|-lssl -lcrypto|' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|== x_|= x_|' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|== x_|= x_|' \
|
|
${WRKSRC}/libsnet/configure
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/nefu.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/nefu.conf.4 ${STAGEDIR}${PREFIX}/man/man4
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR} ${STAGEDIR}${DBDIR}
|
|
|
|
.include <bsd.port.mk>
|