93676e9dd6
from maintainer Lars Hansson <lars at unet.net.ph>
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.3 2005/02/23 22:05:48 sturm Exp $
|
|
|
|
COMMENT= "small and secure replacement for syslogd"
|
|
|
|
DISTNAME= socklog-2.0.1
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.smarden.org/socklog/
|
|
|
|
MAINTAINER= Lars Hansson <lars@unet.net.ph>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
WRKDIST= ${WRKDIR}/admin/socklog-2.0.1
|
|
WRKSRC= ${WRKDIST}/src
|
|
BINPROGRAMS= tryto uncat
|
|
SBINPROGRAMS= socklog socklog-check socklog-conf
|
|
BINMANPAGES= tryto.1 uncat.1
|
|
SBINMANPAGES= socklog-check.8 socklog-conf.8 socklog.8
|
|
DOCS1= benefits.html network.html socklog.8.html \
|
|
configuration.html notify.html tryto.1.html \
|
|
examples.html uncat.1.html index.html \
|
|
socklog-check.8.html upgrade.html install.html \
|
|
socklog-conf.8.html
|
|
DOCS2= CHANGES README COPYING
|
|
|
|
pre-build:
|
|
echo "${CC} ${CFLAGS} ${COPTS}" > ${WRKSRC}/conf-cc
|
|
echo "${CC} ${LDFLAGS}" > ${WRKSRC}/conf-ld
|
|
|
|
do-build:
|
|
cd ${WRKDIST} && package/compile
|
|
|
|
do-regress:
|
|
cd ${WRKDIST}/compile && make check
|
|
|
|
do-install:
|
|
.for pgm in ${BINPROGRAMS}
|
|
${INSTALL_PROGRAM} ${WRKDIST}/command/${pgm} ${PREFIX}/bin/
|
|
.endfor
|
|
.for pgm in ${SBINPROGRAMS}
|
|
${INSTALL_PROGRAM} ${WRKDIST}/command/${pgm} ${PREFIX}/sbin/
|
|
.endfor
|
|
.for page in ${BINMANPAGES}
|
|
${INSTALL_MAN} ${WRKDIST}/man/${page} ${PREFIX}/man/man1
|
|
.endfor
|
|
.for page in ${SBINMANPAGES}
|
|
${INSTALL_MAN} ${WRKDIST}/man/${page} ${PREFIX}/man/man8
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/socklog
|
|
.for doc in ${DOCS1}
|
|
${INSTALL_DATA} ${WRKDIST}/doc/${doc} ${PREFIX}/share/doc/socklog/
|
|
.endfor
|
|
.for doc in ${DOCS2}
|
|
${INSTALL_DATA} ${WRKDIST}/package/${doc} ${PREFIX}/share/doc/socklog/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|