aboutsummaryrefslogtreecommitdiffstats
path: root/devel/clanlib/Makefile
blob: ccfb5aaa1ef843c31dba32f630aebb5dcc6fd147 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$

PORTNAME=   clanlib
PORTVERSION=    2.3.7
PORTREVISION=   8
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=    libpng.so:graphics/png \
        libmikmod.so:audio/libmikmod \
        libvorbis.so:audio/libvorbis \
        libfontconfig.so:x11-fonts/fontconfig \
        libpcre.so:devel/pcre

USES=       execinfo gmake jpeg libtool pathfix pkgconfig sqlite tar:tgz
USE_GCC=    yes
USE_XORG=   x11
USE_LDCONFIG=   yes
USE_GL=     yes

CPPFLAGS+=  -I${LOCALBASE}/include
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

INSTALL_TARGET= install-strip
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>