mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
b9b5b02aa2
Rsyslog is an enhanced multi-threaded syslogd supporting, among others, syslog/tcp, permitted sender lists, filtering on any message part, and fine grain output format control. Its advanced features make it suitable for enterprise-class, encryption protected syslog relay chains while at the same time being very easy to setup for the novice user. The following features are supported through modules: logging to MySQL, PostgreSQL, any libdbi-supported backend; SNMP trap sender, GSS API, RELP. WWW: http://www.rsyslog.com/
29 lines
760 B
Makefile
29 lines
760 B
Makefile
# New ports collection makefile for: librelp
|
|
# Date created: 1 April 2008
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= librelp
|
|
PORTVERSION= 0.1.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= CENKES http://download.rsyslog.com/librelp/
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Reliable event logging protocol library
|
|
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-static
|
|
PLIST_FILES= include/${PORTNAME}.h lib/${PORTNAME}.so lib/${PORTNAME}.so.0 \
|
|
lib/${PORTNAME}.la libdata/pkgconfig/relp.pc
|
|
PORT_VERBS= relp
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^pkgconfigdir =/s|=.*| \
|
|
= ${PREFIX}/libdata/pkgconfig|' ${WRKSRC}/Makefile.in
|
|
@${ECHO_CMD} "#include <sys/types.h>" >> ${WRKSRC}/src/relp.h
|
|
|
|
.include <bsd.port.mk>
|