mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
7acc749ea6
- 2 custom optional patches o) microsecond support for MySQL o) sanely select and return FQDN for use in $fromhost templates PR: ports/146316 No objection from: cristianorolim@hotmail.com (rsyslog* maintainer) Submitted by: pgollucci@ (myself)
32 lines
900 B
Makefile
32 lines
900 B
Makefile
# New ports collection makefile for: rsyslog4-relp
|
|
# Date created: 29 December 2008
|
|
# Whom: Cristiano Rolim Pereira <cristianorolim@hotmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
COMMENT= RELP input/output module for rsyslog
|
|
MASTERDIR= ${.CURDIR}/../rsyslog55
|
|
|
|
MNAME= relp
|
|
BUILD_DEPENDS+= pkg-config:${PORTSDIR}/devel/pkg-config
|
|
LIB_DEPENDS= relp.0:${PORTSDIR}/devel/librelp
|
|
|
|
CONFIGURE_ARGS+=--enable-relp
|
|
|
|
PLIST_FILES+= lib/rsyslog/imrelp.la \
|
|
lib/rsyslog/imrelp.so \
|
|
lib/rsyslog/omrelp.la \
|
|
lib/rsyslog/omrelp.so
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} \
|
|
${WRKSRC}/plugins/omrelp/.libs/omrelp.so ${PREFIX}/lib/rsyslog
|
|
@${INSTALL_DATA} \
|
|
${WRKSRC}/plugins/omrelp/omrelp.la ${PREFIX}/lib/rsyslog
|
|
@${INSTALL_PROGRAM} \
|
|
${WRKSRC}/plugins/imrelp/.libs/imrelp.so ${PREFIX}/lib/rsyslog
|
|
@${INSTALL_DATA} \
|
|
${WRKSRC}/plugins/imrelp/imrelp.la ${PREFIX}/lib/rsyslog
|
|
.include "${MASTERDIR}/Makefile"
|