summaryrefslogtreecommitdiff
path: root/net/aspathtree/Makefile
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2003-04-27 01:34:15 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2003-04-27 01:34:15 +0000
commit75daff8880b37f4efc2a686e28aeb4b63f7ef244 (patch)
tree2a7633f737e1a3482259bf1643aa6b7aa76bc99d /net/aspathtree/Makefile
parentAdd oxford 0.1, a English to Chinese(GB) dictionary. (diff)
Add aspathtree 4.2,
checks IPv6 routes' stability and correctness on IPv6 internet. PR: 48001 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
Notes
Notes: svn path=/head/; revision=79721
Diffstat (limited to 'net/aspathtree/Makefile')
-rw-r--r--net/aspathtree/Makefile84
1 files changed, 84 insertions, 0 deletions
diff --git a/net/aspathtree/Makefile b/net/aspathtree/Makefile
new file mode 100644
index 000000000000..6bad5d98f372
--- /dev/null
+++ b/net/aspathtree/Makefile
@@ -0,0 +1,84 @@
+# New ports collection makefile for: aspathtree
+# Date created: 06.05.2002
+# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu>
+#
+# $FreeBSD$
+
+PORTNAME= aspathtree
+PORTVERSION= 4.2
+CATEGORIES= net ipv6
+MASTER_SITES= #http://carmen.ipv6.cselt.it/ipv6/tools/ASpath-tree/index.html
+DISTNAME= ASpath-tree-v${PORTVERSION}
+
+MAINTAINER= Janos.Mohacsi@bsd.hu
+COMMENT= Checks IPv6 routes' stability and correctness on IPv6 internet
+
+RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet \
+ ripewhois:${PORTSDIR}/net/ripetools
+
+WRKSRC= ${WRKDIR}/ASpath-tree-v${PORTVERSION}/
+RESTRICTED= "not redistributable, license agreement required"
+
+.include <bsd.port.pre.mk>
+
+.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
+IGNORE= "You need to read the license and disclaimer on http://carmen.ipv6.tilab.com/cgi-bin/download.pl?pkg=ASpath-tree and download ${DISTFILES} into ${DISTDIR}"
+.endif
+
+NO_BUILD= yes
+USE_PERL5= yes
+USE_REINPLACE= yes
+SCRIPTS_ENV+= PERL5=${PERL5}
+PKGMESSAGE= ${WRKDIR}/pkg-message
+CONFIG_FILES= ASpath-tree.config
+ICON_FILES= bnew.gif bold.gif e.gif h.gif l.gif p.gif t.gif v.gif
+LIB_FILES= bgp-tree-changes.pl bgp-tree.pl create-homepage.pl elaborate-aspaths.pl getbgptable.pl history.pl ipv6prefix.pl odd-as.pl odd-routes.pl route-stability.pl utility.pl ASmain.pl
+DATA_FILES= 6bone.db force.as.name rirs.db
+DOC_FILES= DISCLAIMER readme.txt changes.txt
+
+pre-configure:
+ @${REINPLACE_CMD} -e 's#%%PATHPERLBIN%%#${PERL5}#; \
+ s#%%PREFIX%%#${PREFIX}#' ${WRKSRC}/update-rtree \
+ ${WRKSRC}/etc/ASpath-tree.config
+
+do-install:
+#installing main script
+ ${INSTALL_SCRIPT} ${WRKSRC}/update-rtree ${PREFIX}/bin
+#installing lib files
+ ${MKDIR} ${PREFIX}/libexec/aspathtree/
+.for file in ${LIB_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/lib/${file} ${PREFIX}/libexec/aspathtree
+.endfor
+#installing htdocs files
+ ${MKDIR} ${PREFIX}/var/aspathtree/htdocs/icons/
+.for file in ${ICON_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/htdocs/icons/${file} ${PREFIX}/var/aspathtree/htdocs/icons/
+.endfor
+#installing data files
+ ${MKDIR} ${PREFIX}/var/aspathtree/data
+.for file in ${DATA_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/data/${file} ${PREFIX}/var/aspathtree/data/
+.endfor
+#installing log directory
+ ${MKDIR} ${PREFIX}/var/aspathtree/log
+#installing config files
+.for file in ${CONFIG_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/etc/${file} ${PREFIX}/etc/${file}.dist
+.endfor
+#installing docs
+.ifndef(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for file in ${DOC_FILES}
+ ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+.endfor
+.endif
+
+post-install:
+ @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" ${.CURDIR}/pkg-message >${PKGMESSAGE}
+.if !defined(BATCH)
+ @${ECHO}
+ @${CAT} ${PKGMESSAGE}
+ @${ECHO}
+.endif
+
+.include <bsd.port.post.mk>