openbsd-ports/emulators/dynamips/Makefile
claudio 52c8bdcac4 Make the gen_eth netio_type work by adding a crude hack in the setup
function to ensure that the pcap fd is in non-blocking mode as expected
by the pthread lib. While doing that add plist bin markers and a new
MESSAGE (that came from sthen@)
OK sthen@, dlg@ who forced me into the pain to run a cisco on my X40
2008-11-24 23:29:48 +00:00

43 lines
959 B
Makefile

# $OpenBSD: Makefile,v 1.3 2008/11/24 23:29:48 claudio Exp $
COMMENT= cisco 3600/7200 platform emulator
DISTNAME= dynamips-0.2.8-RC2
PKGNAME= ${DISTNAME:S/-RC/rc/}p1
CATEGORIES= emulators
HOMEPAGE= http://www.ipflow.utc.fr/index.php/Cisco_7200_Simulator
MASTER_SITES= http://www.ipflow.utc.fr/dynamips/
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
LIB_DEPENDS= elf::devel/libelf
WANTLIB= c pcap pthread
MAKE_ENV= DYNAMIPS_ARCH=${DYNAMIPS_ARCH}
USE_GMAKE= Yes
NO_REGRESS= 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>