freebsd-ports/emulators/dynamips/Makefile
Max Khon 53c000e7f6 - Fix the build on RELENG_4 (USE_GCC=3.2+) [1]
- Fix the build on arches other than i386 [2]
- Bump PORTREVISION

Noted by:	pointyhat [1], [2]
2006-02-13 19:16:40 +00:00

48 lines
959 B
Makefile

# New ports collection makefile for: dynamips
# Date created: 31 Jan 2006
# Whom: Max Khon <fjoe@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= dynamips
PORTVERSION= 0.2.3b
PORTREVISION= 1
CATEGORIES= emulators
MASTER_SITES= http://www.ipflow.utc.fr/dynamips/
MAINTAINER= fjoe@FreeBSD.org
COMMENT= Cisco 7200 Simulator
LIB_DEPENDS= elf.0:${PORTSDIR}/devel/libelf
USE_GMAKE= yes
USE_GCC= 3.2+
ALL_TARGET= ${PORTNAME}
MAKE_ENV= DYNAMIPS_ARCH=${DYNAMIPS_ARCH}\
PTHREAD_CFLAGS=${PTHREAD_CFLAGS}\
PTHREAD_LIBS=${PTHREAD_LIBS}
PLIST_FILES= bin/${PORTNAME}
.if !defined(NOPORTDOCS)
PORTDOCS= README
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
DYNAMIPS_ARCH= "x86"
.elif ${ARCH} == "amd64"
DYNAMIPS_ARCH= "amd64"
.else
DYNAMIPS_ARCH= "nojit"
.endif
.include <bsd.port.post.mk>