blob: 574136b10b39beb58df2fa01d6a9f30dbdc33d12 (
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
|
# Created by: janos.mohacsi@bsd.hu
# $FreeBSD$
PORTNAME= aslookup
PORTVERSION= 0.12
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://www.bugest.net/software/aslookup/
DISTNAME= ${PORTNAME}-alpha${PORTVERSION}
MAINTAINER= jmohacsi@bsd.hu
COMMENT= Tool that searches the sequence of AS numbers
NO_STAGE= yes
post-patch:
@${REINPLACE_CMD} -E -e "s|CFLAGS.*=|CFLAGS +=|" \
-e "s|CC.*=|CC ?=|" ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/aslookup ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@if [ ! -d ${PREFIX}/share/doc/aslookup ]; then \
${MKDIR} ${PREFIX}/share/doc/aslookup; fi
${INSTALL_DATA} ${WRKSRC}/readme-eng.txt ${WRKSRC}/readme-jp.txt \
${PREFIX}/share/doc/aslookup
.endif
.include <bsd.port.mk>
|