aboutsummaryrefslogtreecommitdiff
path: root/multimedia/libquicktime/Makefile
blob: dcb95013446b7b057e553fc973570ef45858e234 (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
# ex:ts=8
# Ports collection makefile for:	libquicktime
# Date Created:			Jul 17, 2002
# Whom:				ijliao
#
# $FreeBSD$
#

PORTNAME=	libquicktime
PORTVERSION=	0.9.4
CATEGORIES=	multimedia
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR=	${PORTNAME}

MAINTAINER=	ahze@FreeBSD.org
COMMENT=	A library for reading and writing quicktime files

LIB_DEPENDS=	avcodec.1:${PORTSDIR}/multimedia/ffmpeg \
		vorbis.3:${PORTSDIR}/audio/libvorbis \
		jpeg.9:${PORTSDIR}/graphics/jpeg \
		png.5:${PORTSDIR}/graphics/png \
		dv.4:${PORTSDIR}/multimedia/libdv

INSTALLS_SHLIB=	yes
USE_REINPLACE=	yes
USE_GL=		yes
USE_GNOME=	gnometarget gtk12 gnomehack pkgconfig
USE_GMAKE=	yes
USE_LIBTOOL_VER=15
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
		LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CONFIGURE_ARGS=	--disable-firewire
CFLAGS+=	-fPIC

OPTIONS=	LAME "Enable Lame mp3 encoding support" Off

MAN1=	lqtplay.1
PORTDOCS=	codecs.html \
		qt4l_building.html \
		qt4l_codecs.html \
		qt4l_firewire.html \
		qt4l_index.html \
		qt4l_license.html \
		qt4l_opening.html \
		qt4l_positioning.html \
		qt4l_reading.html \
		qt4l_util.html \
		qt4l_writing.html

.include <bsd.port.pre.mk>

.if defined(WITH_LAME) || exists(${LOCALBASE}/lib/libmp3lame.a)
LIB_DEPENDS+=	mp3lame.0:${PORTSDIR}/audio/lame
.endif

.if ${MACHINE_CPU:Mmmx}
CONFIGURE_ARGS+=	--enable-mmx
LIB_DEPENDS+=	jpeg-mmx.62:${PORTSDIR}/graphics/jpeg-mmx
.else
CONFIGURE_ARGS+=	--disable-mmx
.endif

post-extract:
	@${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \
		${WRKSRC}/plugins/audiocodec/* \
		${WRKSRC}/plugins/videocodec/*

post-install:
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
	@${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.post.mk>