blob: 4bfceff94e7b121acb6f545b150023d59452dd9e (
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
|
# Created by: Anders Nordby <anders@fix.no>
# $FreeBSD$
PORTNAME= msyslog
PORTVERSION= 1.08g
PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-1.X/${PORTVERSION} \
http://www1.corest.com/download/msyslog/
DISTNAME= ${PORTNAME}-v${PORTVERSION}-src
MAINTAINER= 5u623l20@gmail.com
COMMENT= Flexible and easy to integrate syslog daemon
OPTIONS_DEFINE= MYSQL PGSQL
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_RC_SUBR= msyslogd
PKGMESSAGE= ${WRKDIR}/pkg-message
USE_LDCONFIG= yes
MANCOMPRESSED= yes
PORTSCOUT= skipv:1.09d
.include <bsd.port.options.mk>
.if ${OSVERSION} > 900006
EXTRA_PATCHES= ${PATCHDIR}/utmpx-src-modules-om_classic.c
.endif
.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL= yes
MAN8+= om_mysql.8
.else
CONFIGURE_ARGS+= --without-mysql
.endif
.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL= yes
MAN8+= om_pgsql.8
.else
CONFIGURE_ARGS+= --without-pgsql
.endif
post-patch:
@${FIND} ${WRKSRC}/src/modules -name "*.c" | \
${XARGS} ${REINPLACE_CMD} -e "s|typedef int socklen_t;||g"
@${FIND} ${WRKSRC}/src/peo -name "*.h" | \
${XARGS} ${REINPLACE_CMD} -e 's|"typedefs.h"|<sys/types.h>|g'
@${FIND} ${WRKSRC}/src/ -name "*.*" | \
${XARGS} ${REINPLACE_CMD} -e 's|/dev/log|/var/run/log|g' \
-e "s|/etc/syslog.conf|${PREFIX}/etc/syslog.conf|g"
@${FIND} ${WRKSRC}/src/ -name "*.bak" -delete
post-install:
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/src/examples/* ${EXAMPLESDIR}
@${CAT} ${PKGDIR}/pkg-message | ${SED} -e 's|%%PREFIX%%|${PREFIX}|g' \
> ${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|