12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # $OpenBSD: Makefile,v 1.12 2017/02/25 21:52:25 sthen Exp $
- COMMENT= cisco 3600/7200 platform emulator
- USE_WXNEEDED= Yes
- DISTNAME= dynamips-0.2.8-RC2
- PKGNAME= ${DISTNAME:S/-RC/rc/}
- REVISION= 5
- CATEGORIES= emulators
- HOMEPAGE= http://www.gns3.net/dynamips/
- MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gns-3/}
- MAINTAINER= Stuart Henderson <sthen@openbsd.org>
- # GPL
- PERMIT_PACKAGE_CDROM= Yes
- LIB_DEPENDS= devel/libelf
- WANTLIB= c elf pcap pthread
- MAKE_ENV= DYNAMIPS_ARCH=${DYNAMIPS_ARCH}
- USE_GMAKE= Yes
- NO_TEST= Yes
- .if ${MACHINE_ARCH} == "i386"
- DYNAMIPS_ARCH= "x86"
- .elif ${MACHINE_ARCH} == "amd64"
- DYNAMIPS_ARCH= "amd64"
- .else
- DYNAMIPS_ARCH= "nojit"
- .endif
- post-install:
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dynamips
- .for i in ChangeLog README README.hypervisor TODO
- ${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/share/doc/dynamips
- .endfor
- .include <bsd.port.mk>
|