freebsd-ports/emulators/riscv-isa-sim/Makefile
Gerald Pfeifer 04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
2017-04-01 15:23:30 +00:00

52 lines
1,017 B
Makefile

# $FreeBSD$
PORTNAME= riscv-isa-sim
DISTVERSION= git
PORTREVISION= 20170207
CATEGORIES= emulators
MAINTAINER= lwhsu@FreeBSD.org
COMMENT= Spike, a RISC-V ISA Simulator
LICENSE= BSD3CLAUSE
LIB_DEPENDS= libfesvr.so:emulators/riscv-fesvr
ONLY_FOR_ARCHS= amd64
GH_ACCOUNT= freebsd-riscv
GH_TAGNAME= 11ec3a3
USES= compiler:c++11-lang gmake shebangfix
HAS_CONFIGURE= yes
SHEBANG_FILES= scripts/vcs-version.sh
USE_GITHUB= yes
USE_LDCONFIG= yes
LDFLAGS+= -L${LOCALBASE}/lib
CFLAGS+= -I${LOCALBASE}/include
STRIP_FILES= bin/spike \
bin/spike-dasm \
bin/termios-xspike \
bin/xspike \
lib/libdummy_rocc.so \
lib/libriscv.so \
lib/libsoftfloat.so \
lib/libspike_main.so
post-extract:
@${MV} ${WRKSRC}/riscv/insn_template.h ${WRKSRC}/riscv/insn_template.hpp
post-patch:
${REINPLACE_CMD} -e \
's|[(]install_libs_dir[)]/pkgconfig|(INSTALLDIR)/libdata/pkgconfig|g' \
${WRKSRC}/Makefile.in
post-install:
. for f in ${STRIP_FILES}
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${f}
. endfor
.include <bsd.port.mk>