mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
946f6ba0e4
rbllookup is a small perl script which allow you to check given IP/host name. In this version you have statically inserted RBL servers, but code is based on GPL source, so you can easy add more/replace/delete RBL servers by editing rbllookup.pl file. Also, author looking for support from programmers for ideas, codefix, new features, switch to c/c++, gui version? Author: Marcin Gondek <drixter@e-utp.net> WWW: http://rbllookup.sourceforge.net PR: ports/69160 Submitted by: Marcin Gondek <drixter@e-utp.net>
34 lines
822 B
Makefile
34 lines
822 B
Makefile
# New ports collection makefile for: rbllookup
|
|
# Date created: 2004-07-14
|
|
# Whom: Marcin Gondek <drixter@e-utp.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rbllookup
|
|
PORTVERSION= 0.0.1.1
|
|
CATEGORIES= dns mail
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= drixter@e-utp.net
|
|
COMMENT= Check given IP/Host presence in 106 RBLs
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \
|
|
${SITE_PERL}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor
|
|
|
|
NO_BUILD= yes
|
|
USE_PERL5= yes
|
|
|
|
PLIST_FILES= bin/rbllookup
|
|
PORTDOCS= CHANGELOG INSTALL NOTES README TODO gpg.asc
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/rbl.pl ${PREFIX}/bin/rbllookup
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKDIR} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|