blob: c29dadae9f20d7d4e92f919be222739b0181de32 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: scand
# Date created: 13 May 2003
# Whom: sand
#
# $FreeBSD$
#
PORTNAME= scand
PORTVERSION= 0.11
CATEGORIES= net
MASTER_SITES= http://free.babolo.ru/src/
MAINTAINER= sand@links.ru
COMMENT= Scan detection and blocking daemon
MAN8= scand.8 scandctl.8
MANCOMPRESSED= yes
.include <bsd.port.pre.mk>
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/scandctl ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/scand.8.gz ${MANPREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/scandctl.8.gz ${MANPREFIX}/man/man8
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in README README.ru
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|