f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
55 lines
1.5 KiB
Makefile
55 lines
1.5 KiB
Makefile
# New ports collection makefile for: syslog-ng
|
|
# Date created: 10 november 1006
|
|
# Whom: Ivan Lago <ivan.lago@ifom-ieo-campus.it>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= syslog-ng
|
|
PORTVERSION= 2.0.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.balabit.com/downloads/syslog-ng/2.0/src/
|
|
|
|
MAINTAINER= ivan.lago@ifom-ieo-campus.it
|
|
COMMENT= A powerful syslogd replacement
|
|
|
|
LIB_DEPENDS= evtlog.0:${PORTSDIR}/sysutils/eventlog
|
|
|
|
MAN5= syslog-ng.conf.5
|
|
MAN8= syslog-ng.8
|
|
|
|
USE_RC_SUBR= syslog-ng.sh
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= glib20
|
|
USE_GCC= 3.3+
|
|
NO_LATEST_LINK= yes
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= RC_SUBR_SUFFIX=${RC_SUBR_SUFFIX}
|
|
|
|
CONFIGURE_ARGS= --enable-dynamic-linking
|
|
|
|
.if defined(WITH_TCP_WRAPPERS)
|
|
CONFIGURE_ARGS+=--enable-tcp-wrapper
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's:__PREFIX__:${PREFIX}:g' ${WRKSRC}/src/syslog-ng.h
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} \
|
|
${PREFIX}/share/doc/syslog-ng \
|
|
${PREFIX}/share/doc/syslog-ng/sgml
|
|
${INSTALL_DATA} ${WRKSRC}/AUTHORS ${PREFIX}/share/doc/syslog-ng
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/syslog-ng
|
|
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/syslog-ng
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${PREFIX}/share/doc/syslog-ng
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/syslog-ng
|
|
.endif
|
|
@if [ ! -f ${PREFIX}/etc/syslog-ng/syslog-ng.conf.sample ]; then \
|
|
${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} ${PREFIX}/etc/syslog-ng; \
|
|
${INSTALL_DATA} ${FILESDIR}/syslog-ng.conf.sample ${PREFIX}/etc/syslog-ng; \
|
|
fi
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|