1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/devel/clanlib/Makefile
Baptiste Daroussin e52598b550 USES=execinfo
2014-08-05 06:40:46 +00:00

64 lines
1.7 KiB
Makefile

# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= clanlib
PORTVERSION= 2.3.7
PORTREVISION= 4
PORTEPOCH= 1
CATEGORIES= devel
MASTER_SITES= http://www.clanlib.org/download/releases-2.0/
DISTNAME= ClanLib-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Cross-platform game SDK
LICENSE= ZLIB
LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \
libpng15.so:${PORTSDIR}/graphics/png \
libmikmod.so:${PORTSDIR}/audio/libmikmod \
libvorbis.so:${PORTSDIR}/audio/libvorbis \
libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \
libpcre.so:${PORTSDIR}/devel/pcre
USE_GCC= yes
USE_XORG= x11
USES= execinfo gmake pathfix pkgconfig tar:tgz
USE_LDCONFIG= yes
USE_GL= yes
USE_SQLITE= yes
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15
LDFLAGS+= -L${LOCALBASE}/lib
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-docs \
--enable-clanDisplay \
--enable-clanGL \
--enable-clanGL1 \
--enable-clanSound \
--enable-clanDatabase \
--enable-clanSqlite \
--enable-clanRegExp \
--enable-clanNetwork \
--enable-clanGUI \
--enable-clanCSSLayout \
--enable-clanSWRender \
--enable-clanMikMod \
--enable-clanVorbis \
--enable-getaddr
PLIST_SUB+= VER=${PORTVERSION:R} \
SHORT_VER=${PORTVERSION:R:R}${PORTVERSION:R:E}
post-patch:
@${REINPLACE_CMD} -e 's|LIBS="-lsqlite3 -ldl"|LIBS="-lsqlite3"|g' \
${WRKSRC}/configure
@${REINPLACE_CMD} -e '114 s|/proc/self/exe|/proc/curproc/file|g' \
${WRKSRC}/Sources/Core/System/Unix/init_linux.cpp
@${REINPLACE_CMD} -e 's|APPLE|FreeBSD|g' \
${WRKSRC}/Sources/Core/System/system.cpp
@${REINPLACE_CMD} -e '47 s|#ifndef __FreeBSD__|#if !defined(__FreeBSD__)|g' \
${WRKSRC}/Sources/Core/System/system.cpp
.include <bsd.port.mk>