6dfe54aa0f
builds fine with clang. Also remove USE_GCC=any which was redundant with compiler:nestedfct.
117 lines
2.7 KiB
Makefile
117 lines
2.7 KiB
Makefile
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ocp
|
|
PORTVERSION= 0.1.21
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/opencubicplayer/${DISTNAME} \
|
|
LOCAL/ehaupt
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Legendary Open Cubic Player
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libid3tag.so:${PORTSDIR}/audio/libid3tag \
|
|
libmad.so:${PORTSDIR}/audio/libmad \
|
|
libvorbis.so:${PORTSDIR}/audio/libvorbis \
|
|
libsidplay.so:${PORTSDIR}/audio/libsidplay
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= ncurses gmake pkgconfig desktop-file-utils makeinfo tar:xz iconv
|
|
USE_LDCONFIG= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CFLAGS+= -L${LOCALBASE}/lib ${CPPFLAGS}
|
|
CXXFLAGS+= -L${LOCALBASE}/lib ${CPPFLAGS}
|
|
|
|
CONFIGURE_ARGS= --with-dir-suffix="" \
|
|
--without-alsa \
|
|
--libdir=${PREFIX}/lib
|
|
|
|
INFO= ocp
|
|
|
|
TIMIDITY_CFG= ${LOCALBASE}/share/timidity/timidity.cfg
|
|
|
|
OPTIONS_DEFINE= ADPLUG FLAC MIDI X11 SDL DOCS
|
|
|
|
ADPLUG_DESC= adplug support
|
|
MIDI_DESC= timidity support
|
|
|
|
OPTIONS_DEFAULT=ADPLUG FLAC MIDI X11 SDL
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if exists(${TIMIDITY_CFG}) || ${PORT_OPTIONS:MMIDI}
|
|
RUN_DEPENDS+= eawpats>0:${PORTSDIR}/audio/eawpats
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MX11}
|
|
USE_XORG= xxf86dga xxf86vm xpm
|
|
CONFIGURE_ARGS+= --with-x11=yes
|
|
PLIST_SUB+= XORG=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-x11
|
|
PLIST_SUB+= XORG="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MADPLUG}
|
|
LIB_DEPENDS+= libadplug.so:${PORTSDIR}/audio/libadplug
|
|
CONFIGURE_ARGS+= --with-adplug
|
|
PLIST_SUB+= ADPLUG=""
|
|
.else
|
|
PLIST_SUB+= ADPLUG="@comment "
|
|
CONFIGURE_ARGS+= --without-adplug
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSDL}
|
|
USE_SDL= sdl
|
|
CONFIGURE_ARGS+= --with-sdl=yes
|
|
PLIST_SUB+= SDL=""
|
|
.else
|
|
CONFIGURE_ARGS+= --with-sdl=no
|
|
PLIST_SUB+= SDL="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSDL} || ${PORT_OPTIONS:MX11}
|
|
PLIST_SUB+= DESKTOP=""
|
|
.else
|
|
PLIST_SUB+= DESKTOP="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MFLAC}
|
|
LIB_DEPENDS+= libFLAC.so:${PORTSDIR}/audio/flac
|
|
CONFIGURE_ARGS+= --with-flac
|
|
PLIST_SUB+= FLAC=""
|
|
.else
|
|
PLIST_SUB+= FLAC="@comment "
|
|
CONFIGURE_ARGS+= --without-flac
|
|
.endif
|
|
|
|
.if empty(PORT_OPTIONS:MDOCS)
|
|
MAKE_ENV+= DOCS="\#"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/etc/.*\.cfg|${TIMIDITY_CFG}|' \
|
|
${WRKSRC}/playgmi/gmitimidity.c
|
|
# conflicts with fnmatch.h from security/heimdal
|
|
@${REINPLACE_CMD} -e 's|<\(fnmatch.h\)>|"/usr/include/\1"|' \
|
|
${WRKSRC}/filesel/adb.c \
|
|
${WRKSRC}/filesel/pfilesel.c
|
|
@${REINPLACE_CMD} -e '1s|bash|sh|' ${WRKSRC}/ultrafix.sh
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ocp
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocp/*.so
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocp/autoload/*.so
|
|
|
|
.include <bsd.port.mk>
|