mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= penguinsap
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Command-line Atari(TM) .sap player
|
|
|
|
USES= compiler dos2unix
|
|
|
|
SOURCES= sapPokey pokey1 sapCpu sapEngine main pokey0
|
|
|
|
.if defined(WITH_OPTIMIZED_CFLAGS)
|
|
EXTRAFLAGS= -ffast-math -malign-double -finline-limit-1000000 \
|
|
-funroll-loops -fstrength-reduce -finline-functions
|
|
.endif
|
|
|
|
PLIST_FILES= bin/sap
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# clang can build this without -fno-exceptions
|
|
.if ${COMPILER_TYPE} == "gcc"
|
|
CXXFLAGS+= -fno-exceptions
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|linux/soundcard\.h|sys/soundcard\.h|' \
|
|
${WRKSRC}/main.cpp
|
|
@${REINPLACE_CMD} -e 's|--no-exceptions||' ${WRKSRC}/build.inc
|
|
|
|
do-build:
|
|
.for f in ${SOURCES}
|
|
${CXX} ${CXXFLAGS} ${EXTRAFLAGS} -c ${WRKSRC}/${f}.cpp \
|
|
-o ${WRKSRC}/${f}.o
|
|
.endfor
|
|
${CC} ${CFLAGS} ${EXTRAFLAGS} ${SOURCES:C/(.*)/${WRKSRC}\/\1.o/} \
|
|
-o ${WRKSRC}/sap
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sap ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|