2020-08-14 19:52:23 -05:00
|
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
|
|
|
2019-04-01 20:39:06 +02:00
|
|
|
|
PortSystem 1.0
|
|
|
|
|
|
PortGroup github 1.0
|
|
|
|
|
|
PortGroup cmake 1.1
|
2020-08-14 19:50:15 -05:00
|
|
|
|
PortGroup legacysupport 1.0
|
|
|
|
|
|
|
|
|
|
|
|
# clock_gettime
|
|
|
|
|
|
legacysupport.newest_darwin_requires_legacy 15
|
2007-09-09 12:53:11 +00:00
|
|
|
|
|
2024-02-14 10:23:50 -08:00
|
|
|
|
github.setup GNS3 dynamips 0.2.23 v
|
2025-01-26 05:34:09 +11:00
|
|
|
|
# Change github.tarball_from to 'releases' or 'archive' next update
|
|
|
|
|
|
github.tarball_from tarball
|
2019-04-01 20:39:06 +02:00
|
|
|
|
revision 0
|
2007-09-09 12:53:11 +00:00
|
|
|
|
|
2019-04-01 20:39:06 +02:00
|
|
|
|
license GPL-2
|
|
|
|
|
|
categories net
|
|
|
|
|
|
maintainers {gmail.com:lasticppc @lastic} openmaintainer
|
2007-09-09 12:53:11 +00:00
|
|
|
|
|
2019-04-01 20:39:06 +02:00
|
|
|
|
description Cisco router emulator
|
|
|
|
|
|
long_description Dynamips emulates a variety of Cisco routers on a \
|
|
|
|
|
|
traditional PC. It supports the emulation of select 7200, \
|
|
|
|
|
|
3600, 3700, and 2600 series routers. It uses real Cisco \
|
|
|
|
|
|
IOS images (which are not part of this package). Of \
|
|
|
|
|
|
course, this emulator cannot replace a real router. It is \
|
|
|
|
|
|
simply a complementary tool to real labs for administrators \
|
|
|
|
|
|
of Cisco networks or people wanting to pass their \
|
|
|
|
|
|
CCNA/CCNP/CCIE exams.
|
2007-09-09 12:53:11 +00:00
|
|
|
|
|
2024-02-14 10:23:50 -08:00
|
|
|
|
checksums rmd160 0c141447398ecc62e3ece16a760facf38a8e9f16 \
|
|
|
|
|
|
sha256 108ea9088d339ef66cf9c25ca1aada718089df028433e101d319986b2c024ab4 \
|
|
|
|
|
|
size 835750
|
2007-09-09 12:53:11 +00:00
|
|
|
|
|
2019-04-01 20:39:06 +02:00
|
|
|
|
depends_lib port:libelf \
|
|
|
|
|
|
port:libpcap
|
2007-09-09 12:53:11 +00:00
|
|
|
|
|
2024-09-27 01:12:04 +08:00
|
|
|
|
# /opt/local/include/base64.h: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
|
|
|
|
|
|
compiler.blacklist-append \
|
|
|
|
|
|
*gcc-4.0 *gcc-4.2
|
|
|
|
|
|
|
2019-04-01 20:39:06 +02:00
|
|
|
|
configure.args-append \
|
|
|
|
|
|
-DDYNAMIPS_CODE=stable
|
2020-08-14 17:49:07 -07:00
|
|
|
|
|
|
|
|
|
|
post-patch {
|
|
|
|
|
|
if {${prefix} ne "/opt/local"} {
|
|
|
|
|
|
reinplace -W ${worksrcpath} "s|/opt/local/|${prefix}/|g" CMakeLists.txt cmake/FindLibElf.cmake
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|