aboutsummaryrefslogtreecommitdiff
path: root/graphics/enfle/Makefile
blob: 3dcb9ab31dcbe2bc9010728befded5d46e2b77e0 (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
# New ports collection makefile for:	enfle
# Date created:		Tue Sep 28 02:25:17 JST 1999
# Whom:			Yuki Sawada <samy@goldmoon.org>
#
# $FreeBSD$
#

PORTNAME=	enfle
PORTVERSION=	20071024
PORTREVISION=	2
CATEGORIES=	graphics
MASTER_SITES=	http://enfle.fennel.org/files/stable/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Simple plugin-based graphics viewer

BUILD_DEPENDS=	${LOCALBASE}/lib/X11/rgb.txt:${PORTSDIR}/x11/rgb
LIB_DEPENDS=	arc.1:${PORTSDIR}/archivers/libarc \
		jasper.4:${PORTSDIR}/graphics/jasper \
		jpeg.10:${PORTSDIR}/graphics/jpeg \
		mng.1:${PORTSDIR}/graphics/libmng \
		ungif.5:${PORTSDIR}/graphics/libungif \
		png.5:${PORTSDIR}/graphics/png \
		theora.0:${PORTSDIR}/multimedia/libtheora
RUN_DEPENDS:=	${BUILD_DEPENDS}

OPTIONS=	SIMD "Enable x86 SIMD (MMX/SSE)" off

USE_BZIP2=	yes
USE_XORG=	ice x11 xext xv
USE_GNOME=	esound
USE_ICONV=	yes
USE_GMAKE=	yes
USE_AUTOTOOLS=	libtool:15
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" \
		ac_cv_header_mpeg_h=no \
		ac_cv_header_libmpeg3_h=no \
		ac_cv_header_decore_h=no \
		ac_cv_header_avifile_h=no
CONFIGURE_ARGS=	--with-ungif --disable-avcodec

PKGDEINSTALL=	${PKGINSTALL}

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

.include <bsd.port.pre.mk>

.if ${ARCH} == "i386"
CONFIGURE_ARGS+=	--enable-spi --enable-dmo
.if !defined(WITH_SIMD)
CONFIGURE_ARGS+=	--disable-mmx --disable-sse
.endif
.endif

.if ${ARCH} == "sparc64"
BROKEN=		Does not compile on sparc64
.endif

.if ${OSVERSION} < 700000
PLIST_SUB+=	DISABLED="@comment "
.else
PLIST_SUB+=	DISABLED=""
.endif

post-patch:
	@${REINPLACE_CMD} -e \
		's|/usr/local/|${LOCALBASE}/|g ; \
		 s|/usr/X11R6/|${LOCALBASE}/|g ; \
		 /LIB/s|-lpthread|${PTHREAD_LIBS}|g ; \
		 /LIB/s|-lc_r|${PTHREAD_LIBS}|g ; \
		 /CFLAGS/s|-pthread|${PTHREAD_CFLAGS}|g ; \
		 /LIB/s|-ldl||g' ${WRKSRC}/configure
	@${REINPLACE_CMD} -e \
		'/enfle -N/s|^|#|g' ${WRKSRC}/src/Makefile.in
	@${REINPLACE_CMD} -e \
		's|/usr/share/X11|${LOCALBASE}/lib/X11|g ; \
		 /X11R6/d' ${WRKSRC}/plugins/loader/xpm/xpm.c
	@${REINPLACE_CMD} -e \
		's|arciver_|archiver_|g' ${WRKSRC}/plugins/archiver/rar/unrar.c
.if ${OSVERSION} < 700000
	@${REINPLACE_CMD} -e \
		'/^SUBDIRS/s|effect|| ; \
		 /^SUBDIRS/s|audiodecoder|| ; \
		 /^SUBDIRS/s|videodecoder|| ; \
		 /^SUBDIRS/s|demultiplexer||' ${WRKSRC}/plugins/Makefile.in
	@${REINPLACE_CMD} -e \
		'/^SUBDIRS/s|tar||' ${WRKSRC}/plugins/archiver/Makefile.in
.endif

post-install:
	@${SETENV} PKG_PREFIX="${PREFIX}" \
		${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL

.include <bsd.port.post.mk>