blob: 8c2386186037a4271a54be0102a2da27894c70c5 (
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
|
# New ports collection makefile for: drbl
# Date created: 21 March 2002
# Whom: Yen-Ming Lee <leeym@leeym.com>
#
# $FreeBSD$
#
PORTNAME= drbl
PORTVERSION= 1.06
CATEGORIES= mail
MASTER_SITES= ftp://ftp.drbl.ofisp.org/drbl/
EXTRACT_SUFX= .tgz
MAINTAINER= leeym@FreeBSD.org
COMMENT= Distributed Realtime Black List
NO_BUILD= yes
do-install:
@${MKDIR} ${DATADIR}
.for file in README header zones
@${INSTALL_DATA} ${WRKSRC}/${file} ${DATADIR}
.endfor
.for file in access2drbl build_drbl
@${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin
.endfor
.include <bsd.port.mk>
|