diff options
author | brd <brd@FreeBSD.org> | 2013-09-06 23:56:54 +0800 |
---|---|---|
committer | brd <brd@FreeBSD.org> | 2013-09-06 23:56:54 +0800 |
commit | 37d16f354875f277036ce806972774ab4e1dc3ea (patch) | |
tree | 43455dc8be25414f431b0774470d05e4300e1ba6 /sysutils | |
parent | 4ebd5013c5005f766d4ef9ff2b57a49323248465 (diff) | |
download | freebsd-ports-gnome-37d16f354875f277036ce806972774ab4e1dc3ea.tar.gz freebsd-ports-gnome-37d16f354875f277036ce806972774ab4e1dc3ea.tar.zst freebsd-ports-gnome-37d16f354875f277036ce806972774ab4e1dc3ea.zip |
- Update sysutils/rsyslog7 to 7.4.4
- Make UUID support optional since it not used very often and conflicts with postgres [1]
Changes: http://www.rsyslog.com/changelog-for-7-4-4-v7-stable/
PR: 180139 [1]
Submitted by: Sevan Janiyan <venture37@geeklan.co.uk> [1]
Reviewed by: swills@
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/rsyslog7/Makefile | 16 | ||||
-rw-r--r-- | sysutils/rsyslog7/distinfo | 4 | ||||
-rw-r--r-- | sysutils/rsyslog7/pkg-descr | 2 |
3 files changed, 14 insertions, 8 deletions
diff --git a/sysutils/rsyslog7/Makefile b/sysutils/rsyslog7/Makefile index 2613c195ed19..fde774741c7d 100644 --- a/sysutils/rsyslog7/Makefile +++ b/sysutils/rsyslog7/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rsyslog -PORTVERSION= 7.4.3 +PORTVERSION= 7.4.4 CATEGORIES= sysutils MASTER_SITES= http://www.rsyslog.com/files/download/rsyslog/ @@ -12,8 +12,7 @@ BUILD_DEPENDS= libgcrypt-config:${PORTSDIR}/security/libgcrypt LIB_DEPENDS= ee:${PORTSDIR}/devel/libee \ estr:${PORTSDIR}/devel/libestr \ - json.0:${PORTSDIR}/devel/json-c \ - uuid:${PORTSDIR}/misc/e2fsprogs-libuuid + json.0:${PORTSDIR}/devel/json-c USE_LDCONFIG= yes @@ -21,7 +20,7 @@ PORTSCOUT= limit:^7\.4 PORTDOCS= * PORTEXAMPLES= * -OPTIONS_DEFINE= DBI DOCS GNUTLS GSSAPI MYSQL PGSQL RELP RFC3195 SNMP +OPTIONS_DEFINE= DBI DOCS GNUTLS GSSAPI MYSQL PGSQL RELP RFC3195 SNMP UUID DBI_DESC= LibDBI output module for rsyslog GNUTLS_DESC= GNUTLS module for rsyslog @@ -31,6 +30,7 @@ PGSQL_DESC= PostgreSQL output module for rsyslog RELP_DESC= RELP input/output module for rsyslog RFC3195_DESC= RFC3195 input support for rsyslog SNMP_DESC= SNMP trap sender for rsyslog +UUID_DESC= Support for generating a UUID per log message USES= pkgconfig @@ -113,6 +113,12 @@ PLIST_FILES+= lib/rsyslog/omsnmp.la \ CONFIGURE_ARGS+=--disable-snmp .endif +.if ${PORT_OPTIONS:MUUID} +LIB_DEPENDS+= uuid:${PORTSDIR}/misc/e2fsprogs-libuuid +.else +CONFIGURE_ARGS+=--disable-uuid +.endif + .ifdef WITH_MYSQL_MICROSECONDS EXTRA_PATCHES+= ${FILESDIR}/extra-patch-mysql-microseconds .endif @@ -137,7 +143,7 @@ CONFIGURE_ARGS+=--enable-rtinst --enable-debug CPPFLAGS+=-march=i686 .endif -CONFIGURE_ENV+= LIBESTR_CFLAGS="${CFLAGS}" LIBESTR_LIBS="${LDFLAGS} -lestr" LIBEE_CFLAGS="${CFLAGS}" LIBEE_LIBS="${LDFLAGS} -lee -lsysinfo -lkvm" +CONFIGURE_ENV+= LIBESTR_CFLAGS="${CFLAGS}" LIBESTR_LIBS="${LDFLAGS} -lestr" LIBEE_CFLAGS="${CFLAGS}" LIBEE_LIBS="${LDFLAGS} -lee -lkvm" CFLAGS+= ${CPPFLAGS} MAN8= rsyslogd.8 diff --git a/sysutils/rsyslog7/distinfo b/sysutils/rsyslog7/distinfo index faf25c170233..c5245b62aedf 100644 --- a/sysutils/rsyslog7/distinfo +++ b/sysutils/rsyslog7/distinfo @@ -1,2 +1,2 @@ -SHA256 (rsyslog-7.4.3.tar.gz) = d96fcb733452177f5f06789507e06f5c01434d83001c130c9fcdf21e0fffe382 -SIZE (rsyslog-7.4.3.tar.gz) = 2908523 +SHA256 (rsyslog-7.4.4.tar.gz) = 276d094d1e4c62c770ec8a72723667f119eee038912b79cf3337d439bc2f9087 +SIZE (rsyslog-7.4.4.tar.gz) = 2910075 diff --git a/sysutils/rsyslog7/pkg-descr b/sysutils/rsyslog7/pkg-descr index 38ffe7aaa43d..fea6d4f5feb2 100644 --- a/sysutils/rsyslog7/pkg-descr +++ b/sysutils/rsyslog7/pkg-descr @@ -14,6 +14,6 @@ suitable for enterprise-class, encryption protected syslog relay chains while at the same time being very easy to setup for the novice user. -Tracking v7-devel +Tracking v7-stable WWW: http://www.rsyslog.com/ |