1b8ece6c63
The EventLog library aims to be a replacement of the simple syslog() API provided on UNIX systems. The major difference between EventLog and syslog is that EventLog tries to add structure to messages.
30 lines
616 B
Makefile
30 lines
616 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/10/16 18:31:41 steven Exp $
|
|
|
|
COMMENT = EventLog library
|
|
|
|
DISTNAME = eventlog-0.2.5
|
|
CATEGORIES = sysutils
|
|
|
|
SHARED_LIBS = evtlog 0.0
|
|
|
|
HOMEPAGE = http://www.balabit.com/products/syslog_ng/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = http://www.balabit.com/downloads/files/eventlog/0.2/
|
|
|
|
WANTLIB = c
|
|
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/eventlog
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/eventlog
|
|
|
|
.include <bsd.port.mk>
|