aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/devil/Makefile
blob: b85b769040b59b2359ace9fd8b2e081cda432b7a (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# New ports collection makefile for:   devil
# Date created:        8 August 2004
# Whom:                Andreas Kohn <andreas@syndrom23.de>
#
# $FreeBSD$
#

PORTNAME=   devil
PORTVERSION=    1.7.8
PORTEPOCH=  1
PORTREVISION=   6
CATEGORIES= graphics
MASTER_SITES=   SF/openil/DevIL/${PORTVERSION}
DISTNAME=   DevIL-${PORTVERSION}

MAINTAINER= amdmi3@FreeBSD.org
COMMENT=    A full featured cross-platform image library

OPTIONS=    JPEG    "Enable JPEG support"       on \
        JASPER  "Enable JPEG2000 support"   on \
        LCMS    "Enable LCMS support"       on \
        MNG "Enable MNG support"        on \
        PNG "Enable PNG support"        on \
        TIFF    "Enable TIFF support"       on \
        X11 "Enable X11 support"        on \
        SDL "Enable SDL support"        off \
        NVTT    "Enable NVidia texture tools support" off \
        SIMD    "Enable SIMD autodetection (AltiVec, SSE3,...)" off

WRKSRC=     ${WRKDIR}/${DISTNAME:L}

USE_GNOME=  pkgconfig
USE_AUTOTOOLS=  aclocal autoheader automake autoconf libtool
ACLOCAL_ARGS=   -I m4 -I ${LOCALBASE}/share/aclocal
AUTOMAKE_ARGS=  --add-missing --copy --force-missing
CONFIGURE_ARGS= --enable-ILU \
        --disable-allegro --disable-directx8 --disable-directx9
USE_LDCONFIG=   yes
MAKE_JOBS_SAFE= yes

CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

.include <bsd.port.pre.mk>

.if defined(WITHOUT_JPEG)
CONFIGURE_ARGS+=--disable-jpeg
.else
LIB_DEPENDS+=   jpeg.11:${PORTSDIR}/graphics/jpeg
CONFIGURE_ARGS+=--enable-jpeg
.endif

.if defined(WITHOUT_JASPER)
CONFIGURE_ARGS+=--disable-jp2
.else
LIB_DEPENDS+=   jasper.4:${PORTSDIR}/graphics/jasper
CONFIGURE_ARGS+=--enable-jp2
.endif

.if defined(WITHOUT_LCMS)
CONFIGURE_ARGS+=--disable-lcms
.else
LIB_DEPENDS+=   lcms.1:${PORTSDIR}/graphics/lcms
CONFIGURE_ARGS+=--enable-lcms
.endif

.if defined(WITHOUT_MNG)
CONFIGURE_ARGS+=--disable-mng
.else
LIB_DEPENDS+=   mng.1:${PORTSDIR}/graphics/libmng
CONFIGURE_ARGS+=--enable-mng
.endif

.if defined(WITHOUT_PNG)
CONFIGURE_ENV+= libpng_app=no
CONFIGURE_ARGS+=--disable-png
.else
LIB_DEPENDS+=   png.6:${PORTSDIR}/graphics/png
.endif

.if defined(WITHOUT_TIFF)
CONFIGURE_ARGS+=--disable-tiff
.else
LIB_DEPENDS+=   tiff.4:${PORTSDIR}/graphics/tiff
CONFIGURE_ARGS+=--enable-tiff
.endif

.if defined(WITHOUT_X11)
CONFIGURE_ARGS+=--disable-opengl --disable-x11 --disable-xpm --disable-shm
PLIST_SUB+= X11="@comment "
.else
USE_GL=     glut
CONFIGURE_ARGS+=--enable-ILUT
PLIST_SUB+= X11=""
.endif

.if defined(WITH_SDL)
USE_SDL=    sdl
.else
CONFIGURE_ARGS+=--disable-sdl
.endif

.if defined(WITH_NVTT)
BUILD_DEPENDS+= ${LOCALBASE}/lib/libnvtt.so:${PORTSDIR}/graphics/nvidia-texture-tools
RUN_DEPENDS+=   ${LOCALBASE}/lib/libnvtt.so:${PORTSDIR}/graphics/nvidia-texture-tools
.else
CONFIGURE_ARGS+=--without-nvtt
.endif

.if !defined(WITH_SIMD)
CONFIGURE_ARGS+=--disable-altivec --disable-sse --disable-sse2 --disable-sse3
.endif

post-patch:
    @${REINPLACE_CMD} -e '/^SUBDIRS/s|docs||g' ${WRKSRC}/Makefile.am
    @${REINPLACE_CMD} -e '/^pkgdir=/s|$$(libdir)/|$$(prefix)/libdata/|g' \
        ${WRKSRC}/data/Makefile.am
    @${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|g' \
        ${WRKSRC}/src-ILU/ilur/ilur.c

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for file in AUTHORS CREDITS ChangeLog Libraries.txt README TODO
    ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>