aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/syslog-ng1/Makefile
blob: 8cc64cf71a7dcc0e1f8389b4c5f5ab565b9c7128 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# New ports collection makefile for:    syslog-ng
# Date created:     22 April 2000
# Whom:         Vince Valenti <vince@blue-box.net>
#
# $FreeBSD$
#

PORTNAME=   syslog-ng
PORTVERSION=    1.6.12
PORTREVISION=   2
CATEGORIES= sysutils
MASTER_SITES=   http://www.balabit.com/downloads/files/syslog-ng/sources/1.6/src/

MAINTAINER= lme@FreeBSD.org
COMMENT=    A powerful syslogd replacement

DEPRECATED= Suggested by syslog-ng upline, no longer supported
FORBIDDEN=      Vulnerable since 2008-11-18, http://portaudit.freebsd.org/75f2382e-b586-11dd-95f9-00e0815b8da8.html
EXPIRATION_DATE=        2011-10-14
LATEST_LINK=    ${PORTNAME}1

GNU_CONFIGURE=  yes
PKGMESSAGE= ${WRKDIR}/MESSAGE
USE_RC_SUBR=    syslog-ng.sh

OPTIONS=    TCP_WRAPPERS "Enable TCP wrapper support" off \
        SPOOF_SOURCE "Enable spoof-source support" off

SUB_FILES=  pkg-message

MAN5=       syslog-ng.conf.5
MAN8=       syslog-ng.8

.include <bsd.port.pre.mk>

.if defined(WITH_TCP_WRAPPERS)
CONFIGURE_ARGS+=    --enable-tcp-wrapper
.endif

.if defined(WITH_SPOOF_SOURCE)
LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config
CONFIGURE_ENV=  CFLAGS+="`${LIBNET_CONFIG} --cflags`" \
        CPPFLAGS+="`${LIBNET_CONFIG} --defines`" \
        LDFLAGS+="`${LIBNET_CONFIG} --libs`"
CONFIGURE_ARGS+=    --enable-spoof-source
BUILD_DEPENDS+= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet
.endif

post-patch:
    @${REINPLACE_CMD}  \
        -e 's:libnet-config:libnet11-config:g' \
        -e 's|int foo(void)||' \
        ${WRKSRC}/configure
.if ${OSVERSION} >= 900007
    @${REINPLACE_CMD} \
        -e 's|utmp|utmpx|' -e 's|getutent|getutxent|' \
        ${WRKSRC}/configure ${WRKSRC}/src/afuser.c \
        ${WRKSRC}/src/utils.c ${WRKSRC}/src/utils.h
.endif

post-install:
.if !defined(NOPORTDOCS)
    ${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} \
        ${DOCSDIR} ${DOCSDIR}/sgml
.for f in AUTHORS COPYING ChangeLog INSTALL NEWS PORTS README README.spoof
    ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
    ${INSTALL_DATA} ${WRKSRC}/doc/sgml/${PORTNAME}.* ${DOCSDIR}/sgml
.endif
    ${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} ${PREFIX}/etc/syslog-ng
    ${INSTALL_DATA} ${FILESDIR}/syslog-ng.conf.sample \
        ${PREFIX}/etc/syslog-ng
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>