03b80b2646
- Various fixes are performed, by Chris, dinoex and myself. - MASTER_SITES and WWW changed to a new home. - AS queries are now ran against whois.epoch.net, the former server went offline. - Hand over maintainership to Chris PR: 246187 Submitted by: Chris Hutchinson Approved by: previous maintainer MFH: 2020Q3
25 lines
722 B
Makefile
25 lines
722 B
Makefile
# Created by: janos.mohacsi@bsd.hu
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= aslookup
|
|
PORTVERSION= 0.13d
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://aslookup.bgpview.org/download/ \
|
|
https://BSDforce.com/source/net/aslookup/
|
|
DISTNAME= ${PORTNAME}-beta${PORTVERSION}
|
|
|
|
MAINTAINER= portmaster@BSDforge.com
|
|
COMMENT= Tool that searches the sequence of AS numbers
|
|
|
|
CFLAGS+= -DARINDB -DJPNICDB -DAPNICDB
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/aslookup ${STAGEDIR}${PREFIX}/bin
|
|
@if [ ! -d ${STAGEDIR}${PREFIX}/share/doc/aslookup ]; then \
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/aslookup; fi
|
|
${INSTALL_DATA} ${WRKSRC}/readme-eng.txt ${WRKSRC}/readme-jp.txt \
|
|
${STAGEDIR}${PREFIX}/share/doc/aslookup
|
|
|
|
.include <bsd.port.mk>
|