aboutsummaryrefslogtreecommitdiff
path: root/graphics/grx/Makefile
blob: 86d33e6dcb265147c7b8dcdd2783ccca98e096c8 (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
PORTNAME=	grx
PORTVERSION=	2.4.9
PORTREVISION=	4
CATEGORIES=	graphics
MASTER_SITES=	http://grx.gnu.de/download/
DISTNAME=	${PORTNAME}${PORTVERSION:S/.//g}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	2D graphics library
WWW=		http://grx.gnu.de/

LICENSE=	LGPL20 MIT
LICENSE_COMB=	multi

USES=		gmake xorg
USE_XORG=	x11 xau xcb xdmcp
HAS_CONFIGURE=	yes
CONFIGURE_ARGS=	--prefix=${PREFIX} --with-fontpath=${DATADIR}/fonts \
		--with-x11-base=${LOCALBASE}
ALL_TARGET=	libs
INSTALL_TARGET=	install install-bin install-fonts install-info
USE_LDCONFIG=	yes

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

CONFLICTS_INSTALL=	hxtools psptoolchain-pspsdk-stage2

PLIST_SUB=	VERSION="${PORTVERSION}"
MAKE_ARGS=	infodir=${PREFIX}/${INFO_PATH}

INFO=		grx

OPTIONS_DEFINE=		BGI BMP JPEG PNG PRINT TIFF ZLIB
OPTIONS_DEFAULT=	BGI BMP PNG PRINT ZLIB
OPTIONS_SUB=		yes

BGI_DESC=		BGI image format support
BGI_CONFIGURE_ENABLE=	bgi
BMP_DESC=		BMP image format support
BMP_CONFIGURE_ENABLE=	bmp
JPEG_USES=		jpeg
JPEG_CONFIGURE_ENABLE=	jpeg
PNG_LIB_DEPENDS=	libpng.so:graphics/png
PNG_CONFIGURE_ENABLE=	png
PRINT_CONFIGURE_ENABLE=	print
TIFF_LIB_DEPENDS=	libtiff.so:graphics/tiff
TIFF_CONFIGURE_ENABLE=	tiff
ZLIB_CONFIGURE_ENABLE=	zlib

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MPNG} && empty(PORT_OPTIONS:MZLIB)
IGNORE=		PNG support requires ZLIB support
.endif

.if ${ARCH} == "amd64"
CONFIGURE_ARGS+=--enable-x86_64
.endif

post-patch:
	@${GREP} -ERl '<(malloc|alloca)\.h>' ${WRKSRC} | ${XARGS} \
		${REINPLACE_CMD} -Ee 's|<(malloc\|alloca)\.h>|<stdlib.h>|'
	@${REINPLACE_CMD} -e \
		's|^\(CC[[:blank:]]*=\).*|\1 ${CC}| ; \
		 s|^\(STRIP[[:blank:]]*=\).*|\1 ${TRUE}| ; \
		 s|^\(CCOPT[[:blank:]]*=\).*|\1 ${CPPFLAGS} ${CFLAGS}| ; \
		 s|^\(LDOPT[[:blank:]]*=\).*|\1 ${LDFLAGS}| ; \
		 s|-m64|| ; \
		 s|-m32||' \
		${WRKSRC}/makedefs.grx
	@${REINPLACE_CMD} -e '/_GR_swap32u/s|length|numchars|' \
		${WRKSRC}/src/fonts/fdv_raw.c

post-install:
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgrx20X.so
.for i in bin2c fnt2c xmodetest
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i}
.endfor

.include <bsd.port.mk>