aboutsummaryrefslogtreecommitdiff
path: root/x11/eaglemode/Makefile
blob: d58141fb266866a86cd8d0708d916693cf15c4bd (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
# New ports collection makefile for:	eaglemode
# Date created:		29 Apr 2008
# Whom:			Dmitry Marakasov <amdmi3@amdmi3.ru>
#
# $FreeBSD$
#

PORTNAME=	eaglemode
PORTVERSION=	0.82.0
PORTREVISION=	2
CATEGORIES=	x11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}

MAINTAINER=	amdmi3@FreeBSD.org
COMMENT=	Futuristic zoomable user environment

LIB_DEPENDS=	jpeg.11:${PORTSDIR}/graphics/jpeg \
		png.6:${PORTSDIR}/graphics/png \
		tiff.4:${PORTSDIR}/graphics/tiff \
		freetype.9:${PORTSDIR}/print/freetype2

USE_BZIP2=	yes
USE_PERL5_BUILD=	yes
USE_XORG=	x11 xext xxf86vm
SUB_FILES=	eaglemode.sh

BUILD_ARGS=	continue=no

.for lib in X11 jpeg png tiff
BUILD_ARGS+=	${lib}-inc-dir="${LOCALBASE}/include" \
		${lib}-lib-dir="${LOCALBASE}/lib"
.endfor

OPTIONS=	XINE "Video playback support through libxine" off \
		RSVG "SVG support throute librsvg" on

.include <bsd.port.options.mk>

.if ${OSVERSION} < 700000
BROKEN=		Does not build on 6.x
.endif

.if !defined(WITHOUT_XINE)
LIB_DEPENDS+=	xine.2:${PORTSDIR}/multimedia/libxine
BUILD_ARGS+=	xine-inc-dir="${LOCALBASE}/include" \
		xine-lib-dir="${LOCALBASE}/lib"
PLIST_SUB+=	EMAV=""
BROKEN=		does not build with libxine 1.2.x
.else
PLIST_SUB+=	EMAV="@comment "
.endif

.if !defined(WITHOUT_RSVG)
USE_GNOME+=	librsvg2
PLIST_SUB+=	EMSVG=""
.else
PLIST_SUB+=	EMSVG="@comment "
.endif

post-patch:
	@${REINPLACE_CMD} -e 's|gcc|${CC}|; s|"-O2"|"${CFLAGS}"|' \
		${WRKSRC}/makers/unicc/plugins/unicc_gnu.pm
.if defined(WITHOUT_XINE)
	@${RM} -f ${WRKSRC}/makers/emAv.maker.pm
.endif
.if defined(WITHOUT_RSVG)
	@${RM} -f ${WRKSRC}/makers/emSvg.maker.pm
.endif

do-build:
	cd ${WRKSRC} && ${PERL} make.pl build ${BUILD_ARGS}

do-install:
	${MKDIR} ${PREFIX}/lib/eaglemode
	cd ${WRKSRC} && ${PERL} make.pl install dir=${PREFIX}/lib/eaglemode
	${INSTALL_SCRIPT} ${WRKDIR}/eaglemode.sh ${PREFIX}/bin/eaglemode

.include <bsd.port.mk>