aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/gd1/Makefile
blob: 702c15fba2bb7eccda448d1ae81d9180de4d830a (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
# New ports collection makefile for:    gd1
# Date created:             27 Mar 1998
# Whom:                 jeff@cetlink.net
#
# $FreeBSD$
#

PORTNAME=   gd
PORTVERSION=    1.8.4
PORTEPOCH=  2
CATEGORIES+=    graphics
MASTER_SITES=   http://www.boutell.com/gd/http/ \
        ${MASTER_SITE_RINGSERVER}
MASTER_SITE_SUBDIR= graphics/gd

MAINTAINER?=    ports@FreeBSD.org
COMMENT?=   A graphics library for fast creation of images

LIB_DEPENDS=    jpeg.9:${PORTSDIR}/graphics/jpeg \
        png.5:${PORTSDIR}/graphics/png \
        freetype.9:${PORTSDIR}/print/freetype2
.if defined(WITH_XPM)
.if defined(WITHOUT_X11)
LIB_DEPENDS+=   Xpm:${PORTSDIR}/graphics/xpm
CPPFLAGS+=  -I${X11BASE}/include/X11 -I${X11BASE}/include -DHAVE_LIBXPM
LDFLAGS+=   -L${X11BASE}/lib -lXpm
.else
USE_XPM=    yes
CPPFLAGS+=  -I${X11BASE}/include/X11 -I${X11BASE}/include -DHAVE_LIBXPM
LDFLAGS+=   -L${X11BASE}/lib -lXpm -lX11
.endif
.endif

MAKE_ENV=   CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"

LATEST_LINK=    gd1

MAKEFILE=   ${FILESDIR}/Makefile.lib
INSTALLS_SHLIB= yes

pre-everything::
.if !defined(WITH_XPM)
    @${ECHO_MSG}
    @${ECHO_MSG} "If you want to compile with Xpm support,"
    @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_XPM=yes\""
    @${ECHO_MSG}
.endif

post-extract:
    @${CP} ${FILESDIR}/gd_gif_in.c ${WRKSRC}

.include <bsd.port.mk>